*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');


.loader {
width: 20px;
height: 20px;
border-radius: 50%;
background: conic-gradient(
    #00857F 0deg 140deg,  
    #ffffff 140deg 360deg
);
mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);

animation: spin 1.1s cubic-bezier(0.55, 0.15, 0.25, 0.95) infinite;
}

@keyframes spin {
to {
    transform: rotate(360deg);
}
}


@font-face {
font-family: font1;
src: url(fonts/font1.woff2);
src: url(fonts/font1.woff2) format("woff2"),
    url(fonts/font1.woff2) format("woff2"),
    url(fonts/font1.woff2) format("woff2");
}


@font-face {
font-family: font2;
src: url(fonts/font2.woff2);
src: url(fonts/font2.woff2) format("woff2"),
    url(fonts/font2.woff2) format("woff2"),
    url(fonts/font2.woff2) format("woff2");
}
body {
  font-family: font2;
}

nav{
    height: 13vh;
    display: flex;
    align-items: center;
    padding: 20px 60px;
    justify-content: space-between;
    background: #650360;
}

nav img.logo{
    width: 65px;
}

nav p{
    font-weight: 700;
    color: white;
    font-size: 14px;
}

.phone{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 65px;
}

.phone p{
    display: flex;
    gap: 4px;
    align-items: center;
    color: #0071C4;
    font-weight: 550;
}

form{
    width: 33%;
    padding: 10px 65px;
}



form h1{
    font-size: 24px;
}


.form_box{
    margin: 14px 0px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form_box label{
    font-size: 12px;
    font-weight: 700;
}

.form_box input{
    height: 47px;
    margin: 5px 0px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: #F9F9F9;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #909090;
}

.form_box input:focus{
    outline: none;
    border: 1px dashed red;
    border-bottom: 3px solid #0071C4;
}

.form_box i{
    position: absolute;
    top: 50%;
    right: 4%;
    color: #909090;
}

.btn_box{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn_box button{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background: #00857F;
    border-radius: 4px;
    width: 85px;
    font-family: font1;
    height: 44px;
    font-size: 16px;
}

.btn_box .input{
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn_box .input input{
    width: 25px;
    height: 25px;
}

.btn_box p{
    font-size: 14px;
    color: #343434;
}

p.p{
    font-size: 14px;
    color: #343434;
}

p.p span{
    color: #0071C4;
    text-decoration: underline;
}

hr{
    margin: 60px 60px 20px 60px;
}


ul{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 25px;
}

ul li{
    list-style-type: none;
    font-size: 14px;
    font-weight: 700;
    color: #0071C4;
}

footer{
    padding: 40px 60px;
}

footer p{
    color: #909090;
    font-size: 14px;
}

form.success{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

form.success p{
    text-align: center;
}

@media only screen and (max-width: 1200px){

    nav{
        height: 10vh;
        padding: 20px 20px;
    }
    .phone{
        padding: 20px 25px;
    }

    .phone p{
        font-weight: 600;
        font-size: 14px;
    }
    form{
        padding: 10px 25px;
    }

    hr{
        margin: 60px 25px 20px 25px;
    }


    footer{
        padding: 40px 25px;
    }

}

@media only screen and (max-width: 1200px){

    form{
        width: 45%;
        padding: 10px 25px;
    }
}

@media only screen and (max-width: 800px){

    form{
        width: 100%;
        padding: 10px 12px;
    }

    ul{
        flex-direction: column;

    }


    nav{
        height: 14vh;
        position: relative;
        justify-content: center;
        padding: 20px 10px;
    }

 
    .phone{
        padding: 20px 25px;
    }

    .phone p{
        font-weight: 600;
        font-size: 14px;
    }

    .phone p i{
        font-size: 17px;
    }


    hr{
        margin: 100px 10px 20px 10px;
    }


    footer{
        padding: 40px 10px;
    }

    nav p{
        position: absolute;
        right: 2%;
    }

    nav p i{
        font-size: 18px;
    }





}