

/*--------------------------------------------------------------------------------------------------------------------------------------*/
/* all */
* {
    margin: 0;
    padding: 0;
}

/*  heading fonts */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

/* paragraph fonts*/
p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/
/*home*/

/* body */
body {
    background-color:rgb(214, 218, 214);
    overflow-x: hidden; /* no horizontal scrolling */
}

/* header  */
header {
    width: 100%;
    background-color: rgb(214, 218, 214);
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    color: white;
    height: 83px; 
    position: fixed; 
    z-index: 999; /* header is above other content */
}

/* logo */
.logo { 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 0;
}

.logo img {
    max-width: 75%;
}

button {
    padding: 10px 20px;
    background-color: rgba(196, 196, 198, 0);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #d4d4d4;
}

/*  menu button  */
#toggleMenu {
    position: absolute;
    top: 50%;
    left: 10px; 
    transform: translateY(-50%);
    font-size: larger;
}

/* Navigation */
nav {
    background-color: rgb(196, 196, 198);
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: absolute; 
    top: 100%; /* below the header */
    left: 0; 
    display: none; /* hide the navigation */
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    color: black;
    text-decoration: none;
    line-height: 60px;
    font-size: 18px;
    padding: 17px;
}

nav ul li a:hover {
    background-color: rgb(173, 173, 174);
    color: white;
}
/*--------------------------------------------------------------------------------------------------------------------------------------*/

/* top section */
.top {
    width: 100%;
    height: 600px;
    background-image: url('Images/ff.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.top_text {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* text to the left */
    background-color: rgba(0, 0, 0, 0.25);
    color: white;
    padding: 60px 20px 20px 100px; /* padding: top, right, bottom, left */
    box-sizing: border-box;
}

.top_text h2 {
    text-transform: capitalize;
    font-size: 70px;
    margin-bottom: 20px;
}

.top_text p {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.top_text img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 300px; /* max-width for smaller screens */
    height: auto;
}
/*-------------------------------*/

@media (max-width: 700px) {
    .top_text {
        padding: 20px;
    }

    .top_text h2 {
        font-size: 40px; /* font size for smaller screens */
        margin-bottom: 20px;
    }
    
    .top_text p {
        font-size: 20px; 
        margin-bottom: 20px;
    }
    
    .top_text img {
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .top_text {
        padding: 20px;
    }

    .top_text h2 {
        font-size: 40px; 
        margin-bottom: 20px;
    }
    
    .top_text p {
        font-size: 20px; 
        margin-bottom: 20px;
    }
    
    .top_text img {
        max-width: 200px; 
    }
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/


/*  wrapper */
.wrapper {
    width: 100%;
    max-width: 1200px; /* maximum width */
    margin: 0 auto; 
    margin-top: 40px;
    padding: 20px; 
    background-color: rgb(255, 255, 255); 
}

/* Mid section - 1st para*/
.mid {
    width: 100%;
    background-color: rgb(87, 144, 95);
    text-align: center;
    color: white;
    padding: 2%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto; 
}

.mid h2 {
    text-transform: capitalize;
    font-size: 50px; 
    margin-bottom: 20px; 
}

.mid p {
    font-size: 25px; 
    text-align: justify;
    margin-bottom: 20px; 
}

/*----------------------------------------------*/


@media (max-width: 700px) {
    .wrapper {
        width: 92%; 
    }
    .mid {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
}

@media (max-width: 600px) {
    .wrapper {
        width: 92%; 
    }
    .mid {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/


/* links  */
.links {
    margin-top: 50px; /* top margin */
    width: 100%;
    height: 200px;
    background-color: rgb(214, 218, 214);
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box; 
    display: flex; /* align items */
    justify-content: space-around; /* distribute evenly*/
}

/* navigation boxes */
.navigation-box {
    flex: 0.2; /*  width of each box */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease; /*  transition  */
    border-radius: 10px; 
    display: flex; 
    flex-direction: column; /* stack items vertically */
    justify-content: center; /* center items vertically */
}


#shop-box {
    background-image: url('Images/b41fe45daec5cb84b458738cd0c171ea.jpg');
    backdrop-filter: invert(80%);
}

#gallery-box {
    background-image: url('Images/e3db2a6db46d05adaee0c197fdc20365\ \(1\).jpg');
    backdrop-filter: invert(80%);

}

#contact-box {
    background-image: url('Images/22ed72161762639a33516a53ae49243c.jpg');
    backdrop-filter: invert(80%);

}

/*------------------------------------------------------------*/

.navigation-box:hover {
    transform: scale(1.1); /* box on hover */
}

.navigation-box a {
    text-decoration: none;
    color: inherit;
}

.navigation-box h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.navigation-box p {
    font-size: 20px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/*nature - para*/
.bot-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px; 
    display: flex;
    justify-content: flex-start; 
    padding: 20px;
    background-color: rgb(255, 255, 255); 
    box-sizing: border-box; 
    flex-wrap: wrap; 
}

.bot {
    width: 50%; 
    height: auto; 
    background-color: rgb(87, 144, 95); 
    text-align: left; 
    color: white; 
    padding: 20px 40px; 
    box-sizing: border-box; 
    overflow: hidden; 
}

.bot h2 {
    text-transform: capitalize;
    font-size: 40px; 
    margin-bottom: 10px;
}

.bot p {
    font-size: 25px; 
    margin-bottom: 10px;
    text-align: justify;
}

/*-------------------------------------------------------------*/

/* bot-image  */
.bot-image {
    flex: 1;
    padding: 20px;
    box-sizing: border-box; 
    background-color: rgb(87, 144, 95); 
}

.bot-image img {
    max-width: 100%; /* within container */
    height: auto;
}

/*-----------------------------------------------*/
@media (max-width: 700px) {
    .bot {
        width: 100%; 
        padding-bottom: 0;
    }

    .bot-image {
        width: 100%; 
        padding-top: 0;
    }

}

@media (max-width: 600px) {
    .bot {
        width: 100%; 
        padding-bottom: 0;
    }

    .bot-image {
        width: 100%; 
        padding-top: 0;
    }

}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/*plants - para*/
.lwr-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px; 
    display: flex;
    justify-content: flex-start; 
    padding: 20px;
    background-color: rgb(255, 255, 255); 
    box-sizing: border-box; 
    flex-wrap: wrap; 
}

.lwr {
    width: 50%; 
    height: auto; 
    background-color: rgb(87, 144, 95); 
    text-align: left; 
    color: white; 
    padding: 20px 40px; 
    box-sizing: border-box; 
    overflow: hidden; 
}

.lwr h2 {
    text-transform: capitalize;
    font-size: 40px; 
    margin-bottom: 10px;
}

.lwr p {
    font-size: 25px; 
    margin-bottom: 10px;
    text-align: justify;
}

/*---------------------------*/

/* lwr-image  */
.lwr-image {
    flex: 1;
    padding: 20px;
    box-sizing: border-box; 
    background-color: rgb(87, 144, 95); 
}

.lwr-image img {
    max-width: 100%; 
    height: auto;
}

/*-------------------------------------------------------*/
@media (max-width: 700px) {
    .lwr {
        width: 100%; 
        padding-bottom: 0;
    }

    .lwr-image {
        width: 100%; 
        padding-top: 0;
    }

}
@media (max-width: 600px) {
    .lwr {
        width: 100%; 
        padding-bottom: 0;
    }

    .lwr-image {
        width: 100%; 
        padding-top: 0;
    }

}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/*  wrapper */
.dwn-wrapper {
    width: 100%;
    max-width: 1200px; 
    border-radius: 5px;
    margin: 0 auto; 
    margin-top: 50px;
    padding: 20px; 
    background-color: rgb(255, 255, 255); 
}
/* dwn section  */
.dwn {
    width: 100%;
    background-color: rgb(87, 144, 95);
    border-radius: 5px;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}


.dwn p {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

/*-------------------------------------*/
@media (max-width: 700px) {
    .dwn-wrapper {
        width: 97%; 
    }
    .dwn {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
} 

@media (max-width: 600px) {
    .dwn-wrapper {
        width: 97%; 
    }
    .dwn {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
} 

/*--------------------------------------------------------------------------------------------------------------------------------------*/

.quiz-container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding: 20px;
}

.app1, .app2 {
    background: #1e6753;
    width: 45%;
    margin: 40px;
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-size: 20px;
    box-sizing: border-box;
}

.app1 h1, .app2 h1 {
    font-weight: 600;
    border-bottom: 1px solid black;
    padding-bottom: 30px;
    font-size: 30px;
}

.quiz1, .quiz2 {
    padding: 20px 0;
}

.quiz1 h2, .quiz2 h2 {
    font-size: 25px;
    font-weight: 600;
}

.btn1, .btn2 {
    background: #fff;
    color: black;
    font-weight: 600;
    width: 100%;
    border: 2px solid black;
    padding: 10px;
    margin: 10px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn1:hover:not([disabled]), .btn2:hover:not([disabled]) {
    background-color: #3e6544;
    color: #fff;
}

.btn1:disabled, .btn2:disabled {
    cursor: no-drop;
}

#next-btn1, #next-btn2 {
    background-color: #07275b;
    color: #fff;
    font-weight: 500;
    width: 150px;
    border: 0;
    padding: 10px;
    margin: 20px auto 0;
    border-radius: 4px;
    cursor: pointer;
    display: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.correct1, .correct2 {
    background: #20ff81;
}

.incorrect1, .incorrect2 {
    background: #f14a4a;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/*  wrapper */
.end-wrapper {
    width: 100%;
    max-width: 1200px; 
    border-radius: 5px;
    margin: 0 auto; 
    margin-top: 50px;
    padding: 20px; 
    margin-bottom: 80px;
    background-color: rgb(255, 255, 255); 
}

.end {
    width: 100%;
    background-color: rgb(87, 144, 95);
    border-radius: 5px;
    text-align: center;
    color: white;
    padding: 20px; 
    box-sizing: border-box; 
    overflow: hidden; 
}

.end h2 {
    text-transform: capitalize;
    font-size: 50px; 
    margin-bottom: 20px; 
}

.end p {
    font-size: 25px; 
    text-align: justify;
    margin-bottom: 20px; 
}

/*---------------------------------------*/
@media (max-width: 700px) {
    .end-wrapper {
        width: 97%; 
    }
    .end {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
} 

@media (max-width: 600px) {
    .end-wrapper {
        width: 97%; 
    }
    .end {
        width: 94%; 
        padding: 20px 30px 2px;
    }
    
} 

/*--------------------------------------------------------------------------------------------------------------------------------------*/


footer {
    position: relative; 
    width: 100%;
    height: 83px;
    background-color: rgb(196, 196, 198);
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.footer-images {
    position: absolute;
    bottom: 10px; 
    left: 10px;   
    display: flex;
    gap: 20px;    
}

.footer-images img {
    transition: transform 0.3s ease;
}

#img_one {
    width: 35px; 
    height: 35px;
}

#img_two {
    width: 35px; 
    height: auto;
}

#img_three {
    width: 35px; 
    height: 35px;
}


.footer-images img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(16, 16, 16, 0.322);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: black;
  }


/* --------------------------------------------------------------------------------------------------------------------------------------*/


/*shop*/

/* top  */
.top_two {
    width: 100%;
    height: 600px;
    background-image: url('Images/8122a30ac5e6cf15627c3a9c5041b1d8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.top_two_text {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 60px 20px 20px 100px; /* padding: top, right, bottom, left */
    box-sizing: border-box;
}

.top_two_text h2 {
    text-transform: capitalize;
    font-size: 70px;
    margin-bottom: 20px;
}


/*-------------------------------------------*/

@media (max-width: 600px) {
    .top_two_text {
        padding: 20px;
    }

    .top_two_text h2 {
        font-size: 40px; 
        margin-bottom: 20px;
    }
  
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

.shop-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; 
    padding: 10px;
    background-color: rgb(255, 255, 255); 
    box-sizing: border-box; 
    flex-wrap: wrap; 
}

.shop {
    width: 100%; 
    height: auto; 
    background-color: rgb(100, 162, 109); 
    padding: 20px 40px; 
    box-sizing: border-box; 
    overflow: hidden; 
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px; /*  gap between products */
}

.product-box {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 200px;
    background-color: white;
    position: relative; 
    transition: width 0.3s ease, transform 0.3s ease, border 0.3s ease; /* transition for width, transform, and border */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* shadow */
}

/* Hover effect */
.product-box:hover {
    border: 3px solid black;
    transform: scale(1.05); /* enlarge the product box */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /*  shadow */
    z-index: 1; /* above other elements */

}
/*--------------------------------------------------------------------------------------------------------------------------------------*/

/* product image */
.product-box img {
    width: 100%;
    height: auto; /* height for product image */
    object-fit: cover; /* aspect ratio cover  */
}

.add-to-cart-btn img {
    width: 40px; 
    height: auto;
    cursor: pointer;
}

.info-btn img {
    width: 40px; 
    height: auto;
    cursor: pointer;
}

.product-description {
    display: none;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 101%; /* move box */
    width: 200px; /* width of the description box */
    height: 100%; 
    padding: 10px;
    background-color: white; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); 
    box-sizing: border-box;
    transition: display 0.3s ease; /* transition for display */
    z-index: -1; 
}

.product-box.expanded {
    width: 230px; /* width of product box when expanded */
}

.product-box.expanded .product-description {
    display: block;
    z-index: 1; /*  above other elements */

}

.product-box p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.product-description {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    color: #333;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/
@media (max-width: 700px) {
    .shop-wrapper {
        justify-content: center; 
    }
    
    .product-container {
        flex-direction: column; 
        align-items: center; 
    }
    
    .product-box {
        width: 270px; 
        max-width: 300px; 
        margin-bottom: 20px;
    }
    
    .product-description {
        left: 0%; 
        width: 270px; 
        height: 72%; 
    }
}


@media (max-width: 600px) {
    .shop-wrapper {
        justify-content: center; 
    }
    
    .product-container {
        flex-direction: column; 
        align-items: center; 
    }
    
    .product-box {
        width: 270px; 
        max-width: 300px; 
        margin-bottom: 20px;
    }
    
    .product-description {
        left: 0%; 
        width: 270px; 
        height: 75%; 
    }
}



/* --------------------------------------------------------------------------------------------------------------------------------------*/

/*gallery*/

/* top section */
.top_three {
    width: 100%;
    height: 600px;
    background-image: url('Images/le.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.top_three_text {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    padding: 60px 20px 20px 100px; /* padding: top, right, bottom, left */
    box-sizing: border-box;
}

.top_three_text h2 {
    text-transform: capitalize;
    font-size: 70px;
    margin-bottom: 20px;
}




/*--------------------------------------*/
@media (max-width: 600px) {
    .top_three_text {
        padding: 20px;
    }

    .top_three_text h2 {
        font-size: 40px; 
        margin-bottom: 20px;
    }
  
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/


.owl-item img {
    transition: transform 0.3s;
}

.owl-item img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/


.gl-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px; 
    display: flex;
    justify-content: flex-start; 
    padding: 20px;
    background-color: rgb(255, 255, 255); 
    box-sizing: border-box; 
    flex-wrap: wrap; 
}

.gl {
    width: 100%; 
    height: auto; 
    background-color: rgb(100, 162, 109); 
    text-align: left; 
    color: white; 
    padding: 20px 40px; 
    box-sizing: border-box; 
    overflow: hidden; 
}

.gl h2 {
    text-transform: capitalize;
    font-size: 40px; 
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;

}



/*-------------------------------*/
@media (max-width: 600px) {
    .gl {
        width: 100%; 
        padding-bottom: 0;
    }

}


/*--------------------------------------------------------------------------------------------------------------------------------------*/


.vid-wrapper {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px; 
    display: flex;
    justify-content: flex-start; 
    padding: 20px;
    background-color: rgb(255, 255, 255); 
    box-sizing: border-box; 
    flex-wrap: wrap; 
    margin-bottom: 100px;

}

.vid {
    width: 100%; 
    height: auto; 
    background-color: rgb(100, 162, 109); 
    color: white; 
    padding: 20px 40px; 
    
}

.vid h2 {
    text-transform: capitalize;
    font-size: 40px; 
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.videos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin-bottom: 20px;
}

.videos video {
    width: calc(50% - 10px); /* width of each video */
    max-width: 100%; 
}



/*----------------------------*/
@media (max-width: 600px) {
    .vid {
        width: 100%; 
        padding-bottom: 0;
    }

    .videos {
        flex-direction: column; 
    }

    .videos video {
        width: 100%; 
        margin-bottom: 10px; 
    }
}




/* --------------------------------------------------------------------------------------------------------------------------------------*/
/* contact*/

/* top section */
.top_four {
    width: 100%;
    height: 600px;
    background-image: url('Images/Untitled\ design.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.top_four_text {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; 
    background-color: rgba(0, 0, 0, 0.45);
    color: white;
    padding: 60px 20px 20px 100px; 
    box-sizing: border-box;
}

.top_four_text h2 {
    text-transform: capitalize;
    font-size: 70px;
    margin-bottom: 20px;
}




/*--------------------------*/
@media (max-width: 600px) {
    .top_four_text {
        padding: 20px;
    }

    .top_four_text h2 {
        font-size: 40px; 
        margin-bottom: 20px;
    }
  
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/


/* Wrapper */
.cont_wrapper {
    width: 100%;
    max-width: 1200px; /* maximum width */
    margin: 0 auto; 
    margin-top: 80px;
    padding: 20px; 
    background-color: rgb(255, 255, 255); 
    margin-bottom: 80px;

}

/* Contact  */
.cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: rgb(87, 144, 95);
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto; /* centre the section horizontally */
    padding-right: 140px;
    padding-bottom: 50px;
}

.cont h1 {
    text-transform: capitalize;
    font-size: 50px; 
    margin-bottom: 20px; 
    flex: 1; /* equal space */
    text-align: left; 
    color: white;
    padding-left: 150px;
}

/*--------------------------------------------*/
@media (max-width: 700px) {
    .cont_wrapper {
        width: 92%; 
    }
    .cont {
        width: 94%; 
        padding: 20px 20px 50px 20px; 
        flex-direction: column; 
        text-align: center;
    }
    .cont h1 {
        text-align: center; 
        padding-left: 0; 
        padding-right: 0; 
        margin-bottom: 20px; 
    }
}

@media (max-width: 600px) {
    .cont_wrapper {
        width: 92%; 
    }
    .cont {
        width: 94%; 
        padding: 20px 20px 50px 20px; 
        flex-direction: column; 
        text-align: center;
    }
    .cont h1 {
        text-align: center; 
        padding-left: 0; 
        padding-right: 0; 
        margin-bottom: 20px; 
    }
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/* Form  */
.form-group {
    margin-top: 30px;
    margin-bottom: 15px;
    flex: 2; 
    text-align: left;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    resize: vertical; /*  vertical resizing */
}

.phone-input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    padding-top: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

/* text */
.save_nature {
    text-align: center;
    font-size: 20px;
    margin-top: 40px; 
    margin-bottom: 40px; 
    color: rgb(0, 0, 0); 
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/

#button_contact {
    padding: 10px 20px;
    background-color: #54a7ff;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#button_contact:hover {
    background-color: #0056b3;
}

/* --------------------------------------------------------------------------------------------------------------------------------------*/