 
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
/*font-family: 'Inter', sans-serif;*/
 
:root{
	--font1:'Inter', sans-serif; 
	--primary: #01D4FE; 
    --secondary: #123668;
    --green: #B3D401;
    --titlecolor:#07070A;
    --subtitlecolor: #555555;
    --textColor: #575757;
    --textDarkColor:#414141; 
    --footer-text: #191919;
    --white:#fff;
    --lightColor:#BFBFBF4D;
    --lightbg:#F6F7F8;
    --lightbg1:#cdedf3;
    --bordercolor:#AFF2FF;
    --black:#000;
}


*{ 
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0; 
    scroll-behavior: smooth; 
    font-size: 18px;
    line-height: 28px;
    color: var(--textColor);
    font-family: var(--font1);
}
.container{
    max-width: 1290px;
    margin: 0 auto;
}
h1,h2,h3,h4,h5,h6{ 
    font-family: var(--font1); 
    font-weight: 700;
}
p{
	margin:0 0 24px;
    color: var(--subtitlecolor);
    font-size: 16px;
    line-height: 25px;
}
img,svg{
    width: 100%;
}
.clear{
    clear: both;
}
.clear:after{
    position: relative;
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

::-ms-input-placeholder {  
  color: #fff;
}
::placeholder {
  color: #fff;
}
::-webkit-placeholder {
  color: #fff;
}
 
ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
a{
    transition: .5s;
    text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.lightbg{background: var(--lightbg);} 

section{
    padding: 100px 0;
    position: relative; 
}
.subtitle{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--subtitlecolor);
}
h2.title1{
    font-size: 35px;line-height: 48px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--titlecolor);
}
h2.title1 span{
    color: var(--primary);
}
.tophd{
    padding-bottom: 20px;
    margin-bottom: 25px;
    position: relative;
}
.tophd:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.cmnbtn{
	position: relative;
	padding: 10px 25px;
	border-radius: 0;
	background: var(--secondary);
	text-align: center;
	overflow: hidden;
	display: inline-block;
	transition: 0.5s;
}
.cmnbtn span{
	display: inline-block;
	color: var(--white);
	font-size: 16px;font-weight: 20px;
	font-weight: 400;position: relative;
	z-index: 2;
}
.cmnbtn i{
	display: inline-block;
	margin-left: 10px;font-size: 16px;
	color: var(--white);transition: 0.5s;
	position: relative;top: 3px;z-index: 2;
}
.cmnbtn:hover i{
	color: var(--titlecolor);
}
.cmnbtn::before{
	position: absolute;
    content: "";
    left: -35px;
    top: -2px;
    width: 80%;
    height: 175%;
    transform: rotate(45deg);
    background: var(--secondary);
	transition: 0.5s;
	opacity: 1;
    z-index: 1;
}
.cmnbtn::after{
	position: absolute;
    content: "";
    right: -27px;
    top: -35px;
    width: 80%;
    height: 175%;
    transform: rotate(45deg);
    background: var(--secondary);
	transition: 0.5s;
	opacity: 1;
    z-index: 1;
}
.cmnbtn:hover{
	background: var(--green);
}
.cmnbtn:hover span{
	color: var(--titlecolor);
}
.cmnbtn:hover::before{
	left: -100%;opacity: 1;
}
.cmnbtn:hover::after{
	right: -100%;opacity: 1;
}


.cmnbtn1{
	position: relative;
	padding: 10px 25px;
	border-radius: 0;
	background: var(--white);
	text-align: center;
	overflow: hidden;
	display: inline-block;
	transition: 0.5s;
}
.cmnbtn1 span{
	display: inline-block;
	color: var(--titlecolor);
	font-size: 16px;font-weight: 20px;
	font-weight: 400;position: relative;
	z-index: 2;
}
.cmnbtn1 i{
	display: inline-block;
	margin-left: 10px;font-size: 16px;
	color: var(--titlecolor);transition: 0.5s;
	position: relative;top: 3px;z-index: 2;
}
.cmnbtn1:hover i{
	color: var(--titlecolor);
}
.cmnbtn1::before{
	position: absolute;
    content: "";
    left: -35px;
    top: -2px;
    width: 80%;
    height: 175%;
    transform: rotate(45deg);
    background: var(--white);
	transition: 0.5s;
	opacity: 1;
    z-index: 1;
}
.cmnbtn1::after{
	position: absolute;
    content: "";
    right: -27px;
    top: -35px;
    width: 80%;
    height: 175%;
    transform: rotate(45deg);
    background: var(--white);
	transition: 0.5s;
	opacity: 1;
    z-index: 1;
}
.cmnbtn1:hover{
	background: var(--green);
}
.cmnbtn1:hover span{
	color: var(--titlecolor);
}
.cmnbtn1:hover::before{
	left: -100%;opacity: 1;
}
.cmnbtn1:hover::after{
	right: -100%;opacity: 1;
}
.sec-heading{
    margin-bottom: 40px;
}
.sec-heading.text-center{
    padding: 0 200px;
}
.sec-heading.text-center .tophd:before{
    left: 50%;bottom: 0;
    transform: translate(-50%,0);
}


/* login */
.login-up{
    text-align: center;
}
.login-logo{
    width: 34%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.login-right h3{
    font-size: 35px;
    margin-bottom: 20px;
}
.login-up p a{
    text-decoration: underline;
    color: var(--primary);
}
.login-right form input::placeholder{
    color:  #C7C7C7;
    font-size: 14px;
}
.login-right form  span a{
    float: right;
    font-size: 16px;
    color: var(--primary);
    text-decoration: underline;
}
.login-right form input{
    width: 100%;
    border: 1px solid #C7C7C7;
    padding: 10px 16px;
    margin-bottom: 20px;
}
.login-right form input[type=checkbox]{
    width: unset;
}
.login-right form .form-submit input {
    width: 100%;
    background: var(--secondary);
    border: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    transition: 0.5s;
}
.login-another{
    text-align: center;
    position: relative;
}
.login-another:before{
    content: "";
    left: 0;
    top: 50%;
    position: absolute;
    width: 100%;
    height: 1px;
    background: #C7C7C7;
    z-index: -1;
    transform: translate(0,-50%);

}
.login-another p{
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 20px;
    display: inline-block;
    margin-bottom: 0;
}
.login-social{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.log-so{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.log-icon img{
    width: 40px;
}
.log-so p{
    margin-bottom: 0;
    font-size: 20px;
}
.login-social a{
        padding: 12px 60px;
        background: #F3F3F3;
        border-radius: 4px;
}
.login-left img{
    height: 500px;
    object-fit: cover;
}
.signup{
    margin: 0;text-align: center;
}
.signup a{
    color: var(--primary);
}
.login-sec{
      padding: 30px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}
@media(max-width: 1199px){
    .login-social a {
        padding: 12px 32px;
    }
    .log-so p {
        font-size: 16px;
    }
}
@media(max-width:991px){
    .login-left img {
        height: auto;
    }
    .login-social a {
        width: 100%;
        margin-bottom: 20px;
        padding: 5px 0;
    }
    .login-social {
        flex-wrap: wrap;
    }
}