/*-----------------------------------------------*/
/*          ELEMENTOS GENERALES DE HTML          */
/*-----------------------------------------------*/

:root {
    --primary-color: #445724;
    --secondary-color: #F8F7F0;
    --tertiary-color: #657844;

    --white-color: #FFFFFF;
    --black-color: #212529;
    --gray-color: #CECECE;
    --dark-color: #1C2023;
    --green-color: #657844;

    --soft-gray-color: #878680;
    --soft-green-color: #65784459;
}
body {
    font-family: 'Montserrat', sans-serif;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
button, input, textarea {
    box-shadow: none;
    outline: none;
    border: none;
}

/*-----------------------------------------------*/
/*                BACKGROUND COLOR               */
/*-----------------------------------------------*/

.bgcolor-primary { background-color: var(--primary-color) !important; }
.bgcolor-secondary { background-color: var(--secondary-color) !important; }
.bgcolor-tertiary { background-color: var(--tertiary-color) !important; }

.bgcolor-white { background-color: var(--white-color) !important; }
.bgcolor-black { background-color: var(--black-color) !important; }
.bgcolor-gray { background-color: var(--gray-color) !important; }
.bgcolor-dark { background-color: var(--dark-color) !important; }

.bgcolor-soft-gray { background-color: var(--gray-color) !important; }
.bgcolor-soft-green { background-color: var(--green-color) !important; }

/*-----------------------------------------------*/
/*                   TEXT ALIGN                  */
/*-----------------------------------------------*/

.text-justify {text-align: justify !important;}

/*-----------------------------------------------*/
/*                     FONTS                     */
/*-----------------------------------------------*/

/* FONT: "Montserrat" STYLE: "Normal" */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat/Montserrat-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

/* FONT: "Montserrat" STYLE: "Italic" */
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/*-----------------------------------------------*/
/*                   FONT SIZE                   */
/*-----------------------------------------------*/

.fs-8 {font-size: 8px !important;}
.fs-9 {font-size: 9px !important;}
.fs-10 {font-size: 10px !important;}
.fs-11 {font-size: 11px !important;}
.fs-12 {font-size: 12px !important;}
.fs-13 {font-size: 13px !important;}
.fs-14 {font-size: 14px !important;}
.fs-15 {font-size: 15px !important;}
.fs-16 {font-size: 16px !important;}
.fs-17 {font-size: 17px !important;}
.fs-18 {font-size: 18px !important;}
.fs-19 {font-size: 19px !important;}
.fs-20 {font-size: 20px !important;}
.fs-21 {font-size: 21px !important;}
.fs-22 {font-size: 22px !important;}
.fs-23 {font-size: 23px !important;}
.fs-24 {font-size: 24px !important;}
.fs-25 {font-size: 25px !important;}
.fs-26 {font-size: 26px !important;}
.fs-27 {font-size: 27px !important;}
.fs-28 {font-size: 28px !important;}
.fs-29 {font-size: 29px !important;}
.fs-30 {font-size: 30px !important;}
.fs-31 {font-size: 31px !important;}
.fs-32 {font-size: 32px !important;}
.fs-33 {font-size: 33px !important;}
.fs-34 {font-size: 34px !important;}
.fs-35 {font-size: 35px !important;}
.fs-36 {font-size: 36px !important;}
.fs-48 {font-size: 48px !important;}
.fs-56 {font-size: 56px !important;}
.fs-64 {font-size: 64px !important;}

/*-----------------------------------------------*/
/*                   FONT COLOR                  */
/*-----------------------------------------------*/

.txtcolor-black { color: var(--black-color) !important; }
.txtcolor-white { color: var(--white-color) !important; }
.txtcolor-gray { color: var(--primary-color) !important; }
.txtcolor-primary { color: var(--primary-color) !important; }
.txtcolor-secondary { color: var(--secondary-color) !important; }

/*-----------------------------------------------*/
/*                  FONT WEIGHT                  */
/*-----------------------------------------------*/

.fw-300 {font-weight: 300 !important;}
.fw-400 {font-weight: 400 !important;}
.fw-500 {font-weight: 500 !important;}
.fw-600 {font-weight: 600 !important;}
.fw-700 {font-weight: 700 !important;}

/*-----------------------------------------------*/
/*                  ANIMATIONS                   */
/*-----------------------------------------------*/

.swing-in-top-fwd {
	-webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
}
/* IN */
@-webkit-keyframes swing-in-top-fwd {
    0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
    }
    100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
    }
}
@keyframes swing-in-top-fwd {
    0% {
    -webkit-transform: rotateX(-100deg);
            transform: rotateX(-100deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 0;
    }
    100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    -webkit-transform-origin: top;
            transform-origin: top;
    opacity: 1;
    }
}
/* OUT */
@-webkit-keyframes swing-out-top-bwd {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
    100% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
        display: none;
    }
}
@keyframes swing-out-top-bwd {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
    100% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
        display: none;
    }
}

.tracking-in-expand {
	-webkit-animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
    0% {
    letter-spacing: -0.5em;
    opacity: 0;
    }
    40% {
    opacity: 0.6;
    }
    100% {
    opacity: 1;
    }
}
@keyframes tracking-in-expand {
    0% {
    letter-spacing: -0.5em;
    opacity: 0;
    }
    40% {
    opacity: 0.6;
    }
    100% {
    opacity: 1;
    }
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
    from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
    10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    }
    17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
    33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    }
    45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
    10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    }
    17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
    33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    }
    45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    }
}
  
/*----------------------------------------------*/
/*               MARGINS & PADDINGS             */
/*----------------------------------------------*/

.pt-70 {padding-top: 70px;}
.py-70 {padding-top: 70px;padding-bottom: 70px;}
.pb-70 {padding-bottom: 70px;}

.pt-90 {padding-top: 90px;}
.py-90 {padding-top: 90px;padding-bottom: 90px;}
.pb-90 {padding-bottom: 90px;}

.mt-70 {margin-top: 70px;}
.my-70 {margin-top: 70px;margin-bottom: 70px;}
.mb-70 {margin-bottom: 70px;}

.mt-140 {margin-top: 140px;}
.my-140 {margin-top: 140px;margin-bottom: 140px;}
.mb-140 {margin-bottom: 140px;}

@media (max-width: 1200px) {
    .py-35 {padding-top: 35px !important;padding-bottom: 35px !important;}
}

/*----------------------------------------------*/
/*                  SEPARATORS                  */
/*----------------------------------------------*/

.vertical-separator {
    display: flex;
    width: 1px;
    height: 100%;
}

/*-----------------------------------------------*/
/*                 HEADER - NAVBAR               */
/*-----------------------------------------------*/

/*=========================*/
/*     NAVBAR CONTACTS     */
/*=========================*/
.navbar-contacts {
    background-color: var(--black-color);
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar-contacts > div.container {
    display: flex;
    justify-content: space-between;
}
.navbar-contacts ul li {
    display: flex;
    align-items: center;
}
.navbar-contacts .navbar-contacts-list,
.navbar-contacts .navbar-social-media-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.navbar-contacts .navbar-contacts-list li a,
.navbar-contacts .navbar-social-media-list li a {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    padding-right: 16px;
}
.navbar-contacts .navbar-social-media-list li a {
    padding-right: 0;
    padding-left: 16px;
}
.navbar-contacts .navbar-contacts-list li a:hover,
.navbar-contacts .navbar-social-media-list li a:hover {
    color: #ffffffc7;
}
.navbar-contacts .navbar-contacts-list li a i,
.navbar-contacts .navbar-social-media-list li a i {
    font-size: 16px;
}
.navbar-contacts .navbar-social-media-list img {
    width: 20px;
    max-width: 20px;
    min-width: 20px;
    height: 20px;
    max-height: 20px;
    min-height: 20px;
}
.navbar-contacts .vertical-separator {
    background-color: #FFFFFF80;
    margin-left: 16px;
}

@media (max-width: 991px) {
    .navbar-contacts > div.container {
        flex-direction: column-reverse;
        align-items: center;
    }
    .navbar-social-media-list {
        margin-bottom: 6px !important;
    }
}
@media (max-width: 767px) {
    .navbar-contacts > div.container {
        flex-direction: row;
    }
    .navbar-contacts-list span {
        display: none !important;
    }
    .navbar-social-media-list {
        margin-bottom: 0 !important;
    }
}


/*=================================*/
/*     NAVBAR MAIN & SECONDARY     */
/*=================================*/
#navbarMain, #navbarSecondary {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat' !important;
    width: 100%;
    z-index: 9;
}
#navbarMain {
    flex-direction: column;
    padding: 0;
}
#navbarSecondary {
    -webkit-animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
	animation: swing-in-top-fwd 1s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    position: fixed;
    top: 0;
    left: 0;
}
#navbarSecondary img {
    height: 95px;
}
#navbarMain .navbar-toggler, #navbarSecondary .navbar-toggler { 
    border: 0; 
    box-shadow: none;
}
#navbarMain .navbar-options {
    width: 100%;  
    display: flex;
    justify-content: end;
    align-items: center;
}
#navbarSecondary .navbar-options {
    width: 100%;  
    display: flex;
    justify-content: end;
    align-items: center;
}
#navbarMain .nav-link,
#navbarSecondary .nav-link {
    font-weight: 500 !important;
    font-style: normal !important;
    position: relative !important;
    padding: 3px 0 !important;
    text-align: center !important;
}
#navbarMain .nav-link {
    color: var(--black-color) !important;
    font-size: 14px;
}
#navbarSecondary .nav-link {
    color: var(--white-color) !important;
    font-size: clamp(14.5px, 1.35vw, 16px);
}
#navbarMain .navbar-nav .nav-link:not(.current)::after { background-color: var(--black-color); }
#navbarSecondary .navbar-nav .nav-link:not(.current)::after { background-color: var(--white-color); }
.navbar-nav .nav-link:not(.current)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s; 
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
#navbarMain ul li {
    display: flex;
}
#navbarMain .vertical-separator {
    background-color: #21252980 !important;
    height: 24px;
}
#navbarSecondary .vertical-separator {
    background-color: #FFFFFF80 !important;
    height: 24px;
}
#navbarMain .nav-link.current {
    border-bottom: 2px solid var(--black-color);
}
#navbarSecondary .nav-link.current {
    border-bottom: 2px solid var(--white-color);
}
#navbarMain span.hidden,
#navbarSecondary span.hidden {
    display: none;
}

@media (max-height: 680px) {
    #navbarSecondary {
        padding: 0;
    }
}
@media (max-width: 991px) {
    #navbarMain .navbar-brand img {
        height: 120px;
    }
    #navbarSecondary span.hidden {
        display: block;
    }
    #navbarSecondary .vertical-separator {
        display: none;
    }
    #navbarSecondary .search-option i {
        display: none;
    }
}
@media (max-width: 767px) {
    .navbar-toggler-icon {
        font-size: 24px !important;
    }
    #navbarMain span.hidden {
        display: block;
    }
    #navbarMain .vertical-separator {
        display: none;
    }
    #navbarMain .search-option i {
        display: none;
    }
}
@media (max-width: 650px) {
    .navbar-toggler-icon {
        font-size: 22px !important;
    }
    #navbarMain .navbar-brand img {
        height: 110px;
    }
    #navbarSecondary .navbar-brand img {
        height: 100px;
    }
}
@media (max-width: 575px) {
    .navbar-toggler-icon {
        font-size: 20px !important;
    }
}
@media (max-width: 400px) {
    #navbarMain .navbar-brand img {
        height: 100px;
    }
}
@media (max-width: 330px) {
    #navbarMain .navbar-brand img,
    #navbarSecondary .navbar-brand img {
        height: 90px;
    }
}

/*=================================*/
/*           NAVBAR LATERAL        */
/*=================================*/

/* DEFAULT / DARK VERSION */
.navbar-lateral {
    background-color: var(--black-color);
    border: none;
}
.navbar-lateral .offcanvas-header {
    justify-content: center;
}
.navbar-lateral .offcanvas-header img {
    height: 120px;
}
.navbar-lateral .offcanvas-header .btn-close {
    box-shadow: none;
    position: absolute;
    top: 20px;
    right: 20px;
}
.navbar-lateral ul.navigation li {
    border-bottom: 1px solid #FFFFFF80;
}
.navbar-lateral ul.navigation li:last-child {
    border-bottom: none;
}
.navbar-lateral ul.navigation li a {
    color: #ffffffc7;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.navbar-lateral ul.navigation li a.current {
    color: var(--white-color);
    font-weight: 700;
}
.navbar-lateral ul.navigation li a:hover {
    color: var(--white-color);
    transform: scale(1.03);
}
.navbar-lateral ul.navigation li.search-option-row {
    padding: 10px 0;
    border: none;
}
.navbar-lateral ul.navigation li.search-option-row .search-option {
    display: flex;
}
.navbar-lateral ul.navigation li.search-option-row .search-option input {
    background-color: var(--black-color);
    border: 2px solid #FFFFFF80;
    border-right: none;
    border-radius: 25px 0 0 25px;
    color: var(--white-color);
    display: flex;
    width: 100%;
    height: 40px;
    padding: 0px 18px;
}
.navbar-lateral ul.navigation li.search-option-row .search-option button {
    background-color: #FFFFFF80;
    border-radius: 0 25px 25px 0;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    width: 55px;
    height: 40px;
    flex-shrink: 0;
    padding-right: 7px;
}
.navbar-lateral .contact-and-social-media {
    position: absolute;
    bottom: 15px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
}
.navbar-lateral .contact-and-social-media .contact,
.navbar-lateral .contact-and-social-media .social-media-lang {
    display: flex;
    height: 24px;
    gap: 12px;
}
.navbar-lateral .contact-and-social-media .contact li,
.navbar-lateral .contact-and-social-media .social-media-lang li,
.navbar-lateral .contact-and-social-media .contact li a,
.navbar-lateral .contact-and-social-media .social-media-lang li a {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.navbar-lateral .contact-and-social-media .contact li a:hover,
.navbar-lateral .contact-and-social-media .social-media-lang li a:hover {
    color: #ffffffc7;
}
.navbar-lateral .contact-and-social-media .contact li a i,
.navbar-lateral .contact-and-social-media .social-media-lang li a i {
    font-size: 20px;
}
.navbar-lateral .contact-and-social-media .social-media-lang img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.navbar-lateral .contact-and-social-media .social-media-lang .vertical-separator {
    background-color: var(--white-color);
    height: 100%;
}
.navbar-lateral .contact-and-social-media .social-media-lang .lang {
    font-weight: 500;
    gap: 5px;
}
/* LIGHT VERSION */
.navbar-lateral-light {
    background-color: var(--white-color);
}
.navbar-lateral-light ul.navigation li {
    border-bottom: 1px solid #212529cc;
}
.navbar-lateral-light ul.navigation li a {
    color: #212529c7;
}
.navbar-lateral-light ul.navigation li a.current {
    color: var(--black-color);
}
.navbar-lateral-light ul.navigation li a:hover {
    color: var(--black-color);
}
.navbar-lateral-light ul.navigation li.search-option-row .search-option input {
    background-color: var(--white-color);
    border: 2px solid #212529;
    color: var(--black-color);
}
.navbar-lateral-light ul.navigation li.search-option-row .search-option button {
    background-color: #212529;
    color: var(--white-color);
}
.navbar-lateral-light .contact-and-social-media .contact li,
.navbar-lateral-light .contact-and-social-media .social-media-lang li,
.navbar-lateral-light .contact-and-social-media .contact li a,
.navbar-lateral-light .contact-and-social-media .social-media-lang li a {
    color: var(--black-color);
}
.navbar-lateral-light .contact-and-social-media .contact li a:hover,
.navbar-lateral-light .contact-and-social-media .social-media-lang li a:hover {
    color: #212529c7;
}
.navbar-lateral-light .contact-and-social-media .social-media-lang .vertical-separator {
    background-color: var(--black-color);
}

/* GREEN VERSION */
.navbar-lateral-green {
    background-color: var(--secondary-color);
}
.navbar-lateral-green ul.navigation li {
    border-bottom: 1px solid var(--primary-color);
}
.navbar-lateral-green ul.navigation li a {
    color: var(--green-color);
}
.navbar-lateral-green ul.navigation li a.current {
    color: var(--primary-color);
}
.navbar-lateral-green ul.navigation li a:hover {
    color: var(--primary-color);
}
.navbar-lateral-green ul.navigation li.search-option-row .search-option input {
    background-color: var(--white-color);
    border: 2px solid var(--primary-color);
    color: var(--black-color);
}
.navbar-lateral-green ul.navigation li.search-option-row .search-option button {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.navbar-lateral-green .contact-and-social-media .contact li,
.navbar-lateral-green .contact-and-social-media .social-media-lang li,
.navbar-lateral-green .contact-and-social-media .contact li a,
.navbar-lateral-green .contact-and-social-media .social-media-lang li a {
    color: var(--primary-color);
}
.navbar-lateral-green .contact-and-social-media .contact li a:hover,
.navbar-lateral-green .contact-and-social-media .social-media-lang li a:hover {
    color: var(--primary-color);
}
.navbar-lateral-green .contact-and-social-media .social-media-lang .vertical-separator {
    background-color: var(--primary-color);
}

/*-----------------------------------------------*/
/*                     FOOTER                    */
/*-----------------------------------------------*/

footer {
    box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.5);
}
footer .footer-logo, footer .footer-logo:hover, footer .footer-logo:active  {
    color: var(--white-color);
}
footer .footerInformacion {
    max-width: 185px;
    margin: 0 auto;
}
footer .footerInformacion li a span {
    position: relative;
}
footer .footerInformacion li a span::after {
    background-color: var(--white-color);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s; 
}
footer .footerInformacion li a span:hover::after {
    width: 100%;
}
footer .footerContactanos {
    max-width: 325px;
    margin: 0 auto;
}
footer .footerContactanos ul li a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}
footer .footerInformacion ul li a,
footer .footerContactanos ul li a {
    color: var(--white-color);
}
footer .footerInformacion ul li a:hover,
footer .footerContactanos ul li a:hover {
    color: #ffffffc7;
} 
footer .footerContactanos ul li i {
    font-size: 40px;
}
footer .footerContactanos ul li span {
    font-weight: 700;
}
footer .footerContactanos ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
footer .footerContactanos ul li:last-child {
    border-bottom: none;
}
footer .copyright ul li {
    margin-left: 16px;
}
footer .copyright ul li:first-child {
    margin-left: 0;
}
footer .copyright ul li a {
    color: var(--white-color);
    font-size: 18px;
}
footer .copyright ul li a:hover {
    color: #ffffffc7;
}
@media (max-width: 340px) {
    footer .footerContactanos {
        max-width: 290px;
    }
    footer .footerContactanos ul li a p {
        font-size: 14.5px;
    }
}

/*-----------------------------------------------*/
/*                  MAIN ELEMENT                 */
/*-----------------------------------------------*/

/* main {
    padding-top: 184px;
} */

/*-----------------------------------------------*/
/*              BUTTON: POSITION FIXED           */
/*-----------------------------------------------*/

.btn-fixed {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    z-index: 5;
}
.btn-fixed:hover {
    transform: scale(1.08);
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}
@media (max-width: 950px) {
    .btn-fixed.btn-contact-us, .btn-fixed.scrollToTop {
        right: 15px;
    }
}
@media (max-width: 450px) {
    .btn-fixed {
        width: 45px;
        height: 45px;
    }
    .btn-fixed.btn-contact-us {
        font-size: 26px;
        bottom: 20px;
    }
    .btn-fixed.scrollToTop {
        bottom: 80px;
    }
}

/*=================================*/
/*           BTN CONTACT US        */
/*=================================*/
.btn-contact-us {
    background-color: var(--primary-color);
    font-size: 30px;
    bottom: 30px;
}

/*=================================*/
/*         BTN SCROLL TO TOP       */
/*=================================*/
.scrollToTop {
    background-color: #25292D;
    font-size: 26px;
    bottom: 90px;
    display: none;
}

/*-----------------------------------------------*/
/*                    BREADCUMB                  */
/*-----------------------------------------------*/

.breadcrumb-container {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), url('../images/banner.jpg'), lightgray 50% / cover no-repeat;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
    /* max-height: 300px; */
    min-height: 300px;
}
.breadcrumb-container .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
}
.breadcrumb-container h1 {
    font-size: clamp(25px, 4vw, 44px);
    color: var(--white-color);
    margin-bottom: 22px;
    text-align: center;
}
.breadcrumb-container nav ul {
    list-style-type: none;
    display: flex;
    font-size: clamp(15px, 3vw, 17px);
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
}
.breadcrumb-container nav ul li {
    margin-right: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.breadcrumb-container nav ul li::after {
    color: #D2D2D2;
    content: "/";
    position: absolute;
    font-size: 18px;
    display: flex;
    right: -15px;
}
.breadcrumb-container nav ul li a:hover::after {
    width: 100%;
}
.breadcrumb-container nav ul li a::after {
    background-color: var(--white-color);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s; 
}
.breadcrumb-container nav ul li:last-child {
    margin-right: 0;
}
.breadcrumb-container nav ul li:last-child:after {
    content: none;
}
.breadcrumb-container nav a {
    color: #D2D2D2;
}
.breadcrumb-container nav a:hover {
    color: var(--white-color);
}
.breadcrumb-container nav span {
    color: var(--white-color);
}
@media (max-width: 1200px) {
    .breadcrumb-container {
        height: 280px;
        min-height: 280px;
    }
}
@media (max-width: 1000px) {
    .breadcrumb-container {
        height: 260px;
        min-height: 260px;
    }
}
@media (max-width: 800px) {
    .breadcrumb-container {
        height: 240px;
        min-height: 240px;
    }
}
@media (max-width: 500px) {
    .breadcrumb-container {
        height: 260px;
        min-height: 260px;
    }
}

/*-----------------------------------------------*/
/*                SECTION ELEMENTS               */
/*-----------------------------------------------*/

.title {
    font-size: clamp(24px, 3.5vw, 34px);
    color: var(--black-color);
}
.subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--primary-color);
}
.title, .subtitle {
    text-transform: uppercase;
    font-weight: 600;
}
.text-introduction {
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 400;
    text-align: justify;
    line-height: 24px;
}
.section {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-bg-ct {
    background-position: center top;
}
.section-bg-cb {
    background-position: center bottom;
}

/*-----------------------------------------------*/
/*                   VIEW HOME                   */
/*-----------------------------------------------*/

/*=================================*/
/*      SLIDER / CAROUSEL MAIN     */
/*=================================*/

.carousel-main .item {
    color: var(--white-color);
    width: 100vw;
    max-width: 100vw;
    min-width: 10vw;
    height: calc(100vh - 225px);
    max-height: calc(100vh - 225px);
    /* min-height: calc(100vh - 225px); */
    min-height: 620px;
    /* height: 76.5vh;
    max-height: 76.5vh;
    min-height: 76.5vh; */
    position: relative;
}
.opaque-layer {
    background-color: #00000033;
    position: absolute;
    width: 100%;
    height: 100%;
}
.carousel-main .content-layer {
    width: 100%;
    height: 100%;
    display: flex;
}
.carousel-main .slide-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* SLIDE #1 & #2 */
.carousel-main .slide-1 .content-layer,
.carousel-main .slide-2 .content-layer  {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carousel-main .slide-2 .content-layer {
    flex-direction: row;
    justify-content: space-between;
}
.carousel-main .slide-1 .content-layer img {
    width: 500px;
    max-width: 500px;
    margin-bottom: 36px;
}
.carousel-main .slide-2 .content-layer img {
    width: 450px;
    max-width: 450px;
    margin: 0 auto;
}
.carousel-main .slide-2 .content-layer article {
    max-width: 500px;
    margin: 0 auto;
}
.carousel-main .slide-1 .content-layer h2,
.carousel-main .slide-2 .content-layer h2 {
    /* -webkit-animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
	        animation: tracking-in-expand 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both; */
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
    text-align: center;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 7%;
} 
.carousel-main .slide-2 .content-layer h2 {
    margin-bottom: 30px;
}
.carousel-main .slide-2 .content-layer ul {
    max-width: 400px;
    min-width: 400px;
    margin: 0 auto;
}
.carousel-main .slide-2 .content-layer ul li,
.carousel-main .slide-image .opaque-layer ul li {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.50);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 12px;
}
.carousel-main .slide-image .opaque-layer ul li {
    text-shadow: none;
}
.carousel-main .slide-2 .content-layer ul li i,
.carousel-main .slide-image .opaque-layer ul li i {
    font-size: 14px;
}
/* SLIDE IMAGE BACKGROUND */
.carousel-main .slide-image .opaque-layer {
    padding-bottom: 70px;
}
.carousel-main .slide-image h2 {
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.carousel-main .slide-image p {
    width: 65%;
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}
.carousel-main .slide-image a {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: var(--white-color);
    width: 180px;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.carousel-main .slide-image a.lg {
    width: 220px;
}
.carousel-main .slide-image a:hover {
    scale: 1.1;
}
.carousel-main .slide-image a span {
    font-size: 16px;
}
.carousel-main .slide-image a i {
    font-size: 16px;
    margin: 0.5rem;
}

.carousel-main.see-more {
    -webkit-animation: heartbeat 3s ease-in-out infinite both;
	        animation: heartbeat 3s ease-in-out infinite both;
    color: var(--white-color);
    position: absolute;
    bottom: 20px;
    left: calc(50% - 42.5px);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.carousel-main.see-more img {
    max-width: 24px;
}

@media (max-width: 1400px) {
    .carousel-main .slide-1 .content-layer img {
        max-width: 450px;
    }
    .carousel-main .slide-2 .content-layer img {
        max-width: 400px;
    }
    .carousel-main .slide-2 .content-layer article {
        max-width: 430px;
    }
    .carousel-main .slide-1 .content-layer h2,
    .carousel-main .slide-2 .content-layer h2 {
        font-size: 25px;
    }
    .carousel-main .slide-2 .content-layer ul {
        max-width: 350px;
        min-width: 350px;
    }
    .carousel-main .slide-2 .content-layer ul li,
    .carousel-main .slide-image .content-layer ul li {
        font-size: 20px;
    }
    .carousel-main .slide-2 .content-layer ul li i,
    .carousel-main .slide-image .content-layer ul li i {
        font-size: 13px;
    } 
    .carousel-main .slide-image .opaque-layer .container {
        max-width: 80%;
    }
    .carousel-main .slide-image .opaque-layer p {
        width: 70%;
    }
}
@media (max-width: 1200px) {
    .carousel-main .slide-1 .content-layer img {
        max-width: 400px;
    }
    .carousel-main .slide-1 .content-layer h2 {
        font-size: 21px;
    }
    .carousel-main .slide-2 .content-layer img {
        max-width: 360px;
    }
    .carousel-main .slide-2 .content-layer article {
        max-width: 380px;
    }
    .carousel-main .slide-2 .content-layer h2 {
        font-size: 22px;
    }
    .carousel-main .slide-2 .content-layer ul {
        max-width: 320px;
        min-width: 320px;
    }
    .carousel-main .slide-2 .content-layer ul li,
    .carousel-main .slide-image .opaque-layer ul li {
        font-size: 18px;
    }
    .carousel-main .slide-2 .content-layer ul li i,
    .carousel-main .slide-image .opaque-layer ul li i {
        font-size: 12px;
    } 
}
@media (max-width: 991px) {
    .carousel-main .item {
        height: calc(100vh - 255px);
        max-height: calc(100vh - 255px);
    }
    .carousel-main .slide-1 .content-layer img {
        width: 65%;
    }
    .carousel-main .slide-1 .content-layer h2 {
        font-size: 22px;
    }
    .carousel-main .slide-2 .content-layer {
        flex-direction: column;
        justify-content: center;
    }
    .carousel-main .slide-2 .content-layer img {
        width: 50%;
    }
    .carousel-main .slide-2 .content-layer h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .carousel-main .slide-2 .content-layer ul {
        max-width: 300px;
        min-width: 300px;
    }
    .carousel-main .slide-2 .content-layer ul li {
        font-size: 17px;
    }
    .carousel-main .slide-2 .content-layer ul li i {
        font-size: 10px;
    }
    .carousel-main .slide-image .opaque-layer p {
        width: 100%;
    }
    .carousel-main.see-more {font-size: 18px;}
    .carousel-main.see-more img {max-width: 22px;}
}
@media (max-width: 767px) {
    .carousel-main .item {
        height: calc(100vh - 170px);
        max-height: calc(100vh - 170px);
    }
    .carousel-main .slide-1 .content-layer img {
        width: 85%;
    }
    .carousel-main .slide-2 .content-layer {
        justify-content: center;
    }
    .carousel-main .slide-2 .content-layer img {
        width: 85%;
        margin-bottom: 10px;
    }
    .carousel-main .slide-image .opaque-layer .container {
        max-width: 70%;
    }
    .carousel-main .slide-image h2 {
        font-size: 30px;
    }
    .carousel-main .slide-image .opaque-layer p {
        line-height: 30px;
        font-size: 17px;
    }
    .carousel-main.see-more {font-size: 16px;}
    .carousel-main.see-more img {max-width: 20px;}
}
@media (max-width: 650px) {
    .carousel-main .item {
        height: calc(100vh - 160px);
        max-height: calc(100vh - 160px);
    }
    .carousel-main .slide-1 .content-layer img {
        width: 80%;
    } 
    .carousel-main .slide-image .opaque-layer .container {
        max-width: 90%;
    }
    .carousel-main .slide-image .opaque-layer p {
        line-height: 26px;
        font-size: 16px;
    }
    .carousel-main .slide-image .container > div {
        justify-content: center;
        align-items: center;
    }
    .carousel-main .slide-image a {
        font-size: 14px;
    }
    .carousel-main .slide-image a span {
        font-size: 15px;
    }
}
@media (max-width: 575px) {
    .carousel-main .slide-image h2 {
        text-align: center;
    }
}
@media (max-width: 400px) {
    .carousel-main .item {
        height: calc(100vh - 150px);
        max-height: calc(100vh - 150px);
    }
    .carousel-main .slide-1 .content-layer img {
        width: 90%;
    }
    .carousel-main .slide-2 .content-layer ul {
        max-width: 280px;
        min-width: 280px;
    }
    .carousel-main .slide-2 .content-layer ul li {
        font-size: 15.5px;
    }
    .carousel-main .slide-image h2 {
        font-size: 24px;
    }
    .carousel-main .slide-image .opaque-layer p {
        font-size: 15px;
    }
    .carousel-main .slide-image .container > div {
        flex-direction: column-reverse;
    }
    .carousel-main .slide-image a {
        width: 250px;
        height: 45px;
    }
    .carousel-main .slide-image a span {
        width: 100%;
    }
    .carousel-main .slide-image a.lg {
        width: 280px;
    }
}
@media (max-width: 330px) {
    .carousel-main .item {
        height: calc(100vh - 140px);
        max-height: calc(100vh - 140px);
    }
}


/*=================================*/
/*           OWL CAROUSEL          */
/*=================================*/
.carousel-main .owl-nav {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
.owl-nav .owl-next, .owl-nav .owl-prev {
    font-size: 50px !important;
    color: var(--white-color) !important;
    background-color: rgba(0, 0, 0, 0.35) !important;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    border-radius: 50%;
}
.owl-nav .owl-next span, .owl-nav .owl-prev span {margin-bottom: 8px;}
.owl-nav .owl-prev span {margin-right: 4px;}
.owl-nav .owl-next span {margin-left: 4px;}

/* VIDEO CONTAINER */
#video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; 
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=========================================*/
/*         SECTION: "OUR SERVICES"         */
/*=========================================*/
#our-services {
    position: relative;
}
#our-services .icon-titles {
    width: 40px;
    height: 40px;
}
#our-services .card-our-services {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--white-color);
    border-radius: 25px;
}
#our-services .card-our-services .cover {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
    width: 100%;
    height: 200px;
    margin-bottom: 50px;
    position: relative;
}
#our-services .card-our-services span {
    background-color: var(--primary-color);
    border: 3px solid var(--white-color);
    border-radius: 50%;
    position: absolute;
    top: 160px;
    left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
}
#our-services .card-our-services span img {
    width: 50px;
    height: 50px;
}
#our-services .card-our-services .card-our-services-title {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
    min-height: 43.5px;
    display: flex;
    align-items: center;
}
#our-services .card-our-services .card-our-services-title.title-lg {
    font-size: 16px;
}
#our-services .card-our-services .card-our-services-content {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    max-height: 205px;
    height: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#our-services .card-our-services a {
    color: var(--primary-color);
    width: fit-content;
    font-size: 15px;
    font-weight: 500;
    -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#our-services .card-our-services a:hover {
    transform: scale(1.05);
}
#our-services .card-our-services a img {
    width: 16px;
}
@media (max-width: 1400px) {
    #our-services .card-our-services .card-our-services-title {
        font-size: 17px;
    }
    #our-services .card-our-services .card-our-services-title.title-lg {
        font-size: 15px;
    }
}
/* CAROUSEL */
#our-services .owl-stage-outer {
    padding-bottom: 10px;
}
#our-services .owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    width: 25px;
    opacity: 1;
}
#our-services .owl-theme .owl-dots .owl-dot:hover span {
    background: #638247;
    transform: scale(1.35);
    opacity: 1;
}
#our-services .owl-theme .owl-dots .owl-dot span {
    background: var(--primary-color);
    -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
    margin: 5px 5px;
    opacity: 0.5;
}

/*=========================================*/
/*  ARTICLE: "TELL US ABOUT YOUR PROYECT"  */
/*=========================================*/

#tell-us-about-your-project {
    box-shadow: 0px 0px 65px 0px rgba(75, 175, 71, 0.20);
    background-color: var(--white-color);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}
#tell-us-about-your-project p {
    color: var(--black-color);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
#tell-us-about-your-project a {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 165px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
#tell-us-about-your-project a:hover {
    background-color: #638247 !important;
    transform: scale(1.05);
}
@media (max-width: 991px) {
    #tell-us-about-your-project {
        max-width: 750px;
    }
}
@media (max-width: 767px) {
    #tell-us-about-your-project {
        max-width: 90%;
    }
}
@media (max-width: 575px) {
    #tell-us-about-your-project {
        bottom: -120px;
    }
    #tell-us-about-your-project p {
        font-size: 17px;
    }
    #tell-us-about-your-project a {
        font-size: 16px;
    }
}
@media (max-width: 530px) {
    #tell-us-about-your-project {
        text-align: center;
    }
    #our-services {
        padding-bottom: 120px;
    } 
    #testimonials {
        padding-top: 120px;
    }
}
@media (max-width: 400px) {
    #tell-us-about-your-project {
        bottom: -120px;
    }
    #tell-us-about-your-project p {
        font-size: 16px;
    }
    #our-services {
        padding-bottom: 140px;
    } 
    #testimonials {
        padding-top: 140px;
    }
}
/*=========================================*/
/*         SECTION: "TESTIMONIALS"         */
/*=========================================*/

#testimonials {
    padding-top: 90px;
    padding-bottom: 90px;
}
.card-testimonials {
    background-color: var(--secondary-color);
    border-radius: 20px;
}
.card-testimonials header {
    display: flex;
    justify-content: space-between;
}
.card-testimonials header h3 {
    color: var(--black-color);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
}
.card-testimonials header h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}
.card-testimonials header img {
    width: 70px !important;
    max-width: 70px !important;
    min-width: 70px !important;
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
}
.card-testimonials p {
    color: var(--soft-gray-color);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 400;
    text-align: justify;
}
/* OWL CAROUSEL */
#testimonials .owl-theme .owl-nav {
    position: absolute;
    top: -115px;
    right: 0;
    display: flex !important;
    gap: 15px;
}
#testimonials .owl-theme .owl-nav .owl-prev,
#testimonials .owl-theme .owl-nav .owl-next {
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
#testimonials .owl-theme .owl-nav .owl-prev:hover,
#testimonials .owl-theme .owl-nav .owl-next:hover {
    background-color: #638247 !important;
    transform: scale(1.1);
}
#testimonials .owl-theme .owl-nav .owl-prev span,
#testimonials .owl-theme .owl-nav .owl-next span {
    margin: 0;
    display: flex;
    align-items: center;
}
#testimonials .owl-theme .owl-nav .owl-prev span i,
#testimonials .owl-theme .owl-nav .owl-next span i {
    font-size: 24px;
}
#testimonials .owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
    width: 25px;
    opacity: 1;
}
#testimonials .owl-theme .owl-dots .owl-dot:hover span {
    background: #638247;
    transform: scale(1.35);
    opacity: 1;
}
#testimonials .owl-theme .owl-dots .owl-dot span {
    background: var(--primary-color);
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    margin: 5px 5px;
    opacity: 0.5;
}
@media (max-width: 991px) {
    #testimonials .owl-theme .owl-nav {
        display: none !important;
    }
}

/*=========================================*/
/*        SECTION: "FULLY COMMITTED"       */
/*=========================================*/

#fully-committed p {
    max-width: 620px;
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
#fully-committed p strong {
    color: var(--black-color);
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    line-height: 30px;
}
#fully-committed img {
    border-radius: 15px;
    max-width: 580px;
    width: 100%;
}

@media (max-width: 1200px) {
    #fully-committed p, #fully-committed p strong {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    #fully-committed p, #fully-committed p strong {
        max-width: 100%;
        font-size: 16px;
    }
    #fully-committed img {
        max-width: 100%;
    }
}

/*=========================================*/
/*            SECTION: "SECTIONS"          */
/*=========================================*/

#sections .card-sections {
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 380px;
    height: 285px;
}
#sections .card-sections:hover {
    transform: scale(1.05);
}
#sections .card-sections .opaque-layer {
    border-radius: 15px;
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    text-align: center;
    font-size: clamp(22px, 2.1vw, 28px);
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    text-transform: uppercase;
    padding: 45px;
}
@media (max-width: 1400px) {
    #sections .card-sections {
        width: 332px;
        height: 249px;
    }
}
@media (max-width: 1200px) {
    #sections .card-sections {
        width: 280px;
        height: 210px;
    }
    #sections .card-sections .opaque-layer {
        padding: 45px;
        line-height: 32px;
    }
}
@media (max-width: 991px) {
    #sections .card-sections {
        width: 332px;
        height: 249px;
    }
    #sections .card-sections .opaque-layer {
        padding: 50px;
    }
}
@media (max-width: 767px) {
    #sections .card-sections {
        width: 244px;
        height: 183px;
    }
    #sections .card-sections .opaque-layer {
        padding: 45px;
    }
}
@media (max-width: 535px) {
    #sections .card-sections {
        width: 100%;
        height: 180px;
    }
    #sections .card-sections:hover {
        transform: scale(1.02);
    }
}
  
/*-----------------------------------------------*/
/*                 VIEW CONTACT US               */
/*-----------------------------------------------*/

/*=========================================*/
/*         CARD CONTACT INFORMATION        */
/*=========================================*/
.card-contact-information {
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px 10px 0px 0px;
    background: var(--white-color);
    border-bottom: 4px solid var(--primary-color);
    padding: 22px 28px;
    margin-bottom: 20px;
    width: 100%;
}
.card-contact-information.social-media {
    padding: 11px 28px;
}
.card-contact-information .card-title {
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}
.card-contact-information .card-title img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-right: 10px;
}
.card-contact-information .card-title h2 {
    color: var(--black-color);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    width: 100%;
    height: 100%;
}
.card-contact-information .card-content dt,
.card-contact-information .card-content dd {
    color: var(--black-color);
    font-size: 16px;
}
.card-contact-information .card-content dt {
    font-weight: 600;
}
.card-contact-information .card-content dd {
    text-align: justify;
    font-weight: 400;
    margin-bottom: 8px;
}
.card-contact-information .card-content dd:last-child {
    margin: 0;
}
.card-contact-information .card-content dd a {
    color: var(--black-color);
}
.card-contact-information .card-content dd a:hover {
    text-decoration: underline;
    color: #222222c7;
}
.card-contact-information .card-content .social-media-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: space-evenly;
    align-items: center;
}
.card-contact-information .card-content .social-media-list li a {
    color: var(--primary-color);
    font-size: 28px;
}
.card-contact-information .card-content .social-media-list li a i {
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}
.card-contact-information .card-content .social-media-list li a i:hover {
    color: #638247;
    transform: scale(1.1);
}
@media (max-width: 1400px) {
    .card-contact-information.location {
        margin-bottom: 12px;
        padding: 22px 34px;
    }
    .card-contact-information.location dl dd {
        line-height: normal;
    }
}
@media (max-width: 991px) {
    .card-contact-information {
        margin-bottom: 30px;
        max-width: 340px;
    }
    .card-contact-information.location {
        margin-bottom: 20px;
    }
}

/*=========================================*/
/*         GOOGLE MAPS & SEND EMAIL        */
/*=========================================*/

.separator-decoration {
    background: url('../images/background/fondo-5-recortado.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    width: 100%;
    height: 180px;
    min-height: 150px;
}
.google-maps iframe {
    display: flex;
    width: 100%;
    height: 730px;
}
.send-email p {
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.send-email label {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.send-email input,
.send-email textarea {
    border: 2px solid rgba(68, 87, 36, 0.55);
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 10px;
    padding: 5px 16px;
    margin-top: 8px;
    font-weight: 500;
}
.send-email textarea {
    resize: vertical;
    min-height: 150px;
}
.send-email button {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    width: 165px;
    height: 45px;
    flex-shrink: 0;
    transition: all ease-in-out 0.3s;
}
.send-email button:hover {
    background-color: #638247;
    transform: scale(1.08);
}
@media (max-width: 991px) {
    #cards-information {
        padding-bottom: 0;
    }
}
@media (max-width: 575px) {
    .send-email p, .send-email label, .send-email input, .send-email textarea {
        font-size: 16px;
    }
    .send-email button {
        font-size: 18px;
    }
}

/*-----------------------------------------------*/
/*                  VIEW ABOUT US                */
/*-----------------------------------------------*/

/*=========================================*/
/*                  HISTORY                */
/*=========================================*/

.section.history img {
    border-radius: 15px;
}
.section.history .content {
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

/*=========================================*/
/*                OUR CLIENTS              */
/*=========================================*/

.section.our-clients p {
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
}
/* CAROUSEL */
#our-clients-carousel .owl-stage {
    display: flex !important;
}
#our-clients-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
}

/*=========================================*/
/*            MISSION AND VISION           */
/*=========================================*/

.section.mission-and-vision .content p {
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
}

/*=========================================*/
/*                 WORK TEAM               */
/*=========================================*/

.card-team {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
    position: relative;
    width: 360px;
    height: 450px;   
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    margin-bottom: 95px;
}
.card-team .information {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--white-color);
    border-radius: 25px;
    width: 330px;
    min-height: 175px;
    padding: 34px 23px;
    position: absolute;
    bottom: -87.5px;
    left: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.card-team .information h3,
.card-team .information h4 {
    text-align: center;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-team .information h3 {
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 18px;
    height: 60px;
}
.card-team .information h4 {
    color: #9E9D98;
    font-size: 16px;
    margin-bottom: 0;
    height: 40px;
}
.card-team .information a {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background-color: var(--tertiary-color);
    border-radius: 25px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    color: #EDEDED;
    font-size: 16px;
    font-weight: 700;
}
/* HOVER */
.card-team:hover {
    transform: scale(1.02);
}
.card-team:hover .information {
    background-color: var(--primary-color);
    bottom: -115.5px;
    border: none;
    padding: 0;
    cursor: pointer;
}
.card-team:hover .information h3,
.card-team:hover .information h4 {
    color: var(--white-color);
    padding-left: 23px;
    padding-right: 23px;
}
.card-team:hover .information h3 {
    margin-top: 34px;
    margin-bottom: 18px;
}
.card-team:hover .information h4 {
    margin-bottom: 18px;
    color: #EDEDED;
}
.card-team:hover .information a {
    display: flex;
}

@media (max-width: 1400px) {
    .card-team {
        width: 320px;
    }
    .card-team .information {
        width: 290px;
    }
}
@media (max-width: 1200px) {
    .card-team {
        width: 280px;
        height: 390px;
    }
    .card-team .information {
        width: 250px;
    }
    .card-team .information h3 {
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .card-team {
        width: 320px;
        height: 420px; 
    }
    .card-team .information {
        width: 290px;
    }
    .card-team .information h3 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .card-team {
        width: 240px;
        height: 360px;
        margin-bottom: 115px;
    }
    .card-team .information {
        width: 210px;
    }
    .card-team .information h3 {
        font-size: 18px;
    }
    .card-team .information h4 {
        font-size: 15px;
    }
}
@media (max-width: 576px) {
    .card-team {
        width: 320px;
        height: 420px;
        margin-bottom: 125px;
    }
    .card-team .information {
        width: 290px;
    }
    .card-team .information h3 {
        font-size: 22px;
    }
    .card-team .information h4 {
        font-size: 18px;
    }
}
@media (max-width: 350px) {
    .card-team {
        width: 280px;
        height: 390px;
    }
    .card-team .information {
        width: 250px;
    }
    .card-team .information h3 {
        font-size: 20px;
    }
    .card-team .information h4 {
        font-size: 16px;
    }
}

/*=========================================*/
/*                 GALLERY                 */
/*=========================================*/

.about-us-gallery .gallery {
    padding: 10px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
}
.about-us-gallery .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}
.about-us-gallery .gallery img:hover {
    transform: scale(1.02);
}
.about-us-gallery .big-stretch {
    grid-row: span 2;
    grid-column: span 2;
}
.about-us-gallery .h-stretch {
    grid-column: span 2;
}
.about-us-gallery .v-stretch {
    grid-row: span 2;
}
@media(max-width: 560px) {
    .about-us-gallery .big-stretch {
        grid-row: span 1;
        grid-column: span 1;
    }
    .about-us-gallery .v-stretch {
         grid-row: span 1;
    }
    .about-us-gallery .h-stretch {
        grid-column: span 1;
    }
}

/*-----------------------------------------------*/
/*               VIEW TEAM DETAILS               */
/*-----------------------------------------------*/

/*=========================================*/
/*                BIOGRAPHY                */
/*=========================================*/

#biography .profile-pic {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); 
    border-radius: 25px;
    object-fit: cover;
    height: 100%;
}
#biography .content {
    color: var(--black-color);
    text-align: justify;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
#biography .contact-list {
    gap: 8px;
}
#biography .contact-list li {
    transition: all ease-in-out 0.3s;
}
#biography .contact-list li:hover {
    transform: scale(1.05);
}
#biography .contact-list a {
    background-color: var(--green-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
#biography .contact-list a:hover {
    background-color: #72874e;
}
@media(max-width: 1400px) {
    #biography .content {
        font-size: 17px;
    }
}
@media(max-width: 1200px) {
    #biography .content {
        font-size: 16px;
    }
}

/*=========================================*/
/*           PROFESSIONAL RESUME           */
/*=========================================*/

/* TIMELINE */
.timeline .timeline-title {
    display: flex;
    align-items: center;
    margin-bottom: 48px;
}
.timeline .timeline-title img {
    margin-right: 15px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}
.timeline .timeline-title h2 {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
/* TIMELINE ITEM */
.timeline-item {
    position: relative;
    display: flex;
    padding-bottom: 50px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--soft-green-color);
}
.timeline-item:last-child::before {
    width: 0px;
}
.timeline-icon {
    background-color: var(--white-color);
    border: 3px solid var(--green-color);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}
.timeline-icon::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 15px;
    height: 3px;
    background: #657844;
    transform: translateY(-50%);
}
.timeline-content {
    box-shadow: 0px 0px 15px 0px rgba(101, 120, 68, 0.25);
    border-left: 2px solid var(--green-color);
    background-color: var(--white-color);
    border-radius: 0px 5px 5px 0px;
    padding: 20px;
    margin-top: -20px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.timeline-content:hover {
    transform: scale(1.01);
}
.timeline-content .content-title {
    color: var(--black-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.timeline-content .content-subtitle {
    display: flex;
    margin-bottom: 8px;
}
.timeline-content .content-subtitle .date {
    color: var(--green-color);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.timeline-content .content-subtitle .vertical-separator {
    background-color: #21252980;
    margin: 0 6px;
    height: auto;
}
.timeline-content .content-subtitle .place {
    color: var(--black-color);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    margin: 0;
}
.timeline-content .content-text {
    color: var(--black-color);
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* ACADEMIC CREDENTIALS & PUBLICATIONS AND ARTICLES */
.academic-credentials-title, 
.publications-and-articles-title {
    margin-bottom: 16px;
}
.academic-credentials-title img, 
.publications-and-articles-title img {
    margin-right: 15px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}
.academic-credentials-title h2, 
.publications-and-articles-title h2 {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.academic-credentials,
.publications-and-articles {
    box-shadow: 0px 0px 15px 0px rgba(101, 120, 68, 0.25);
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 24px 24px;
}

/* ACADEMIC CREDENTIALS */
.academic-credentials .item {
    display: flex;
    margin-bottom: 16px;
}
.academic-credentials .item:last-child {
    margin-bottom: 0;
}
.academic-credentials .item .date {
    color: var(--green-color);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    width: 72px;
    flex-shrink: 0;
    margin-right: 20px;
}
.academic-credentials .item .content {
    display: flex;
    flex-direction: column;
}
.academic-credentials .item .content .name {
    color: var(--black-color);
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.academic-credentials .item .content .text {
    color: var(--black-color);
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* PUBLICATIONS AND CARTICLES */
.publications-and-articles ul {
    list-style: none;
    margin-bottom: 0;
}
.publications-and-articles ul li {
    position: relative;
}
.publications-and-articles ul li::before {
    content: "\f111";
    font-family: FontAwesome;
    color: var(--green-color);
    display: inline-block;
    margin-left: -25px;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 5px;
    left: 0px;
    font-size: 10px;
}
.publications-and-articles ul li p {
    color: var(--black-color);
    text-align: justify;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.5px;
    margin-bottom: 16px;
}
.publications-and-articles ul li:last-child p {
    margin-bottom: 0;
}

/*-----------------------------------------------*/
/*                 VIEW SERVICES                 */
/*-----------------------------------------------*/

/*=========================================*/
/*             SERVICES CAROUSEL           */
/*=========================================*/

#services-carousel .slide-image {
    min-height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#services-carousel .opaque-layer {
    display: flex;
    justify-content: center;
    align-items: center;
}
#services-carousel .opaque-layer h2 {
    color: var(--white-color);
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    padding: 0 15%;
    margin: 0;
}
#services-carousel .owl-nav {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
#services-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2%;
}
#services-carousel .owl-dots .owl-dot {
    background-color: #FFFFFFA6;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    margin: 5px 5px;
}
#services-carousel .owl-dots .owl-dot.active {
    background-color: var(--white-color);
    width: 15px;
    height: 15px;
}
#services-carousel .owl-dots .owl-dot:hover  {
    background-color: var(--white-color);
    transform: scale(1.3);
}
@media (max-width: 991px) {
    #services-carousel .slide-image {
        min-height: 500px;
    }
    #services-carousel .opaque-layer h2 {
        padding: 0 100px;
    }
}
@media (max-width: 651px) {
    #services-carousel .slide-image {
        min-height: 400px;
    }
    #services-carousel .opaque-layer h2 {
        font-size: 28px;
        padding: 30px;
    }
    #services-carousel .owl-nav {
        display: none;
    }
    #services-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px 4px;
    }
    #services-carousel .owl-dots .owl-dot.active {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 390px) {
    #services-carousel .opaque-layer h2 {
        font-size: 24px;
    }
    #services-carousel .owl-dots .owl-dot {
        margin: 5px 3px;
    }
}

/* SECTION SERVICES CAROUSEL - CONTENT */
.section-services-carousel .content h3 {
    color: var(--primary-color);
    font-size: clamp(18px, 3.5vw, 20px);
    font-weight: 600;
}
.section-services-carousel .content p {
    color: var(--black-color);
    text-align: justify;
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 400;
    line-height: 24px;
}

/*=========================================*/
/*           ACCORDION OUR SERVICES        */
/*=========================================*/

.section-our-services .content {
    display: flex;
}

/* ACCORDION */
#accordion-services .accordion-item {
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
}
#accordion-services .accordion-item:last-child {
    margin-bottom: 0;
}
#accordion-services .accordion-item button {
    box-shadow: none !important;
    display: block;
    text-align: center;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    padding-right: 55px;
}
#accordion-services .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
}
#accordion-services .accordion-item .accordion-button.collapsed {
    border-radius: 15px !important;
}
#accordion-services .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 15px 15px 0px 0px !important; 
}
#accordion-services .accordion-button.collapsed::after,
#accordion-services .accordion-button:not(.collapsed)::after {
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    background-image: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    position: absolute;
    transform: translateY(-50%);
    right: 15px;
    top: 50%;
}
#accordion-services .accordion-button.collapsed::after {
    content: "\f067";
    background-color: var(--primary-color);
    color: var(--white-color);
}
#accordion-services .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background-color: var(--white-color);
    color: var(--primary-color);
}
#accordion-services .accordion-item a {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    justify-content: end;
    align-items: baseline;
}
#accordion-services .accordion-item p {
    color: var(--black-color);
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 14px;
}
#accordion-services .accordion-item a img {
    transform: scale(1.1);
    flex-shrink: 0;
}

/* IMAGE */
.section-our-services .content  div > img {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    object-fit: cover;
    height: 100%;
}
@media (max-width: 991px) {
    .section-our-services .content  div > img {
        height: auto;
    }
}

/* HELP WITH YOUR PROJECT */
.help-with-your-project {
    box-shadow: 0px 0px 65px 0px rgba(75, 175, 71, 0.20);
    background-color: var(--white-color);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    padding: 25px;
}
.help-with-your-project .subtitle {
    font-size: 18px;
}
.help-with-your-project p {
    color: var(--black-color);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}
.help-with-your-project a {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 165px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.help-with-your-project a:hover {
    background-color: #638247 !important;
    transform: scale(1.05);
}
@media (max-width: 991px) {
    .help-with-your-project {
        max-width: 750px;
    }
}
@media (max-width: 767px) {
    .help-with-your-project {
        max-width: 90%;
    }
}
@media (max-width: 575px) {
    .help-with-your-project p {
        font-size: 17px;
    }
    .help-with-your-project a {
        font-size: 16px;
    }
}
@media (max-width: 530px) {
    .help-with-your-project {
        max-width: 100%;
    }
    .help-with-your-project {
        text-align: center;
    }
}
@media (max-width: 400px) {
    .help-with-your-project p {
        font-size: 16px;
    }
}

/*-----------------------------------------------*/
/*              VIEW SERVICES DETAILS            */
/*-----------------------------------------------*/

/*=========================================*/
/*    SERVICES DETAILS ARTICLE CAROUSEL    */
/*=========================================*/

#services-details-carousel .slide-image {
    min-height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#services-details-carousel .owl-nav {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
#services-details-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2%;
}
#services-details-carousel .owl-dots .owl-dot {
    background-color: #FFFFFFA6;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    margin: 5px 5px;
}
#services-details-carousel .owl-dots .owl-dot.active {
    background-color: var(--white-color);
    width: 15px;
    height: 15px;
}
#services-details-carousel .owl-dots .owl-dot:hover  {
    background-color: var(--white-color);
    transform: scale(1.3);
}
@media (max-width: 991px) {
    #services-details-carousel .slide-image {
        min-height: 400px;
    }
}
@media (max-width: 651px) {
    #services-details-carousel .slide-image {
        min-height: 350px;
    }
    #services-details-carousel .owl-nav {
        display: none;
    }
    #services-details-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px 4px;
    }
    #services-details-carousel .owl-dots .owl-dot.active {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 390px) {
    #services-details-carousel .slide-image {
        min-height: 300px;
    }
    #services-details-carousel .owl-dots .owl-dot {
        margin: 5px 3px;
    }
}

/*=========================================*/
/*     SERVICES DETAILS ARTICLE CONTENT    */
/*=========================================*/

.services-details-article .title {
    font-size: 28px;
    text-transform: none;
}
.services-details-article p {
    color: var(--black-color);
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
}

/*=========================================*/
/*          SERVICES DETAILS ASIDE         */
/*=========================================*/

/* CATEGORIES */
.services-details-aside .title {
    font-size: 24px;
    text-transform: none;
}
.services-details-aside .categories {
    display: flex;
    flex-direction: column;
}
.services-details-aside .categories a {
    background-color: #638247;
    color: var(--white-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 12px 18px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.services-details-aside .categories a:hover {
    background-color: var(--primary-color);
    transform: scale(1.02);
}
.services-details-aside .categories a.current {
    background-color: var(--primary-color);
}
.services-details-aside .categories a span {
    display: flex;
    width: 100%;
}
.services-details-aside .categories a i {
    font-size: 26px;
    flex-shrink: 0;
    margin-right: 15px;
}
@media (max-width: 991px) {
    .services-details-aside .categories a span {
        text-align: center;
        justify-content: center;
    }
}

/* CONTACT US NOW */
.contact-us-now {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    border-radius: 5px;
}
.contact-us-now img {
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}
.contact-us-now .opaque-layer {
    background-color: #000000A6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    top: 0;
    left: 0;
    padding: 20px;
}
.contact-us-now .opaque-layer:hover {
    background-color: #181818a6;
}
.contact-us-now .opaque-layer h3 {
    color: var(--white-color);
    text-align: center;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 16px;
}
.contact-us-now .opaque-layer span {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: #3636C2;
    border-radius: 10px;
    color: var(--white-color);
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    padding: 5px 16px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.contact-us-now .opaque-layer span:hover {
    transform: scale(1.03);
}
@media (max-width: 991px) {
    .contact-us-now img {
        height: 300px;
    }
}

/*-----------------------------------------------*/
/*                  VIEW PROJECTS                */
/*-----------------------------------------------*/

/*=========================================*/
/*            PROJECTS CAROUSEL            */
/*=========================================*/

#projects-carousel .slide-image {
    min-height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#projects-carousel .opaque-layer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 100px 40px;
}
#projects-carousel .opaque-layer img {
    height: 170px;
    max-height: 170px;
    width: auto;
    margin-bottom: 35px;
}
#projects-carousel .opaque-layer h2 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    text-align: center;
    font-size: clamp(19px, 3.5vw, 28px);
    font-weight: 700;
    margin-bottom: 35px;
}
#projects-carousel .opaque-layer h3 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    color: var(--white-color);
    text-align: center;
    font-size: clamp(19px, 3.5vw, 28px);
    font-style: italic;
    font-weight: 500;
    margin-bottom: 35px;
}
#projects-carousel .opaque-layer a {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); 
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 12px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
#projects-carousel .opaque-layer a:hover {
    transform: scale(1.03);
}
#projects-carousel .owl-nav {
    position: absolute;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}
#projects-carousel .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2%;
}
#projects-carousel .owl-dots .owl-dot {
    background-color: #FFFFFFA6;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    margin: 5px 5px;
}
#projects-carousel .owl-dots .owl-dot.active {
    background-color: var(--white-color);
    width: 15px;
    height: 15px;
}
#projects-carousel .owl-dots .owl-dot:hover  {
    background-color: var(--white-color);
    transform: scale(1.3);
}
@media (max-width: 991px) {
    #projects-carousel .slide-image {
        min-height: 600px;
    }
}
@media (max-width: 651px) {
    #projects-carousel .opaque-layer {
        padding: 0 50px 40px;
    }
    #projects-carousel .opaque-layer img {
        height: 140px;
        max-height: 140px;
    }
    #projects-carousel .opaque-layer img,
    #projects-carousel .opaque-layer h2,
    #projects-carousel .opaque-layer h3 {
        margin-bottom: 20px;
    }
    #projects-carousel .slide-image {
        min-height: 500px;
    }
    #projects-carousel .owl-nav {
        display: none;
    }
    #projects-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px 4px;
    }
    #projects-carousel .owl-dots .owl-dot.active {
        width: 13px;
        height: 13px;
    }
}
@media (max-width: 390px) {
    #projects-carousel .opaque-layer {
        padding: 0 20px 40px;
    }
    #projects-carousel .opaque-layer img {
        height: 120px;
        max-height: 120px;
    }
    #projects-carousel .opaque-layer img,
    #projects-carousel .opaque-layer h2,
    #projects-carousel .opaque-layer h3 {
        margin-bottom: 15px;
    }
    #projects-carousel .owl-dots .owl-dot {
        margin: 5px 3px;
    }
}

/*=========================================*/
/*            PROJECTS BY SECTOR           */
/*=========================================*/

.projects-by-sector {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}
.card-sector {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    width: 350px;
    max-width: 350px;
}
.card-sector .cover {
    border-radius: 5px 5px 0px 0px; 
    object-fit: cover;
    width: 350px;
    height: 350px;
    flex-shrink: 0;
}
.card-sector .content {
    background-color: var(--white-color);
    position: relative;
    padding: 40px 15px 22px;
    border-radius: 0px 0px 5px 5px; 
}
.card-sector .content .icon {
    background-color: var(--primary-color);
    border-radius: 5px;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -80px;
    left: 15px;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}
.card-sector .content .icon:hover {
    transform: scale(1.05);
}
.card-sector .content .icon img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}
.card-sector .content .title {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-transform: none;
    margin-bottom: 18px;
}
.card-sector .content .text {
    color: var(--black-color);
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
    min-height: 120px;
}
.card-sector .content a.link {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 10px 16px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.card-sector .content a.link:hover {
    background-color: var(--green-color);
}
@media (max-width: 1400px) {
    .card-sector {
        width: 325px;
        max-width: 325px;
    }
    .card-sector .cover {
        width: 325px;
        height: 325px;
    }
    .card-sector .content .text {
        min-height: 145px;
        margin-bottom: 18px;
    }
}
@media (max-width: 1200px) {
    .card-sector {
        width: 295px;
        max-width: 295px;
        margin-bottom: 10px;
    }
    .card-sector .cover {
        width: 295px;
        height: 295px;
    }
    .card-sector .content .title {
        font-size: 18px;
    }
    .card-sector .content .text {
        min-height: 145px;
    }
}
@media (max-width: 991px) {
    .card-sector {
        width: 295px;
        max-width: 295px;
        margin-bottom: 10px;
    }
    .card-sector .cover {
        width: 295px;
        height: 295px;
    }
    .card-sector .content .text {
        min-height: 145px;
    }
}
@media (max-width: 767px) {
    .card-sector {
        width: 100%;
        max-width: 90%;
        margin-bottom: 10px;
    }
    .card-sector .cover {
        width: 100%;
        height: 250px;
    }
    .card-sector .content .text {
        min-height: auto;
    }
    .card-sector .content a.link {
        font-size: 17px;
    }
}
@media (max-width: 615px) {
    .card-sector .content .title {
        font-size: 17px;
    }
    .card-sector .content .text {
        font-size: 15px;
    } 
}
@media (max-width: 500px) {
    .card-sector {
        width: 350px;
        max-width: 350px;
        margin-bottom: 10px;
    }
    .card-sector .cover {
        width: 350px;
        height: 300px;
    }
    .card-sector .content .text {
        min-height: auto;
        margin-bottom: 18px;
    }
}

/*-----------------------------------------------*/
/*            VIEW PROJECTS CATEGORY             */
/*             VIEW PROJECTS DETAILS             */
/*-----------------------------------------------*/

/*=========================================*/
/*               CARDS PROJECT             */
/*=========================================*/

.card-project {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}
.card-project .cover {
    border-radius: 15px 15px 0px 0px; 
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.card-project .post-information {
    border-bottom: 1px solid var(--primary-color);
    background-color: var(--white-color);
    display: flex;
    padding: 10px 22px;
    flex-wrap: wrap;
}
.card-project .post-information .author,
.card-project .post-information .date,
.card-project .post-information .category {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}
.card-project .post-information .category {
    position: relative;
    text-decoration: none;
}
.card-project .post-information .category:hover {
    color: #638247;
}
.card-project .post-information .category::after {
    background-color: #638247;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s;
}
.card-project .post-information .category:hover::after {
    width: 100%;
}
.card-project .content {
    background-color: var(--white-color);
    border-radius: 0px 0px 15px 15px; 
    display: flex;
    flex-direction: column;
    padding: 22px 25px;
}
.card-project .content .title {
    text-transform: none;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 18px;
}
.card-project .content .description {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 18px;
}
.card-project .content .link {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    width: 150px;
    height: 50px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.card-project .content .link:hover {
    transform: scale(1.03);
}
@media (max-width: 767px) {
    .card-project .cover {
        height: 325px;
    }
}
@media (max-width: 500px) {
    .card-project .cover {
        height: 280px;
    }
    .card-project .content .link {
        width: 140px;
        height: 40px;
    }
}

/* PROJECT DETAILS */
.projects-details .card-project .content {
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}
.projects-details .card-project .post-information-padding {
    border-top: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    background-color: var(--white-color);
    padding: 0 22px;
}
.projects-details .card-project .post-information-padding .post-information {
    padding: 10px 0;
}
.projects-details .card-project .content > .subtitle {
    text-transform: none;
    color: #98A4B4;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 32px;
}

/* PROJECT DETAILS - GALLERY */
.projects-details .gallery {
    margin-bottom: 40px;
}
.projects-details .gallery .subtitle {
    text-transform: none;
    font-size: 17px;
}
.projects-details .gallery-project {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
}
.projects-details .gallery-project .lg-sub-html {
    background-color: rgba(0, 0, 0, 0.35);
}

/* PROJECT DETAILS - FOOTER NAVIGATION */
.projects-details .project-navigation {
    border-top: 1px solid var(--primary-color);
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    box-shadow: none;
}
.projects-details .project-navigation .link-container {
    display: flex;
    width: 45%;
}
.projects-details .project-navigation .link-container .link-previous,
.projects-details .project-navigation .link-container .link-next {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.projects-details .project-navigation .link-container .link-previous:hover,
.projects-details .project-navigation .link-container .link-next:hover {
    color: #ffffffc7;
}
.projects-details .project-navigation .link-container .link-previous {
    align-items: start;
    text-align: left;
}
.projects-details .project-navigation .link-container .link-next {
    align-items: end;
    text-align: right;
}
.projects-details .project-navigation .link-container span {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.projects-details .project-navigation .link-container a:hover span {
    color: #638247;
}
.projects-details .project-navigation .link-container .project-preview  {
    color: var(--black-color);
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    height: 100%;
    line-height: 20px;
    gap: 10px;
}
.projects-details .project-navigation .link-container a:hover .project-preview {
    color: #2d2d2dc7;
}
.projects-details .project-navigation .link-container .project-preview img {
    display: flex;
    border-radius: 10px;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
@media (max-width: 575px) {
    .projects-details .project-navigation {
        flex-direction: column;
    }
    .projects-details .project-navigation .link-container {
        width: 100%;
    }
    .projects-details .project-navigation .link-container .link-previous {
        margin-bottom: 8px;
    }
}

/*=========================================*/
/*                 PAGINATION              */
/*=========================================*/

.pagination {
    display: flex;
}
.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 9px;
}
.pagination ul li a {
    background-color: #44572480;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    font-weight: 500;
    border-radius: 50%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.pagination ul li a.current {
    background-color: var(--primary-color);
}
.pagination ul li a:not(.current):hover {
    background-color: var(--primary-color);
    transform: scale(1.03);
}

/*=========================================*/
/*               ASIDE LATERAL             */
/*=========================================*/

.projects-category .lateral .categories,
.projects-category .lateral .recent-projects {
    border-radius: 15px;
}
.projects-category .lateral .categories header,
.projects-category .lateral .recent-projects header {
    background-color: var(--primary-color);
    border-radius: 15px 15px 0px 0px; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    padding: 0 10%;
}
.projects-category .lateral .categories header h3,
.projects-category .lateral .recent-projects header h3 {
    border-left: 2px solid var(--white-color);
    border-right: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin: 0;
}
.projects-category .lateral .categories ul,
.projects-category .lateral .recent-projects .content {
    background-color: var(--white-color);
    border-radius: 0px 0px 15px 15px; 
    padding: 21px;
}
.projects-category .lateral .categories ul li {
    margin-bottom: 5px;
}
.projects-category .lateral .categories ul li:last-child {
    margin-bottom: 0;
}
.projects-category .lateral .categories ul li a {
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.projects-category .lateral .categories ul li a:hover {
    color: #638247;
    transform: scale(1.02);
}
.projects-category .lateral .categories ul li a.current {
    font-weight: 600;
}
.projects-category .lateral .categories ul li a .count {
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
}
.projects-category .lateral .recent-projects .content a {
    color: var(--primary-color);
    display: flex;
    justify-items: start;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.projects-category .lateral .recent-projects .content a:hover {
    color: #638247;
    transform: scale(1.02);
}
.projects-category .lateral .recent-projects .content a:last-child {
    margin-bottom: 0;
}
.projects-category .lateral .recent-projects .content img {
    border-radius: 10px;
    margin-right: 10px;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/*-----------------------------------------------*/
/*          SECTION UNDER CONSTRUCTION           */
/*-----------------------------------------------*/

.under-construction div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.under-construction img {
    width: 100%;
    max-width: 450px;
    height: auto;
}
.under-construction h2,
.under-construction h3 {
    color: #289b7e;
    text-align: center;
}
.under-construction h2 {
    font-size: clamp(36px, 3.5vw, 44px);
    font-weight: 700;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.under-construction h3 {
    font-size: clamp(22px, 2.3vw, 28px);
    font-style: italic;
    font-weight: 600;
    padding: 0 10%;
}
