/* Existing CSS */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(30, 52, 47);
    color: #ffffff;
}

header {
    background-color: rgb(33, 56, 51);
    padding: 10px 0;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.hamburger {
    display: none;
}
.side-menu {
    display: none; 
}
.nav {
    border-right: 1px solid rgb(255 64 64);
    height: 70px;
    width: 17%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
    padding-top: 10px;
    color: rgb(59, 103, 94);
    font-size: 21px;
    font-family: 'MyFont7', orig_ubuntu_light;
}

nav ul li a {
    color: rgb(59, 103, 94);
    text-decoration: none;
}

nav ul li a.active {
    color: rgb(255 64 64);
}

nav ul li a:hover {
    color: rgb(242, 189, 30);
}

.hero {
    position: relative;
    padding-top: 19%; /* To ensure the header doesn't overlap */
    text-align: center;
    padding-bottom: 25%;
    height: 100%;
    color: #fff;
    min-height: 100vh;
    overflow: hidden;
    border-top: 35px solid rgb(255, 64, 64);
}

.background {
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
}

p{
    font-family: 'MyFont7', orig_gothambook;
    font-size: 17px;
    text-size-adjust: 100%;
    margin: 5px;
}

.animation {
    width: 50%;
    top: 10%;
    z-index: 2;
    left: 50%;
}

.master {
    top: -18%;
    z-index: 1;
    width: 160%;
    left: 48%;
}

.title {
    width: 130%;
    height: 80%;
    object-fit: cover;

}

.box_one {
    top: 8%;
    position: absolute;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    left: 17%;
    width: 15%;
    /* height: 6%; */
    max-width: 400px;
    background-color: rgb(190, 222, 215);
    color: rgb(65, 65, 65);
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    padding: 13px;
    margin: 10px 0;
    z-index: 2;
    line-height: 1.4em;
}

.box_two {
    top: 16%;
    position: absolute;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    right: 12%;
    width: 19%;
    /* height: 3%; */
    max-width: 400px;
    background-color: rgb(190, 222, 215);
    color: rgb(65, 65, 65);
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    padding: 10px;
    margin: 10px 0;
    z-index: 2;
}

.box_three {
    top: 22%;
    position: absolute;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    right: 22%;
    width: 10%;
    /* height: 5%; */
    max-width: 400px;
    background-color: rgb(190, 222, 215);
    color: rgb(65, 65, 65);
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    padding: 12px;
    margin: 10px 0;
    z-index: 2;
    line-height: 1.4em;
}

/* Define CSS variables for colors */
:root {
    --color-invalid: red;
    --color-valid: green;
}

/* Existing styles */
.contact_form {
    position: absolute;
    top: 30%;
    left: 51%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 400px;
    padding: 20px;
}

.contact_form .name_fields {
    display: flex;
    justify-content: space-between;
    width: 75%;
}

.contact_form .name_fields .small-input {
    width: 35%;
    background-color: rgb(237, 226, 178);
}

.contact_form .phone-small-input {
    width: 40%;
    background-color: rgb(237, 226, 178);
}

.contact_form input {
    width: 75%;
    color: rgb(59, 103, 94);
    font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
    margin-bottom: 10px;
    background-color: rgb(237, 226, 178);
    padding: 10px;
    border-radius: 10px;
    border: none;
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.contact_form textarea {
    width: 100%;
    color: rgb(59, 103, 94);
    font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
    margin-bottom: 10px;
    background-color: rgb(237, 226, 178);
    padding: 10px;
    border-radius: 10px;
    border: none;
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.contact_form .large-input {
    height: 70px;
    background-color: rgb(237, 226, 178);
    width: 50%;
    color: rgb(59, 103, 94);
}

.contact_form #address {
    height: 50px;
    background-color: rgb(237, 226, 178);
    width: 60%;
    color: rgb(59, 103, 94);
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: rgb(30, 30, 30);
    text-align: center;
    color: rgb(59, 103, 94);
}

.contact_form input:hover,
.contact_form #address:hover,
.contact_form .name_fields .small-input:hover,
.contact_form textarea:hover {
    background-color: #d6cb89;
}

.contact_form button {
    background-color: rgb(237, 226, 178);
    color: rgb(59, 103, 94);
    cursor: pointer;
    width: 68px;
    height: 22px;
    border-radius: 20px;
    border: none;
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
}

.contact_form button:hover {
    background-color: #d6cb89;
}

.contact_form .name_fields .small-input:focus {
    background-color: #b2b89c;
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    outline: none;
    border: none;
}

.contact_form .name_fields .small-input:focus::placeholder {
    color: rgb(59, 103, 94);
}

.contact_form input:focus,
.contact_form #address:focus,
.contact_form textarea:focus {
    background-color: #b2b89c;
    box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
    outline: none;
    border: none;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    color: rgb(59, 103, 94);
}

.contact_form input:focus::placeholder,
.contact_form textarea:focus::placeholder {
    color: rgb(59, 103, 94);
}

/* Style for invalid email field */


.back-to-top {
    position: relative;
    bottom: 25vh;
    left: 46%;
    padding: 10px 20px;
    background-color: #487e73;
    color: #D85842;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 0 0 rgba(0,0,0,0.45), 0 3px 0 0 rgba(0,0,0,0.45);
    z-index: 10;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.contact_form.hidden {
    opacity: 0;
    visibility: hidden;
}

.contact_form.visible {
    visibility: visible;
    animation: fadeIn 2s forwards;
}

@media (min-width: 343px) and (max-width: 410px) {
    p {
        font-size: 10px;
    }
    header {
      
        display: none;
    }

    .hamburger {
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        z-index: 1004;
        color: #f2bd1e;
    }
    
    .side-menu {
        height: 100%;
        width: 0px;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #ffdc73;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        z-index: 1003;
        display: flex;
        justify-content: flex-end;
    }
    
    .side-menu ul {
        list-style-type: none;
        padding: 80px 20px 0 0 ;
        
    }
    
    .side-menu ul li {
        padding: 20px 0px 20px 105px;
        text-align: right;
        border-bottom: 2px solid #decc9a;
       
    }
    
    .side-menu ul li a {
        text-decoration: none;
        font-size: 22px;
        color: black;
        display: block;
        transition: 0.3s;
        font-family: 'MyFont7', serif;
        letter-spacing: 2px;
       
    }
    
    /* .side-menu ul li a:hover {
        color: #818181;
    } */
    .side-menu ul li a.active {
        color: #599b8d;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1002;
    }
    
    
    .title {
        width: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 20%;
        border-top: none;
    }

    .background {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .animation {
        width: 85%;
        top: 10%;
        left: 50%;
    }

    .master {
        top: 10%;
        width: 180%;
        left: 50%;
    }

    .box_one {
        top: 76%;
        width: 40%;
        left: 47%;
        transform: translateX(-50%);
        background-color: #3b675e;
        color: #e8e6c4;
        padding: 10px;
        line-height: 1.4;
        border-radius: 10px;
    }

    .box_two {
        top: 88%;
        left: 25%;
        width: 129px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 10px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }

    .box_three {
        top: 88%;
        left: 71%;
        width: 129px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 10px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .contact_form {
        top: 23%;
        width: 70%;
        padding: 10px;
    }
    .mobview{
        display: flex;
    justify-content: space-between;
    width: 75%;
    }
    .mobview .phone-small-input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .mobview input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .contact_form input{
        padding: 5px;
        border-radius: 5px;
    }
    .contact_form .large-input {
        height: 25px;
        width: 66%;
        background-color: rgb(237 226 178);
        line-height: 23px;
    }
    .contact_form #address {
        height: 25px;
        background-color: rgb(237 226 178);
        width: 70%;
    }

    .contact_form button {
        background-color: rgb(237 226 178);
        cursor: pointer;
        
        position: absolute;
        top: 151%;
        padding: 5px;
    }

    .back-to-top {
        left: 35%;
        bottom: 30px;
        z-index: 2;
        margin-top: 20%;
    }
}
@media (min-width: 411px) and (max-width: 455px) {
    p {
        font-size: 10px;
    }
    header {
      
        display: none;
    }

    .hamburger {
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        z-index: 1004;
        color: #f2bd1e;
    }
    
    .side-menu {
        height: 100%;
        width: 0px;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #ffdc73;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        z-index: 1003;
        display: flex;
        justify-content: flex-end;
    }
    
    .side-menu ul {
        list-style-type: none;
        padding: 80px 20px 0 0 ;
        
    }
    
    .side-menu ul li {
        padding: 20px 0px 20px 105px;
        text-align: right;
        border-bottom: 2px solid #decc9a;
       
    }
    
    .side-menu ul li a {
        text-decoration: none;
        font-size: 22px;
        color: black;
        display: block;
        transition: 0.3s;
        font-family: 'MyFont7', serif;
        letter-spacing: 2px;
       
    }
    
    /* .side-menu ul li a:hover {
        color: #818181;
    } */
    .side-menu ul li a.active {
        color: #599b8d;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1002;
    }
    
    
    .title {
        width: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 20%;
        border-top: none;
    }

    .background {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .animation {
        width: 85%;
        top: 10%;
        left: 50%;
    }

    .master {
        top: 10%;
        width: 180%;
        left: 50%;
    }

    .box_one {
        top: 76%;
        width: 40%;
        left: 47%;
        transform: translateX(-50%);
        background-color: #3b675e;
        color: #e8e6c4;
        padding: 10px;
        line-height: 1.4;
        border-radius: 20px;
    }

    .box_two {
        top: 88%;
        left: 25%;
        width: 140px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 15px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }

    .box_three {
        top: 88%;
        left: 71%;
        width: 140px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 15px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .contact_form {
        top: 27%;
        width: 60%;
        padding: 10px;
    }
    .mobview{
        display: flex;
    justify-content: space-between;
    width: 75%;
    }
    .mobview .phone-small-input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .mobview input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .contact_form input{
        padding: 5px;
        border-radius: 5px;
    }
    .contact_form .large-input {
        height: 25px;
        line-height: 25px;
        width: 66%;
        background-color: rgb(237 226 178);
    }
    .contact_form #address {
        height: 25px;
        background-color: rgb(237 226 178);
        width: 70%;
    }

    .contact_form button {
        background-color: rgb(237 226 178);
        cursor: pointer;
        position: absolute;
        top: 143%;
        padding: 5px;
    }

    .back-to-top {
        left: 35%;
        bottom: 30px;
        z-index: 2;
        margin-top: 20%;
    }
}
@media (min-width: 456px) and (max-width: 600px) {
    p {
        font-size: 10px;
    }
    header {
      
        display: none;
    }

    .hamburger {
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        position: fixed;
        top: 10px;
        right: 10px;
        display: flex;
        z-index: 1004;
        color: #f2bd1e;
    }
    
    .side-menu {
        height: 100%;
        width: 0px;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #ffdc73;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        z-index: 1003;
        display: flex;
        justify-content: flex-end;
    }
    
    .side-menu ul {
        list-style-type: none;
        padding: 80px 20px 0 0 ;
        
    }
    
    .side-menu ul li {
        padding: 20px 0px 20px 105px;
        text-align: right;
        border-bottom: 2px solid #decc9a;
       
    }
    
    .side-menu ul li a {
        text-decoration: none;
        font-size: 22px;
        color: black;
        display: block;
        transition: 0.3s;
        font-family: 'MyFont7', serif;
        letter-spacing: 2px;
       
    }
    
    /* .side-menu ul li a:hover {
        color: #818181;
    } */
    .side-menu ul li a.active {
        color: #599b8d;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1002;
    }
    
    
    .title {
        width: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 20%;
        border-top: none;
    }

    .background {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .animation {
        width: 85%;
        top: 10%;
        left: 50%;
    }

    .master {
        top: 10%;
        width: 180%;
        left: 50%;
    }

    .box_one {
        top: 76%;
        width: 40%;
        left: 47%;
        transform: translateX(-50%);
        background-color: #3b675e;
        color: #e8e6c4;
        padding: 10px;
        line-height: 1.4;
        border-radius: 20px;
    }

    .box_two {
        top: 88%;
        left: 25%;
        width: 140px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 15px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }

    .box_three {
        top: 88%;
        left: 71%;
        width: 140px;
        font-size: 9px;
        background-color: #3b675e;
        transform: translateX(-50%);
        color: #d2ce90;
        border-radius: 15px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .contact_form {
        top: 24%;
        width: 60%;
        padding: 10px;
    }
    .mobview{
        display: flex;
    justify-content: space-between;
    width: 75%;
    }
    .mobview .phone-small-input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .mobview input {
        width: 38%;
        background-color: rgb(237 226 178);
    }
    .contact_form input{
        padding: 5px;
        border-radius: 5px;
    }
    .contact_form .large-input {
        height: 25px;
        line-height: 25px;
        width: 66%;
        background-color: rgb(237 226 178);
    }
    .contact_form #address {
        height: 25px;
        background-color: rgb(237 226 178);
        width: 70%;
    }

    .contact_form button {
        background-color: rgb(237 226 178);
        cursor: pointer;
        position: absolute;
        top: 143%;
        padding: 5px;
    }
    .back-to-top {
        left: 40%;
        bottom: 30px;
        z-index: 2;
        margin-top: 20%;
    }
}
@media (min-width: 601px) and (max-width: 929px) {
    p {
        font-size: 12px;
    }
    .nav{
        border-right: 1px solid rgb(255, 64, 64); /* Orange border */
    /* height: 40px; */
    width: 18%;
    display: flex;
        justify-content: center;
        align-items: center;
       font-size: 12px;
    padding: 2px;
    }

    nav ul {
        flex-direction: row;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
        font-size: 21px;
        font-weight: 500;
    }
  
    /* .side-menu ul li a:hover {
        color: #818181;
    } */
  
    .title {
        width: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 83%;
    }

    .background {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .animation {
        width: 72%;
        top: 10%;
        left: 50%;
    }

    .master {
        top: 2%;
        width: 180%;
        left: 50%;
    }
    .box_one {
        top: 7%;
        letter-spacing: 0.02em;
        position: absolute;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        left: 4%;
        width: 21%;
        /* height: 6%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 10px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.3em;
    }
    
    .box_two {
        top: 17%;
        position: absolute;
        
        right: 1%;
        width: 24%;
        /* height: 3%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 10px;
        margin: 10px 0;
        z-index: 2;
    }
    
    .box_three {
        top: 29%;
        position: absolute;
        right: 6%;
        width: 16%;
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 12px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.4em;
    }
    
    .contact_form {
        position: absolute;
        top: 25%;
        left: 51%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 51%;
        max-width: 400px;
        padding: 20px;
       
    }
    
    .contact_form .name_fields {
        display: flex;
        justify-content: space-between;
        width: 75%;
    }
    
    .contact_form .name_fields .small-input {
        width: 35%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form .phone-small-input {
        width: 40%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form input{
        width: 75%;
       color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 5px;
        border-radius: 6px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    .contact_form textarea {
        width: 100%;
        color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 5px;
        border-radius: 10px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    
    .contact_form .large-input {
        height: 45px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form  #address {
        height: 45px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(30, 30, 30);
        text-align: center;
        color: rgb(59,103,94);
       
    }
    
    .contact_form button {
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
        cursor: pointer;
        border-radius: 20px;
    }
    
    .contact_form button:hover {
        background-color: #d6cb89;
    }
    .contact_form .name_fields .small-input:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form .name_fields .small-input:focus::placeholder {
        color: rgb(30, 30, 30); /* Placeholder color when input is focused */
    }
    .contact_form input:focus,
    .contact_form textarea:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(59,103,94); /* Default placeholder color */
    }
    
    .contact_form input:focus::placeholder,
    .contact_form textarea:focus::placeholder {
        color: rgb(59,103,94); /* Placeholder color when input is focused */
    }
    .back-to-top {
        position: relative;
        bottom: 25vh;
        left: 43%;
        padding: 10px 20px;
        background-color: #487e73;
        color: #D85842;
        border: none;
        cursor: pointer;
        box-shadow: 3px 3px 0 0 rgba(0,0,0,0.45), 0 3px 0 0 rgba(0,0,0,0.45);
    }
}

@media (min-width: 930px) and (max-width: 1200px) {
    p {
        font-size: 13px;
    }

    .nav{
        border-right: 1px solid rgb(255, 64, 64); /* Orange border */
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    padding: 2px;
    }

    nav ul {
        flex-direction: row;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
        font-size: 21px;
        font-weight: 500;
    }

    
    /* .side-menu ul li a:hover {
        color: #818181;
    } */
    .side-menu ul li a.active {
        color: #599b8d;
    }
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
    }
    
    .title {
        width: 100%;
        object-fit: cover;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 83%;
    }

    .background {
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .animation {
        width: 72%;
        top: 10%;
        left: 50%;
    }

    .master {
        top: 2%;
        width: 180%;
        left: 50%;
    }
    .box_one {
        top: 7%;
        letter-spacing: 0.02em;
        position: absolute;
        left: 4%;
        width: 21%;
        /* height: 6%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 10px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.3em;
    }
    
    .box_two {
        top: 17%;
        position: absolute;
        right: 1%;
        width: 24%;
        /* height: 3%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 10px;
        margin: 10px 0;
        z-index: 2;
    }
    
    .box_three {
        top: 29%;
        position: absolute;
        right: 6%;
        width: 16%;
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 12px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.4em;
    }
    
    .contact_form {
        position: absolute;
        top: 27%;
        left: 51%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        max-width: 400px;
        padding: 20px;
       
    }
    
    .contact_form .name_fields {
        display: flex;
        justify-content: space-between;
        width: 75%;
    }
    
    .contact_form .name_fields .small-input {
        width: 35%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form .phone-small-input {
        width: 40%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form input{
        width: 75%;
       color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 5px;
        border-radius: 6px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    .contact_form textarea {
        width: 100%;
        color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 5px;
        border-radius: 10px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    
    .contact_form .large-input {
        height: 45px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form  #address {
        height: 45px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(30, 30, 30);
        text-align: center;
        color: rgb(59,103,94);
       
    }
    
    .contact_form button {
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
        cursor: pointer;
        border-radius: 20px;
    }
    
    .contact_form button:hover {
        background-color: #d6cb89;
    }
    .contact_form .name_fields .small-input:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form .name_fields .small-input:focus::placeholder {
        color: rgb(30, 30, 30); /* Placeholder color when input is focused */
    }
    .contact_form input:focus,
    .contact_form textarea:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(59,103,94); /* Default placeholder color */
    }
    
    .contact_form input:focus::placeholder,
    .contact_form textarea:focus::placeholder {
        color: rgb(59,103,94); /* Placeholder color when input is focused */
    }
    .back-to-top {
        position: relative;
        bottom: 25vh;
        left: 45%;
        padding: 10px 20px;
        background-color: #487e73;
        color: #D85842;
        border: none;
        cursor: pointer;
        box-shadow: 3px 3px 0 0 rgba(0,0,0,0.45), 0 3px 0 0 rgba(0,0,0,0.45);
    }
}

@media (min-width: 2125px){
    p{
        font-size: 22px;
    }
    .animation {
        width: 50%;
        top: 10%;
        z-index: 2;
        left: 50%;
    }
    
    .master {
        top: -19%;
        z-index: 1;
        width: 160%;
        left: 48%;
    }
    
    .title {
        width: 130%;
        height: 80%;
        object-fit: cover;
    
    }
    
    .box_one {
        top: 8%;
        position: absolute;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        left: 17%;
        width: 15%;
        /* height: 6%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 13px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.4em;
    }
    
    .box_two {
        top: 16%;
        position: absolute;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        right: 12%;
        width: 19%;
        /* height: 3%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 10px;
        margin: 10px 0;
        z-index: 2;
    }
    
    .box_three {
        top: 22%;
        position: absolute;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        right: 22%;
        width: 10%;
        /* height: 5%; */
        max-width: 400px;
        background-color: rgb(190, 222, 215);
        color: rgb(65, 65, 65);
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        padding: 12px;
        margin: 10px 0;
        z-index: 2;
        line-height: 1.4em;
    }
    
    .contact_form {
        position: absolute;
        top: 30%;
        left: 51%;
        transform: translate(-50%, -50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
       
        padding: 20px;
       
    }
    
    .contact_form .name_fields {
        display: flex;
        justify-content: space-between;
        width: 75%;
    }
    
    .contact_form .name_fields .small-input {
        width: 35%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form .phone-small-input {
        width: 40%;
        background-color: rgb(237 226 178);
    }
    
    .contact_form input{
        width: 75%;
       color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 10px;
        border-radius: 10px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    .contact_form textarea
     {
        width: 100%;
        color: rgb(59,103,94);
        font-family: futura-lt-w01-book, futura-lt-w05-book, sans-serif;
        margin-bottom: 10px;
        background-color: rgb(237 226 178);
        padding: 10px;
        border-radius: 10px;
        border: none;
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        text-align: center;
    }
    
    .contact_form .large-input {
        height: 70px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form  #address {
        height: 50px;
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(30, 30, 30);
        text-align: center;
        color: rgb(59,103,94);
       
    }
    .contact_form input:hover,.contact_form  #address:hover,.contact_form .name_fields .small-input:hover,
    .contact_form textarea:hover {
        background-color: #d6cb89; /* Adjust background color as needed */
    }
    .contact_form button {
        background-color: rgb(237 226 178);
        color: rgb(59,103,94);
        cursor: pointer;
        border-radius: 20px;
    }
    
    .contact_form button:hover {
        background-color: #d6cb89;
    }
    .contact_form .name_fields .small-input:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form .name_fields .small-input:focus::placeholder {
        color: rgb(30, 30, 30); /* Placeholder color when input is focused */
    }
    .contact_form input:focus,
    .contact_form textarea:focus {
        background-color: rgb(169, 175, 138); /* Change the background color */
        box-shadow: -3.54px 3.54px 21px 0px rgba(0, 0, 0, 0.45);
        outline: none; /* Remove the default outline */
        border: none; /* Ensure no border is present */
    }
    
    .contact_form input::placeholder,
    .contact_form textarea::placeholder {
        color: rgb(59,103,94); /* Default placeholder color */
    }
    
    .contact_form input:focus::placeholder,
    .contact_form textarea:focus::placeholder {
        color: rgb(59,103,94); /* Placeholder color when input is focused */
    }
    .back-to-top {
        position: relative;
        bottom: 25vh;
        left: 48%;
        padding: 10px 20px;
        background-color: #487e73;
        color: #D85842;
        border: none;
        cursor: pointer;
        box-shadow: 3px 3px 0 0 rgba(0,0,0,0.45), 0 3px 0 0 rgba(0,0,0,0.45);
        z-index: 10;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hidden {
    opacity: 0;
    visibility: hidden;
}

.visible {
    visibility: visible;
    animation: fadeIn 2s forwards;
}
