* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width: 0.7rem;
    background-color: transparent;
}
html::-webkit-scrollbar-track{
    background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #c7c7c7;
    border-radius: 10rem;
}
body {
    min-height: 1000px;
}
/*header*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    transition: 0.5s;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ffffff;
    box-shadow: 1px 1px 20px rgba(112, 112, 112, 0.1);
}

.logo img {
    width: 250px;
    height: 80px;
}
.nav-links
{
    float: right;
    margin-right: 40px;
    position: relative;
}
nav .nav-links li{
    display: inline-block;
    margin: 0 20px;
}
nav .nav-links li a{
    line-height: 70px;
    padding: 8px 5px;
    margin: 0px 15px;
}
nav .nav-links ul{
    position: absolute;
    top: 90px;
    opacity: 0;
    background: #ffffff;
    border-radius: 10px;
    visibility: hidden;
    transition: top 0.5s;
}
nav .nav-links .dropdown li{
    position: relative;
    width: 250px;
    margin: 0px;
    float: none;
    display: list-item;
}
nav .nav-links ul li a:hover{
    color: rgb(26, 0, 121);
    border-bottom: none;
    padding-bottom: 0rem;
}
nav .nav-links li:hover > ul{
    top: 70px;
    opacity: 1;
    visibility: visible;
}
nav li a {
    text-decoration: none;
    color: #000000;
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: normal;
    transition: 0.2s;
}
nav .nav-links li a:hover {
    color: #174bac;
}
.show,.burger, input[type="checkbox"]{
    display: none;
}
.burger {
    display: none;
    z-index: 3;
}
.burger div {
    width: 25px;
    height: 3px;
    border-radius: 5px;
    background-color: #000000;
    margin: 5px;
    transition: all 0.3s ease;
}
section {
    padding: 5rem 7%;
}

/*get in touch form*/
.get-in-touch {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
    background: url(../img/contact-us-bg.jpg);
    background-size: cover;
    background-position: center;
}
.contactus{
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.wrapper{
    background: #ffffff;
    margin-top: 5em;
    border-radius: 10px;
}
.contact{
    padding: 40px;
}
.wrapper header{
    font-family: 'Poppins',sans-serif;
    font-size: 2em;
    font-weight: 500;
    padding: 20px 5px;
    text-align: center;
}
.wrapper p{
    font-size: 15px;
    color: rgb(92, 92, 92);
    text-align: center;
} 
.wrapper form {
    margin: 50px 30px;
}
form .dbl-field {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
}
form .entername{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.entername .field {
    height: 50px;
    position: relative;
    width: 100%;   
}
.dbl-field .field {
    height: 50px;
    position: relative;
    width: calc(100% / 2 - 13px);
}
.select{
    display: flex;
    width: 100%;
    padding: 0.3em 0em;
    font-size: 1.25rem;
    position: relative;
    cursor: pointer;
    line-height: 1.1;
    margin-bottom: 30px;
    background-color: #fff;
}
.select h1{
    width: 100%;
    font-size: 18px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
    padding: 20px 0px;
}
select{
    width: 100%;
    appearance: none;
    background-color: #f8f8f8;
    border: 1px solid rgba(112, 112, 112, 0.1);
    border-radius: 5px;
    padding: 10px 10px;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    font-size: inherit;
    cursor: pointer;
    line-height: inherit;
    transition: 0.3s ease;
}
.select::after{
    content: "";
    width: 0.8em;
    height: 0.5em;
    position: relative;
    right: 20px;
    background-color: rgba(112, 112, 112, 0.5);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}
.select {
    align-items: center;
}
select:hover,
select:focus{
    border: 2px solid #174bac;
}
.upload-a-file{
    position: relative;
    margin-bottom: 20px;
}
.upload-a-file h1{
    font-size: 18px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
}
.upload-a-file p{
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0;
    margin-bottom: 20px;
}
.file-upload {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
}

.file-upload__input {
    display: none;
}

.file-upload__button {
    -webkit-appearance: none;
    background: #0061bd;
    border: none;
    border-radius: 20px;
    outline: none;
    padding: 0.5em 0.8em;
    width: 150px;
    height: 60px;
    margin-right: 30px;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Poppins',sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}

.file-upload__button:hover {
    background: #1e6db8;
    transform: scale(0.95);
}

.file-upload__label {
    max-width: 250px;
    font-size: 0.95em;
    margin-bottom: 20px;
    font-family: 'Poppins',sans-serif;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.entername h1{
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
    padding: 20px 0px;
}
form .field input,
form .message textarea{
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    font-weight: 500;
    padding: 0 18px 0 48px;
    font-size: 1.5rem;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
}
form .field input::placeholder,
form .message textarea::placeholder{
    color: #bfbfbf;
}
form .field input:focus,
form .message textarea:focus{
    border: 2px solid #174bac;
}
form .field input:focus ~ i{
    color: #174bac;
}
form .message textarea:focus ~ i{
    color: #174bac;
}
.wrapper form i{
    position: absolute;
    left: 18px;
    top: 50%;
    font-size: 17px;
    color: #bfbfbf;
    pointer-events: none;
    transform: translateY(-50%);
}
form .message{
    position: relative;
}
form .message i{
    top: 25px;
    font-size: 20px;
}
form .message textarea{
    resize: vertical;
    min-height: 250px;
    max-height: 400px;
    padding: 15px 20px 0 48px;
}
form .button-area{
    display: flex;
    margin: 25px 0;
    align-items: center;
    justify-content: center;
}
.button-area button{
    width: 100%;
    padding: 15px 50px;
    font-size: 18px;
    border: 1px solid #174bac;
    border-radius: 15px;
    font-family: 'Poppins',sans-serif;
    font-weight: 300;
    color: #ffffff;
    background: #174bac;
    cursor: pointer;
    letter-spacing: 0.8px;
    transition: 0.3s;
}
.button-area button:hover{
    background: #264cc7;
    transform: translateY(-5%);
}
.button-area span{
    color: #0D6EFD;
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    margin-left: 30px;
}



/*footer*/
.container {
    max-width: 1170px;
    margin: auto;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
ul {
    list-style: none;
}
.footer {
    background-color: #F9F9F9;
    padding: 70px 0;
}
.footer-col {
    width: 25%;
    padding: 0 15px;
}
.footer-col h5 {
    font-size: 18px;
    color: #33301a;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    margin-bottom: 35px;
    position: relative;
}
.footer-col h5::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #000000;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}
.footer-col ul li a {
    font-size: 16px;
    color: #666C80;
    text-decoration: none;
    font-family: 'Open sans', sans-serif;
    line-height: 25px;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover {
    color: #000000;
    padding-left: 10px;
}
.socialmedia h6 {
    font-size: 18px;
    color: #33301a;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    margin-bottom: 35px;

}
.socialmedia .social-links a{
    display: inline-block;
    font-size: 25px;
    color: #2b48a7;
    height: 45px;
    width: 45px;
    background-color: none;
    border: 3px solid #2b48a7;
    margin: 0 10px 10px 0;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.socialmedia .social-links a:hover {
    color: #ffffff;
    background-color: #2b48a7;
}
li {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    color: #33301a;
    margin-top: 30px;
}
.socialmedia {
    width: 25%;
    padding: 0 15px;
    margin-top: 50px;
}
.Copyright_Madhuram p {
    font-size: 12px;
    color: #666C80;
    font-family: 'Arial';
    line-height: 20px;
    text-align: center;
    height: 0px;
    margin-top: 20px;
    position: absolute;
}

/*responsive*/

@media(max-width: 991px){
    html {
        font-size: 55%;
    }
    nav {
        padding: 2rem 2rem;
    }
    nav .nav-links{
       margin-right: 0px;
       width: 70%;
    }
    nav .logo{
        padding-left: 20px;
        margin-right: 50px;
    }
}
@media(max-width: 768px){
    body {
        overflow-x: hidden;
    }
    nav {
        justify-content: space-around;
        padding: 20px 20px;
    }
    .nav-links {
        position:absolute;
        right: 0px;
        height: 100vh;
        top: 0;
        justify-content: space-evenly;
        display: flex;
        background-color: #ffffff;
        flex-direction: column;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    nav .logo{
        padding-left: 0px;
    }
    .nav-links li {
        opacity: 1;
    }
    nav .nav-links li, nav .nav-links ul li{
        display: block;
        width: 100%;
    }
    .burger {
        display: block;
        cursor: pointer;
    }
    .nav-active {
        transform: translateX(0%);
    }
    .nav-links li a {
        color: black;
        top: 50px;
    }
    a.active {
        border: none;
    }
    nav .nav-links li a:hover {
        color: #174bac;
        border-bottom: none;
    }
    .logo img {
        width: 200px;
        height: 65px;
    }
    nav .nav-links ul{
        top: 70px;
        position: static;
        float: none;
        display: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
    }
    section{
        padding: 8rem;
    }
    .show {
        display: block;
        color: #000000;
        font-family: 'Arial', sans-serif;
        font-size: 20px;
        font-weight: normal;
        padding: 0px 10px;
        cursor: pointer;
        line-height: 70px;
    }
    .show + a, .dropdown{
        display: none;
    }
    [id^=btn-1]:checked + .dropdown{
        display: block;
    }
    .show:hover{
        color: #174bac;
        border: none;
    }
    section {
        padding: 8rem;
    }
    .wrapper{
        margin-top: 5em;
        width: 100%;
    }
    .wrapper header{
        text-align: center;
        font-size: 1.6em;
    }
    .file-upload {
        display: block;
        align-items: center;
        font-size: 14px;
    }
    .file-upload__button {
        width: 150px;
        height: 50px;
        font-size: 14px;
    }
    form .entername{
        margin-bottom: 0px;
        flex-direction: column;
    }
    form .dbl-field{
        margin-bottom: 0px;
        flex-direction: column;
    }
    .entername .field{
        width: 100%;
        margin-bottom: 20px;
    }
    .dbl-field .field{
        width: 100%;
        margin-bottom: 20px;
    }
    select:hover,
    select:focus{
        border: 2px solid #174bac;
    }
    form .button-area{
        flex-direction: column;
    }
    .button-area button{
        width: 100%;
    }
    .button-area span{
        text-align: center;
        margin: 20px 0;
    }
    form .message textarea{
        resize: none;
    }
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
    .Copyright_Madhuram p {
        font-size: 12px;
        color: #666C80;
        font-family: 'Arial';
    }
}
@keyframes navLinkFade {
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px,-6px);
}

@media(max-width: 450px){

    html {
        font-size: 50%;
    }
    nav {
        justify-content: space-between;
        padding: 20px 20px;
    }
    .footer-col {
        width: 100%;
    }
    .Copyright_Madhuram p {
        font-size: 12px;
        color: #666C80;
        font-family: 'Arial';
        text-align: left;
        margin-left: 10px;
    }
}