@font-face {
    font-family: Santrixie;
    src: url(Fonts/sanitrixie.ttf);
}

@font-face{
    font-family: Almira;
    src: url(Fonts/almira.otf);
}

* {
    box-sizing: border-box;
}

html {
    margin: 0%;
    width: 100%;

    font-family: "Almira", sans-serif;
    font-weight: normal;
    font-size: clamp(12px, 2vw, 30px);
}

body {
    margin: 0%;
    width: 100%;
}

header {
    margin: 0%;
    width: 100%;
    height: 9vh;
    min-height: 50px;
    padding: 1.5% 0%;
    position: fixed;
    z-index: 2;

    
    box-sizing: content-box;

    background-color: #131313;

    transition: 0.4s; 
}

nav {
    margin: 0%;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.homebutton {
    margin: 0%;
    width: 18%;
    min-width: 100px;
    height: 100%;
    padding: 0% 2.1%;

    border: none;
    border-radius: 0px 3px 3px 0px;

    background-color: #66a1c4;

    display: flex;
    align-items: center;
}

/* Image source: Images/logo1.png */
.logo1 {
    margin-top: 0%;
    width: 100%;
    height: auto;
    display: block;
}

.contact_container {
    margin-right: 1vw;
    width: 20%;

    display: flex;
    align-items: center;
    justify-content: space-around;
    
    
}

.phonebutton {
    margin: 0%;
    width: 50%;
    height: 100%;

    background: none;

    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 1.3vw;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.contactbutton {
    margin: 0%;
    width: 40%;
    height: 100%;
    padding: 3% 6%;

    border: solid #66a1c4 1px;
    border-radius: 1px 1px 1px 1px;
    
    background-color: #66a1c4;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.9vw;
    font-weight: 200;
    color: white;
    text-decoration: none;
    
    transition: 0.4s;
}

.contactbutton:hover {
    background-color: #131313;

    transition: 0.4s;
}

.section1 {
    padding: 15vh 10vw 5vh;
}

.formheading {
    font-size: 2vw;
    color: #66a1c4;
    font-weight: normal;
}

.top_address {
    font-size: 1vw;
}

footer {
    margin: 0%;
    padding: 5% 3%;

    background-color: #66a1c4;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    font-size: max(8px, 0.8vw);
    color: white;
    font-style: normal;
}

address {
    font-size: 0.8vw;
    font-style: normal;
}

.logo2 {
    margin-top: 0%;
    width: 30vw;
    height: auto;
    display: block;  
}

.copyright {
    font-size: 0.8vw;
}


@media (max-aspect-ratio: 1.2) {
    
    header { 
        height: 7vh;
        min-height: 50px;
    }

    .homebutton { 
        width: 30%;
    }

    .contact_container {
        width: 45vw;
        height: 3vh;
    }

    .phonebutton {
        width: 40%;
    
        font-size: 2.8vw;
    }

    .contactbutton {
        width: 40%;
        padding: 3% 6%;

        font-size: 2vw;
    }

    .section1 {
        min-height: 95vh;
    }

    .formheading {
        font-size: 6vw;
        color: #66a1c4;
        font-weight: normal;
    }

    .top_address {
        font-size: 3vw;
    }

    address {
    font-size: 1.2vw;
    }

    .logo2 {
        width: 30vw;
    }

    .copyright {
        font-size: 1.2vw;
    } 

}

/*from here*/

input {
    border: solid #131313 0.1em;
    border-radius: 0.2em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 10px;
    width: 100%;
}

label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
}

textarea {
    border: solid #131313 0.1em;
    border-radius: 0.2em;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 10em;
    padding: 10px;
    width: 100%;
    resize: none;
}




.submitbutton {
    background-color: #131313;
    border: none;
    color: white;
    font-size: 15px;
    padding: 1.25em;
    transition: 0.4s;
    width: 12em;
}

.submitbutton:hover {
    background-color: #66a1c4;
    transition: 0.4s;
}