@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
}

.Container{
    width: 100%;
    height: 100vh;
    position: relative; 
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(./images/sunny-meadow-landscape.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.navbar .container-fluid{
    padding-right: 5rem;
    padding-left: 5rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container-fluid .navbar-brand{
    color: #013220;
    font-weight: 700;
    font-family: Poppins;
}

.navbar-nav{
    display: flex;
    gap: 3rem;
    margin-left: 20rem;
}

.navbar-nav a{
    font-size: .9rem;
    font-weight: 400;
    font-family: Poppins;
    color: white;
}

.heroSectionContent{
    position: absolute; 
    bottom: 12rem;
    left: 5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.heroSectionContent .heading span{
    color: white;
    font-size: 2.5rem;
    font-weight: 500;
    font-family: "Poppins";
    line-height: 1.2;
}

.heroSectionContent .subheading span{
    color: white;
    font-weight: 400;
    font-size: 1rem;
    font-family: "Poppins";
}

.heroSectionContent .ctas{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 2rem;
}

.heroSectionContent .ctas .firstCta{
    color: #333333;
    background-color: #b2ff59;
    box-sizing: border-box;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: Poppins;
    font-weight: 400;
    cursor: pointer;
    font-size: 1rem;
}

.heroSectionContent .ctas .firstCta a{
    text-decoration: none;
    color: #333333;
}

.heroSectionContent .ctas .firstCta i{
    margin-left: .5rem;
    color: #333333;
    font-size: .8rem;
    font-weight: 500;
}

.heroSectionContent .ctas .firstCta:hover{
    transition: all .2s;
    background-color: #013220;
    color: white;

    a{
        color: white;
    }

    i{
        color: white;
    }
}

.heroSectionContent .ctas .secondCta{
    color: #333333;
    background-color: #b2ff59;
    box-sizing: border-box;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: Poppins;
    font-weight: 400;
    cursor: pointer;
    font-size: 1rem;
}

.heroSectionContent .ctas .secondCta a{
    text-decoration: none;
    color: #333333;
}

.heroSectionContent .ctas .secondCta i{
    margin-left: .5rem;
    color: #333333;
    font-size: .8rem;
    font-weight: 500;
}

.heroSectionContent .ctas .secondCta:hover{
    transition: all .2s;
    background-color: #013220;
    color: white;

    a{
        color: white;
    }

    i{
        color: white;
    }
}

.about{
    padding-right: 10rem;
    padding-left: 10rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    background-color: #f6f6f6;
}

.about .aboutTop{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutTop .heading span{
    font-family: "Bricolage Grotesque";
    font-weight: 600;
    font-size: 2rem;
    color: #013220;
}

.aboutTop .text span{
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
}

.aboutSecond{
    display: flex;
    flex-direction: row-reverse;
    gap: 5rem;
    align-items: center;
    justify-content: center;
}

.aboutSecond .image img{
    width: 35rem;
    height: auto;
    border-radius: 5px;
}

.aboutBoxes .boxes{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aboutBoxes .boxes .box{
    width: 100%;
    height: 100%;
}

.aboutBoxes .boxes .boxContent{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background-color: #b2ff59;
    padding: 1rem;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    border: .8px solid #5b5a5a;
}

.aboutBoxes .boxes .boxContent .boxText span{
    color: #333333;
    font-family: Poppins;
}

.products{
    background-color: #013220;
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-right: 10rem;
    padding-left: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products .heading span{
    font-family: "Bricolage Grotesque";
    font-size: 2rem;
    color: #b2ff59;
    font-weight: 500;
}

.products .subheading{
    margin-top: 2rem;
}

.products .subheading span{
    color: #f6f6f6;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 400;
}

.products .boxes{
    display: flex;
    flex-direction: row;
    gap: 4rem;
    margin-top: 4rem;
}

.products .boxes .box {
     border: .8px solid #5b5a5a;
     border-radius: 8px;
     overflow: hidden;
     width: 20rem;
 }

 .featured-product-image {
     height: 200px;
     background-color: #f1f1f1;
     background-size: cover;
     background-position: center;
 }

 .featured-product-details {
    padding: 20px;
 }

 .featured-product-details h3{
    color: #f6f6f6;
    font-size: 1.2rem;
    font-family: "Poppins";
 }

 .featured-product-details p{
    color: #f6f6f6;
    font-size: .8rem;
    font-family: "Poppins";
 }

 .breeding{
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-right: 15rem;
    padding-left: 15rem;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
 }

 .breeding .heading span{
    font-family: "Bricolage Grotesque";
    font-size: 2rem;
    font-weight: 600;
    justify-content: start;
    align-items: start;
 }

 .breeding .bodyContent{
    margin-top: 3rem;
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    align-items: center;
 }

 .breeding .bodyContent .image img{
    width: 45rem;
    height: auto;
    border-radius: 5px;
 }

 .breeding .bodyContent .textContent{
    display: flex;
    flex-direction: column;
    gap: 2rem;
 }

.breeding .bodyContent .textContent .breedingText span{
    font-family: Poppins;
    font-size: .8rem;
    font-weight: 400;
    color: #333333;
}

.breeding .bodyContent .textContent .list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breeding .bodyContent .textContent .list span{
    color: #333333;
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    align-items: center;
    background-color: #b2ff59;
    padding: 1rem;
    box-sizing: border-box;
    border: none;
    border-radius: 10px;
    border: .8px solid #5b5a5a;
}

.breeding .bodyContent .textContent .list span i{
    margin-right: .5rem;
    font-size: 1rem;
    color: #013220;
}

.consultation{
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-right: 10rem;
    padding-left: 10rem;
    background-color: #013220;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.consultation .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.consultation .top .heading span{
    color: #b2ff59a3;
    font-size: 2rem;
    font-family: Bricolage Grotesque;
    font-weight: 600;
}

.consultation .top .subheading{
    align-items: center;
    text-align: center;
    padding-right: 10rem;
    padding-left: 10rem;
}

.consultation .top .subheading span{
    color: #f6f6f6;
    font-family: Poppins;
    font-weight: 400;
    font-size: .73rem;
    text-align: center;
    line-height: 1;
}

.consultation .content{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.consultation .content .left{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.consultation .content .left .image img{
    width: 40rem;
    height: auto;
    border-radius: 5px;
}

.consultation .content .left .quote span{
    color: #f6f6f6;
    font-family: Poppins;
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
}

.consultation .content .left .cta span{
    color: #333333;
    background-color: #b2ff59;
    box-sizing: border-box;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: Poppins;
    font-weight: 400;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.consultation .content .left .cta span a{
    text-decoration: none;
    color: #333333;
}

.consultation .content .left .cta span i{
    margin-left: .5rem;
    color: #333333;
    font-size: .8rem;
    font-weight: 500;
}

.consultation .content .left .cta span:hover{
    transition: all .2s;
    background-color: #f6f6f6;
    color: #013220;

    i{
        color: #013220;
    }
}

.consultation .content .right .boxes{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.consultation .content .right .boxes .box .title span{
    color: #b2ff59;
    font-family: Poppins;
    font-weight: 400;
    font-size: 1rem;
}

.consultation .content .right .boxes .box .text span{
    color: #f6f6f6;
    font-family: Poppins;
    font-weight: 400;
    font-size: .8rem;
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section {
  background-color: #faf8f3; /* soft beige background */
  background: linear-gradient(rgba(250, 248, 243, 0.95), rgba(250, 248, 243, 0.95)),
              url('images/Image_fx\ \(49\).jpg') center/cover no-repeat;
  padding: 10rem 20rem;
  text-align: center;
  color: #2e2e2e;
  font-family: "Poppins", sans-serif;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #013220;
  margin-bottom: 15px;
  font-family: Bricolage Grotesque;
}

.contact-section p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: #333333;
}

/* ===== FORM STYLING ===== */
.contact-form {
  background-color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1.5px solid #d9d9d9;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: Poppins;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  display: inline-block;
  width: 100%;
  background-color: #2e7d32;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form .btn:hover {
  background-color: #b2ff59;
  transform: scale(1.02);
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info {
  margin-top: 50px;
  text-align: center;
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #2e7d32;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #8b5e3c; /* earthy brown accent */
}



/* Footer Section */
.footer {
  background-color: #013220;
  color: #f6f6f6;
  padding: 100px 20px 50px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  color: #34e67e;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-about p {
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer h3 {
  margin-bottom: 15px;
  color: #b2ff59;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #f6f6f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #27AE60;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #27AE60;
  border-radius: 50%;
  color: #f6f6f6;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #b2ff59;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #f6f6f6;
}

/******************************************************** Media Queries **************************************************88*/

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {

    .Container{
    height: 70vh;
}

.navbar{
    z-index: 2000;
}

    .navbar .container-fluid {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .navbar .navbar-nav{
    display: flex;
    gap: 3rem;
    margin-left: 0rem;
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

    .heroSectionContent {
        left: 3rem;
        right: 3rem;
        bottom: 20rem;
    }

    .heroSectionContent .heading{
        padding-right: 1rem;
    }

    .heroSectionContent .heading span {
        font-size: 2rem;
        font-weight: 700;
    }

    .about {
        padding: 7rem 2rem;
    }

    .aboutSecond {
        flex-direction: column;
    }

    .aboutSecond .image img {
        width: 100%;
    }

    .aboutBoxes .boxes{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

    .products {
        padding: 5rem 2rem;
    }

    .products .boxes {
        flex-direction: column;
    }

    .products .boxes .box {
        width: 100%;
    }

    .breeding {
        padding: 5rem 2rem;
    }

    .breeding .bodyContent {
        flex-direction: column;
    }

    .breeding .bodyContent .image img {
        width: 100%;
    }

    .breeding .bodyContent .textContent .list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

    .consultation {
        padding: 5rem 2rem;
    }

    .consultation .content {
        flex-direction: column;
    }

    .consultation .content .left .image img {
        width: 100%;
    }

    .consultation .top .subheading {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .contact-section {
        padding: 5rem 2rem;
    }
}



@media(max-width: 920px){

    .navbar{
    z-index: 2000;
}

.navbar .navbar-toggler{
    width: 3rem;
    height: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .navbar-toggler-icon{
        width: 2rem;
        height: 2rem;
    }
}

.navbar .navbar-nav{
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #013220;
}

}












/***************************************************** Mobile Phones (max-width: 768px) *****************************************/
@media (max-width: 768px) {

    .Container{
    width: 100%;
    height: 100vh;
    position: relative; 
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(./images/sunny-meadow-landscape.jpg);
    background-position: center;
}

.navbar{
    z-index: 2000;
}

.navbar .navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .navbar-toggler-icon{
        width: 1.5rem;
        height: 1.5rem;
    }
}

.navbar .navbar-nav{
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #013220;
}

.heroSectionContent {
        text-align: start;
        left: 2rem;
        right: 2rem;
        top: 30%;
        bottom: 20%;
        align-items: start;
    }

    .heroSectionContent .heading span {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.5;
    }

    .heroSectionContent .subheading span {
        font-size: 0.9rem;
    }

    .heroSectionContent .ctas {
        flex-direction: row;
    }

    .about{
    gap: 3rem;
}

.aboutSecond{
    gap: 2rem;
}

    .aboutBoxes .boxes .boxContent .boxText span{
    font-size: .7rem;
    padding: .5rem;
}

.products .heading span{
    font-size: 1.3rem;
    text-align: center;
}

    .breeding .heading{
        text-align: center;
    }

    .aboutTop .text span, .products .subheading span, .breeding .bodyContent .textContent .breedingText span, .consultation .top .subheading span, .contact-section p {
        font-size: 0.7rem;
    }

    .breeding .heading span{
    font-size: 1.5rem;
    font-weight: 500;
 }

 .breeding .bodyContent .textContent .list span{
    font-size: .7rem;
    font-weight: 500;
    padding: .8rem;
}

    .consultation .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    .heading{
        text-align: center;
        align-items: center;
    }
}

.consultation .top .heading span{
    color: #b2ff59a3;
    font-size: 1.3rem;
    font-family: Bricolage Grotesque;
    font-weight: 600;
}

    .contact-form {
        padding: 20px;
    }

    .consultation .top .subheading{
    padding-right: .5rem;
    padding-left: .5rem;
    text-align: start;
}

.consultation .top .subheading span{
    text-align: start;
    align-items: start;
}

.consultation .content .left{
    gap: 1.5rem;
}

.consultation .content .left .cta span{
    padding: 8px 16px;
    border-radius: 25px;
    font-size: .8rem;
}

.consultation .content .left .cta span i{
    margin-left: .3rem;
    color: #333333;
    font-size: .7rem;
}

    .consultation .content .left .quote span{
    font-size: .8rem;
}

.consultation .content .right .boxes{
    gap: 2rem;
}

.consultation .content .right .boxes .box .title span{
    font-size: .8rem;
}

.consultation .content .right .boxes .box .text span{
    font-size: .7rem;
    font-weight: 400;
    line-height: 1;
}

.contact-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  padding-right: 1rem;
  padding-left: 1rem;
}

.contact-section p {
  font-size: .6rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px 12px;
  font-size: 0.65rem;
}

.contact-form .btn {
  font-size: .8rem;
  font-weight: 400;
  padding: 8px 0;
}

.contact-info h3 {
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.7rem;
}

.social-links a {
  font-weight: 500;
  margin: 0 8px;
  font-size: .7rem;
}

.footer-logo {
  color: #34e67e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-about p {
  line-height: 1.7;
  font-size: 0.7rem;
  font-weight: 400;
}

.footer h3 {
  font-size: .9rem;
}

.footer-links ul li a {
  font-size: .8rem;
  font-weight: 400;
  font-family: Poppins;
}

.footer-contact p {
  font-size: 0.8rem;
}

.footer-bottom {
  font-size: 0.75rem;
}
}

















/******************************** Smaller Mobile Phones (max-width: 480px) *********************************/
@media (max-width: 480px) {

    .Container{
    width: 100%;
    height: 100vh;
    position: relative; 
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(./images/sunny-meadow-landscape.jpg);
    background-position: center;
}

.navbar{
    z-index: 2000;
}

.navbar .navbar-toggler{
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .navbar-toggler-icon{
        width: 1rem;
        height: 1rem;
    }
}

.navbar .navbar-nav{
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.heroSectionContent {
        text-align: center;
        left: 2rem;
        right: 2rem;
        top: 20%;
        bottom: 20%;
        align-items: center;
    }

    .heroSectionContent .heading span {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .heroSectionContent .subheading span {
        font-size: 0.9rem;
    }

    .heroSectionContent .ctas {
        flex-direction: column;
    }

    .about{
    gap: 3rem;
}

.aboutSecond{
    gap: 2rem;
}

.aboutBoxes .boxes{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutBoxes .boxes .boxContent{
    padding: .7rem;
    gap: .8rem;
}

    .aboutBoxes .boxes .boxContent .boxText span{
    font-size: .7rem;
    padding: .5rem;
}

.products .heading span{
    font-size: 1.3rem;
    text-align: center;
}

    .breeding .heading{
        text-align: center;
    }

    .aboutTop .text span, .products .subheading span, .breeding .bodyContent .textContent .breedingText span, .consultation .top .subheading span, .contact-section p {
        font-size: 0.7rem;
    }

    .breeding .heading span{
    font-size: 1.5rem;
    font-weight: 500;
 }

 .breeding .bodyContent .textContent .list span{
    font-size: .7rem;
    font-weight: 500;
    padding: .8rem;
}

.breeding .bodyContent .textContent .list{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breeding .bodyContent .textContent .list span{
    font-size: .8rem;
    padding: .8rem;
}

    .consultation .top{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    .heading{
        text-align: center;
        align-items: center;
    }
}

.consultation .top .heading span{
    color: #b2ff59a3;
    font-size: 1.3rem;
    font-family: Bricolage Grotesque;
    font-weight: 600;
}

    .contact-form {
        padding: 20px;
    }

    .consultation .top .subheading{
    padding-right: .5rem;
    padding-left: .5rem;
    text-align: start;
}

.consultation .top .subheading span{
    text-align: start;
    align-items: start;
}

.consultation .content .left{
    gap: 1.5rem;
}

.consultation .content .left .cta span{
    padding: 8px 16px;
    border-radius: 25px;
    font-size: .8rem;
}

.consultation .content .left .cta span i{
    margin-left: .3rem;
    color: #333333;
    font-size: .7rem;
}

    .consultation .content .left .quote span{
    font-size: .8rem;
}

.consultation .content .right .boxes{
    gap: 2rem;
}

.consultation .content .right .boxes .box .title span{
    font-size: .8rem;
}

.consultation .content .right .boxes .box .text span{
    font-size: .7rem;
    font-weight: 400;
    line-height: 1;
}

.contact-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  padding-right: 1rem;
  padding-left: 1rem;
}

.contact-section p {
  font-size: .6rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px 12px;
  font-size: 0.65rem;
}

.contact-form .btn {
  font-size: .8rem;
  font-weight: 400;
  padding: 8px 0;
}

.contact-info h3 {
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.7rem;
}

.social-links a {
  font-weight: 500;
  margin: 0 8px;
  font-size: .7rem;
}

.footer-logo {
  color: #34e67e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-about p {
  line-height: 1.7;
  font-size: 0.7rem;
  font-weight: 400;
}

.footer h3 {
  font-size: .9rem;
}

.footer-links ul li a {
  font-size: .8rem;
  font-weight: 400;
  font-family: Poppins;
}

.footer-contact p {
  font-size: 0.8rem;
}

.footer-bottom {
  font-size: 0.75rem;
}

}