/*********************
START: HERO
*********************/
.hero {
    min-height: 100vh;
    padding-block: 10rem 7.5rem;
    background-color: var(--primary-color);
}

.hero--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero--text {
    width: 40%;
}

.hero--text h1 {
    position: relative;
    padding-block-end: 1.5rem;
    margin-block-end: 1.5rem;
}

.hero--text h1::before {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(0, 166, 147, 0.1) 0%, rgba(0, 166, 147, 1) 5%, rgba(0, 166, 147, 0.1) 100%);
}

.hero--text span {
    font-weight: 500;
    color: var(--green-color-2);
    line-height: var(--line-height130);
    font-family: var(--font-family-Morabba);
}

.hero--text p {
    font-weight: 500;
    margin-block-end: 2rem;
    color: var(--baseLight-color);
}

.hero--img {
    width: 55%;
    position: relative;
}

.hero--img picture img {
    display: block;
}

.hero--img img {
    width: calc(100% - 60px);
    margin-inline-start: auto;
    border-radius: var(--border-radius-20);
}

.hero--img>div {
    position: absolute;
    top: -60px;
    right: 0;
    max-width: 480px;
	backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero--img>div p {
    padding: 2rem;
    font-size: 32px;
    font-weight: 600;
    text-align: justify;
    color: var(--primary-color);
    line-height: var(--line-height150);
    border-radius: var(--border-radius-20);
    background-color: rgba(207, 255, 250, 0.7);
}

/*********************
END: HERO
*********************/

/*********************
START: CONNECT
*********************/
.connect--content {
    display: flex;
    padding: 3.75rem;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border-radius: var(--border-radius-20);
    background: linear-gradient(to right, rgba(252, 252, 252, 0.8) 0%, rgba(252, 252, 252, 1) 50%, rgba(252, 252, 252, 0.8) 100%);
}

.connect--content::before,
.connect--content::after {
    top: 1px;
    width: 49%;
    content: "";
    z-index: -1;
    height: 99%;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-20);
}

.connect--content::before {
    left: 1px;
    background-image: url("../img/bg-connect-vector-glass-1.png");
}

.connect--content::after {
    right: 1px;
    background-image: url("../img/bg-connect-vector-glass-2.png");
}

.connect--btns {
    display: flex;
    row-gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1.25rem;
    justify-content: center;
    margin-block-start: 2.5rem
}

.connect--btns a {
    display: flex;
    column-gap: 2rem;
    align-items: center;
    padding: 1rem 2.5rem;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-20);
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    background: linear-gradient(-45deg, rgba(238, 255, 253, 0.7) 0%, rgba(170, 229, 223, 0.7) 100%);
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 12px 6px 20px rgba(170, 229, 223, 0.25), -8px -4px 15px rgba(255, 255, 255, 0.3); */
}

.connect--btns a>div {
    width: 64px;
    height: 64px;
    position: relative;
    border-radius: 50%;
}

.connect--btns a>div::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
}

.connect--btns a>div img {
    width: 100%;
}

.connect--btns a span {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: var(--line-height150);
}

/*********************
END: CONNECT
*********************/


/*********************
START: ABOUT US
*********************/
.aboutUs--content {
    display: flex;
    justify-content: space-between;
}

/* aboutUs--right */
.aboutUs--right {
    width: 55%;
}

.aboutUs--mission {
    display: flex;
    column-gap: 1.25rem;
}

.aboutUs--mission>div {
    width: 63%;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-20);
    border: 1px solid var(--baseLight-color);
    background: linear-gradient(240deg, rgba(235, 255, 253, 0.8) 0%, rgba(170, 229, 223, 0.8) 100%);
}

.aboutUs--mission>div::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -2;
    position: absolute;
    background-color: transparent;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top-right-radius: var(--border-radius-20);
}

.aboutUs--mission>div::before {
    top: -40px;
    right: -40px;
    content: "";
    width: 140px;
    height: 130px;
    z-index: -3;
    position: absolute;
    border-radius: 25px;
    filter: blur(40px);
    background-color: rgba(0, 166, 147, 0.5);
}

.aboutUs--mission>div img {
    width: 60px;
    height: 60px;
}

.aboutUs--mission>div h3 {
    font-weight: 600;
    margin-block: 1rem 1.125rem;
    line-height: var(--line-height130);
}

.aboutUs--mission>div p {
    font-size: var(--text-lg);
    font-weight: 400;
    text-align: justify;
    line-height: var(--line-height150);
}

.aboutUs--mission picture {
    width: 35%;
}

.aboutUs--mission picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-20);
}

.aboutUs--right>p {
    text-align: justify;
    margin-block: 2.5rem 2rem;
}

.aboutUs--right ul {
    display: flex;
    row-gap: 1rem;
    flex-wrap: wrap;
    column-gap: 1rem;
}

.aboutUs--right ul li {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 2.25rem 0.5rem 1.25rem;
    color: var(--text-color-2);
    line-height: var(--line-height140);
    border-radius: var(--border-radius-100);
    background: linear-gradient(-45deg, rgba(221, 221, 221, 1) 0%, rgba(242, 242, 242, 1) 100%);
}

.aboutUs--right ul li::before {
    top: 50%;
    right: 20px;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color-2);
}

.aboutUs--left {
    width: 43%;
}

.aboutUs--left p.text--middle {
    text-align: justify;
    margin-block: 1.25rem 2rem;
}

.aboutUs--left picture {
    display: block;
    margin-block-start: 3.75rem;
}

.aboutUs--left picture img {
    width: 100%;
    border-radius: var(--border-radius-20);
}

/*********************
END: ABOUT US
*********************/


/*********************
START: SERVICES
*********************/
.services {
    padding-block: 5rem;
    background-color: var(--bg-color);
}

.services--title {
    display: flex;
    row-gap: 1.5rem;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    align-items: flex-end;
    margin-block-end: 2.5rem;
    justify-content: space-between;
}

.services--title h3 {
    margin-block-end: 0;
}

/* services--box */
.services--box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* services--aside */
.services--aside {
    width: 30%;
    top: 10px;
    position: sticky;
    align-self: flex-start;
    padding-block-end: 5rem;
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    border-radius: var(--border-radius-20);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
    background: linear-gradient(-45deg, rgba(238, 258, 253, 0.4) 0%, rgba(170, 229, 223, 0.4) 100%);
}

.services--aside .services--btns {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services--aside .services--btns .tab--btn {
    width: 50%;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-color-2);
}

.services--aside .services--btns .tab--btn.active {
    font-weight: 600;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--border-radius-100);
    background-color: var(--baseLight-color);
    border: 1px solid rgba(170, 229, 223, 0.4);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.20);
}

.services--aside .services--btns__submenu {
    transition: all 0.3s;
}

.services--aside .services--btns__submenu ul {
    display: none;
    flex-direction: column;
}

.services--aside .services--btns__submenu ul.is-visible {
    display: flex;
}

.services--aside .services--btns__submenu ul li {
    cursor: pointer;
    color: #475957;
    padding: 0.5rem 2rem;
    animation: fading 2s;
    line-height: var(--line-height140);
}

.services--aside .services--btns__submenu ul li.show {
    font-weight: 600;
    color: var(--text-color-2);
    background-color: rgba(170, 227, 220, 0.5)
}

/* services--content */
.services--content {
    width: 68%;
}

.services--content .tab--content {
    animation: fading 0.5s;
}

.services--content .tab--content ul {
    display: none;
    row-gap: 2.5rem;
    flex-direction: column;
}

.services--content .tab--content.is-visible ul {
    display: flex;
}

.services--content ul li {
    display: flex;
    animation: fading 0.5s;
    justify-content: space-between;
    border-radius: var(--border-radius-20);
}

.services--content ul li.show {
    background-color: var(--baseLight-color);
}

.services--content ul li picture img {
    width: 100%;
    max-width: 372px;
    height: auto;
    object-fit: cover;
    filter: grayscale(1);
    aspect-ratio: 370 / 330;
    transition: all 0.5s;
    border-radius: var(--border-radius-15);
}

.services--content ul li.show picture img {
    filter: grayscale(0);
}

.services--content ul li>div {
    display: flex;
    row-gap: 1rem;
    flex-direction: column;
    width: calc(100% - 400px);
}

.services--content ul li.show>div {
    animation: fading 0.5s;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.services--content ul li>div span {
    color: #6ABBA9;
    font-weight: 500;
    line-height: var(--line-height140);
}

.services--content ul li>div h4 {
    font-weight: 600;
    color: var(--text-color-2);
    line-height: var(--line-height140);
}

.services--content ul li>div p {
    font-weight: 400;
    text-align: justify;
    color: var(--text-color-2);
    line-height: var(--line-height150);
}

.services--btns .dropdown {
    width: 14px;
    display: none;
    cursor: pointer;
}

@keyframes fading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*********************
END: SERVICES
*********************/

/*********************
START: PORTFOLIO
*********************/
.portfolio--title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio ul {
    display: flex;
    row-gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.portfolio ul>li {
    width: 49%;
    border-radius: 30px;
    padding: 1.25rem 1.25rem 2rem 1.25rem;
    border: 1px solid var(--border-color);
}

.portfolio ul>li picture img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.portfolio ul>li h4 {
    font-weight: 600;
    margin-block: 1.5rem 1rem;
    color: var(--text-color-1);
    line-height: var(--line-height120);
}

.portfolio ul>li p {
    font-weight: 400;
    text-align: justify;
    margin-block-end: 1rem;
    line-height: var(--line-height150);
}

.portfolio ul>li ol {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    column-gap: 0.75rem;
    margin-block-end: 1.5rem;
}

.portfolio ul>li ol li {
    position: relative;
    padding: 0.75rem 2.5rem 0.75rem 1.5rem;
    line-height: var(--line-height140);
    border-radius: var(--border-radius-100);
    background: linear-gradient(-45deg, rgba(238, 255, 253, 1) 0%, rgba(170, 229, 223, 1) 100%);
}

.portfolio ul>li ol li::before {
    top: 50%;
    right: 20px;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--secondary-color-2);
}


.portfolio a.btn--darkGreen__fill {
    margin-inline: auto;
    margin-block-start: 3.75rem;
}

/*********************
END: PORTFOLIO
*********************/


/*********************
START: EQUIPMENT
*********************/

.equipment .swiper {
    width: 100%;
    height: 100%;
    margin-block-start: 2.5rem;
}

.equipment .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    justify-content: space-between;
}

.equipment .swiper-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2.5rem 3.25rem;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-15);
    background-color: rgba(247, 247, 247, 0.3);
}

.equipment .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 300 / 260;
    border-radius: var(--border-radius15);
}

.equipment .swiper-slide h4 {
    font-weight: 700;
    margin-block: 2.5rem 1rem;
}

.equipment .swiper-slide p {
    font-weight: 400;
    line-height: var(--line-height140);
}


/*********************
END: EQUIPMENT
*********************/

/*********************
START: WHY
*********************/
.why--title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.why ul {
    display: flex;
    flex-wrap: wrap;
    margin-block-start: 4.375rem;
    justify-content: space-between;
}

.why ul li {
    display: flex;
    min-height: 350px;
    position: relative;
    align-items: center;
    flex-direction: column;
    padding: 2rem 3.125rem;
    justify-content: center;
    border-radius: var(--border-radius-20);
}

.why ul li::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -2;
    position: absolute;
    background-color: transparent;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-top-right-radius: var(--border-radius-20);
}

.why ul li::before {
    content: "";
    width: 100px;
    height: 100px;
    z-index: -3;
    position: absolute;
    filter: blur(20px);
    border-radius: var(--border-radius-20);
    background: linear-gradient(45deg, rgba(0, 166, 147, 0.2) 0%);
}

.why ul li:is(:nth-child(1), :nth-child(2), :nth-child(3)) {
    width: 30%;
    margin-block-end: 5rem;
}

.why ul li:is(:nth-child(4), :nth-child(5)) {
    width: 49%;
}

.why ul li h4 {
    font-weight: 700;
    text-align: center;
    margin-block: 0.75rem;
    color: var(--text-color-2);
    line-height: var(--line-height140);
}

.why ul li p {
    font-weight: 400;
    text-align: center;
    color: var(--text-color-2);
    line-height: var(--line-height140);
}


.why ul li:nth-child(1) {
    background: linear-gradient(45deg, rgba(240, 240, 240, 1) 0%, rgba(189, 242, 237, 0.7) 62%, rgba(240, 240, 240, 1) 100%);
}

.why ul li:nth-child(1)::before {
    left: -30px;
    bottom: -30px;
}

.why ul li:nth-child(2) {
    background: linear-gradient(-45deg, rgba(240, 240, 240, 1) 0%, rgba(189, 242, 237, 0.7) 50%, rgba(240, 240, 240, 1) 100%);
}

.why ul li:nth-child(2)::before {
    left: -30px;
    top: -30px;
}

.why ul li:nth-child(3) {
    background: linear-gradient(to right, rgba(240, 240, 240, 1) 0%, rgba(189, 242, 237, 0.7) 50%, rgba(240, 240, 240, 1) 100%);
}

.why ul li:nth-child(3)::before {
    bottom: -30px;
    right: -30px;
}

.why ul li:nth-child(4) {
    background: linear-gradient(-45deg, rgba(240, 240, 240, 1) 0%, rgba(189, 242, 237, 0.7) 50%, rgba(240, 240, 240, 1) 100%);
}

.why ul li:nth-child(4)::before {
    top: -30px;
    right: 60px;
}

.why ul li:nth-child(5) {
    background: linear-gradient(45deg, rgba(240, 240, 240, 1) 0%, rgba(189, 242, 237, 0.7) 50%, rgba(240, 240, 240, 1) 100%);
}

.why ul li:nth-child(5)::before {
    top: -30px;
    left: 60px;
}

/*********************
END: WHY
*********************/

/*********************
START: CUSTOMERS
*********************/
.customers {
    padding-block: 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0.9) 0%, rgba(247, 247, 247, 0.93) 50%, rgba(247, 247, 247, 0.9) 100%);
}

.customers::before {
    top: 1px;
    left: 1px;
    width: 100%;
    content: "";
    z-index: -1;
    height: 99%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/bg-connect-vector-glass-2.png");
}

.customers .swiper {
    width: 100%;
    height: 100%;
    margin-block-start: 2.5rem;
}

.customers .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    align-items: center;
    justify-content: space-between;
}

.customers .swiper-slide {
    padding: 2rem;
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius15);
}

/*********************
END: CUSTOMERS
*********************/

/*********************
START: ORDER
*********************/
.order--title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.order--content {
    display: flex;
    justify-content: space-between;
}

.order--image {
    width: 500px;
}

.order--image img {
    width: 100%;
    border-radius: var(--border-radius-20);
}

.order--form {
    border: 1px solid red;
    width: calc(100% - 532px);
}

/*********************
END: ORDER
*********************/

/*********************
START: BLOGS
*********************/
.blogs--title {
    display: flex;
    row-gap: 1.5rem;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    align-items: flex-end;
    margin-block-end: 2.5rem;
    justify-content: space-between;
}

.blogs--title h3 {
    margin-block-end: 0;
}


.blogs ul {
    display: flex;
    justify-content: center;
}

.blogs ul li {
    margin: 16px;
    padding: 1.25rem;
    flex-basis: calc(33.33% - 32px);
    border-radius: var(--border-radius-15);
    background-color: rgba(247, 247, 247, 0.8);
}

.blogs ul li picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 380 / 270;
    border-radius: var(--border-radius-15);
}

.blogs ul li h4 {
    font-weight: 700;
    margin-block: 1.25rem 1rem;
    color: var(--text-color-1);
    line-height: var(--line-height120);
}

.blogs ul li p {
    font-weight: 400;
    text-align: justify;
    margin-block-end: 1.25rem;
    line-height: var(--line-height150);
}

.blogs ul li>div {
    display: flex;
    row-gap: 1rem;
    flex-wrap: wrap;
    column-gap: 1rem;
    align-items: center;
    padding-block: 1rem;
    justify-content: space-between;
    border-top: 1px solid rgba(47, 47, 47, 0.2);
}

.blogs ul li>div span {
    font-weight: 500;
    color: var(--text-color-1);
    line-height: var(--line-height130);
}

.blogs ul li>div a {
    display: flex;
    font-weight: 600;
    position: relative;
    column-gap: 0.5rem;
    align-items: center;
    color: var(--secondary-color-2);
}

.blogs ul li>div a::before {
    right: 0;
    width: 0;
    bottom: 0;
    height: 1px;
    content: "";
    position: absolute;
    transform-origin: right;
    transition: width 0.5s;
    background-color: var(--secondary-color-2);
}

.blogs ul li>div a:hover::before {
    width: 100%;
}

/*********************
END: BLOGS
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {

    /* hero */
    .hero--img>div p {
        font-size: 32px;
    }

    /* about us */
    .aboutUs--mission>div h3 {
        font-size: 40px;
    }

    .aboutUs--mission>div p {
        font-size: var(--text-xl);
    }

    .aboutUs--right ul li {
        font-size: var(--text-lg);
    }

    /* services */
    .services--content ul li>div span,
    .services--content ul li>div p {
        font-size: var(--text-xl);
    }

    .services--content ul li>div h4 {
        font-size: var(--text-3xl);
    }

    .services--aside .services--btns__submenu ul li {
        font-size: var(--text-xl);
    }

    /* portfolio  */
    .portfolio ul>li h4 {
        font-size: 40px;
    }

    .portfolio ul>li p,
    .portfolio ul>li ol li {
        font-size: var(--text-xl);
    }


    /* equipment */
    .equipment .swiper-slide h4 {
        font-size: 22px;
    }

    .equipment .swiper-slide p {
        font-size: var(--text-lg);
    }

    /* why */
    .why ul li h4 {
        font-size: 22px;
    }

    .why ul li p {
        font-size: var(--text-lg);
    }

    /* blogs */
    .blogs ul li h4 {
        font-size: var(--text-2xl);
    }

    /* blogs */
    .blogs ul li p {
        font-size: var(--text-lg);
    }

    .blogs ul li>div span {
        font-size: var(--text-xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {

    /* hero */
    .hero--img>div p {
        font-size: var(--text-3xl);
    }

    /* about us */
    .aboutUs--mission>div h3 {
        font-size: var(--text-4xl);
    }

    .aboutUs--mission>div p {
        font-size: var(--text-lg);
    }

    /* services */
    .services--content ul li>div span,
    .services--content ul li>div p {
        font-size: var(--text-lg);
    }

    .services--content ul li>div h4 {
        font-size: var(--text-2xl);
    }

    .services--aside .services--btns__submenu ul li {
        font-size: var(--text-lg);
    }

    /* portfolio  */
    .portfolio ul>li h4 {
        font-size: var(--text-4xl);
    }

    .portfolio ul>li p,
    .portfolio ul>li ol li {
        font-size: var(--text-lg);
    }

    /* equipment */
    .equipment .swiper-slide h4 {
        font-size: var(--text-xl);
    }

    .equipment .swiper-slide p {
        font-size: var(--text-base);
    }

    /* why */
    .why ul li h4 {
        font-size: var(--text-xl);
    }

    .why ul li p {
        font-size: var(--text-lg);
    }

    /* blogs */
    .blogs ul li h4 {
        font-size: var(--text-xl);
    }

    .blogs ul li>div span {
        font-size: var(--text-lg);
    }

}

@media screen and (max-width: 1319px) {

    /* hero */
    .hero--img>div {
        max-width: 400px;
    }

    .hero--img>div p {
        font-size: var(--text-2xl);
    }

    /* about us */
    .aboutUs--mission>div h3 {
        font-size: var(--text-3xl);
    }

    .aboutUs--mission>div p {
        font-size: var(--text-lg);
    }

    /* services */
    .services--content ul li>div span,
    .services--content ul li>div p {
        font-size: var(--text-base);
    }

    .services--content ul li>div h4 {
        font-size: var(--text-xl);
    }

    .services--aside .services--btns__submenu ul li {
        font-size: var(--text-lg);
    }

    .services--content ul li>div {
        width: 48%;
    }

    .services--content ul li picture {
        width: 50%;
    }

    .services--content ul li picture img {
        height: 100%;
        aspect-ratio: unset;
    }

    /* portfolio  */
    .portfolio ul>li h4 {
        font-size: var(--text-3xl);
    }

    .portfolio ul>li p,
    .portfolio ul>li ol li {
        font-size: var(--text-base);
    }

    /* equipment */
    .equipment .swiper-slide h4 {
        font-size: var(--text-lg);
    }

    /* why */
    .why ul li {
        padding: 2rem 3rem;
    }

    .why ul li h4 {
        font-size: var(--text-lg);
    }

    .why ul li p {
        font-size: var(--text-base);
    }

    /* blogs */
    .blogs ul li {
        margin: 12px;
        flex-basis: calc(33.33% - 24px);
    }

    .blogs ul li h4 {
        font-size: var(--text-lg);
    }

    .blogs ul li>div span {
        font-size: var(--text-base);
    }
}

@media screen and (max-width: 1200px) {

    /* hero */
    .hero--img>div {
        max-width: 350px;
    }

    .hero--img>div p {
        font-size: var(--text-xl);
    }

    /* services */
    .services--content ul li>div span {
        font-size: var(--text-sm);
    }

    .services--content ul li>div h4 {
        font-size: var(--text-lg);
    }

    /* about us */
    .aboutUs--mission>div h3 {
        font-size: var(--text-2xl);
    }

    .aboutUs--mission>div p {
        font-size: var(--text-base);
    }

    .aboutUs--content {
        row-gap: 2rem;
        flex-direction: column-reverse;
    }

    .aboutUs--right,
    .aboutUs--left {
        width: 100%;
    }

    /* portfolio  */
    .portfolio ul>li h4 {
        font-size: var(--text-2xl);
    }

    .portfolio ul>li ol li {
        font-size: var(--text-sm);
    }

    /* why */
    .why ul li {
        padding: 2rem 2.5rem;
    }

    /* order */
    .order--image {
        width: 400px;
    }

    .order--form {
        width: calc(100% - 420px);
    }

    .blogs ul li {
        margin: 8px;
        flex-basis: calc(33.33% - 16px);
    }
}

@media screen and (max-width: 992px) {

    /* hero */
    .hero--img>div {
        max-width: 300px;
    }

    .hero--img>div p {
        font-size: var(--text-lg);
    }

    /* connect */
    .connect--content {
        padding: 3.5rem 3rem;
    }

    .connect--btns a span {
        font-size: var(--text-2xl);
    }

    /* services */
    .services--box {
        row-gap: 2rem;
        flex-direction: column;
    }

    .services--aside,
    .services--content {
        width: 100%;
    }

    .services--aside {
        top: 10px;
        position: unset;
        align-self: unset;
    }

    .services--content ul li>div,
    .services--content ul li picture {
        width: 49%;
    }

    /* portfolio  */
    .portfolio ul {
        row-gap: 1rem;
    }

    .portfolio ul>li h4 {
        font-size: var(--text-xl);
    }

    /* why */
    .why ul li {
        padding: 2rem;
    }

    .why ul li:nth-child(1) {
        width: 100%;
    }

    .why ul li:is(:nth-child(2), :nth-child(3)) {
        width: 45%;
    }

    /* order */
    .order--image {
        width: 300px;
    }

    .order--form {
        width: calc(100% - 320px);
    }

    /* blogs */
    .blogs ul {
        flex-wrap: wrap;
    }

    .blogs ul li {
        margin: 8px;
        flex-basis: calc(50% - 16px);
    }
}

@media screen and (max-width: 768px) {

    /* hero */
    .hero {
        padding-block: 9.5rem 6.5rem;
    }

    .hero--content {
        flex-direction: column-reverse;
    }

    .hero--img {
        width: 75%;
    }

    .hero--text {
        width: 100%;
        margin-block-start: 2rem;
    }

    /* connect */
    .connect--btns a {
        min-width: 200px;
    }

    /* services */
    .services--aside {
        padding-block-end: 0;
    }

    .services--btns .dropdown {
        display: inline;
        transition: all 0.3s;
    }

    .services--btns .dropdown.active {
        transform: rotate(-180deg);
    }

    .services--btns__submenu {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
    }

    .services--aside .services--btns .tab--btn {
        width: 45%;
    }

    .services--aside .services--btns__submenu ul li:last-child {
        margin-block-end: 3rem;
    }

    /* portfolio  */
    .portfolio ul>li h4 {
        font-size: var(--text-lg);
    }

    /* why */
    .why ul li:is(:nth-child(2), :nth-child(3)) {
        width: 100%;
    }

    .why ul li:nth-child(1)::before {
        left: 30px;
        top: -30px;
    }

    .why ul li:nth-child(2)::before {
        left: unset;
        top: -30px;
        right: 30px;
    }

    .why ul li:nth-child(3)::before {
        bottom: unset;
        right: unset;
        left: 30px;
        top: -30px;
    }

    /* order */
    .order--content {
        row-gap: 2rem;
        flex-direction: column;
    }

    .order--image {
        width: 65%;
        margin-inline: auto;
    }

    .order--form {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {

    /* hero */
    .hero {
        padding-block: 10.5rem 5rem;
    }

    .hero--img {
        width: 90%;
    }

    .hero--img img {
        width: calc(100% - 35px);
    }

    /* about us */
    .aboutUs--mission {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .aboutUs--mission>div,
    .aboutUs--mission picture {
        width: 100%;
    }

    .aboutUs--mission picture img {
        height: auto;
        aspect-ratio: 4 / 3;
        object-position: top;
    }

    .aboutUs--right ul li {
        font-size: var(--text-sm);
    }

    /* services */
    .services--content ul li {
        row-gap: 1.5rem;
        flex-direction: column-reverse;
    }

    .services--content ul li.show {
        padding: 1.5rem;
    }

    .services--content ul li>div {
        width: 100%;
    }

    .services--content ul li.show>div {
        padding: 0;
    }

    .services--content ul li picture {
        width: 75%;
        margin-inline: auto;
    }

    .services--content ul li picture img {
        height: auto;
        aspect-ratio: 4/3;
    }

    /* portfolio */
    .portfolio ul>li {
        width: 100%;
    }

    /* why */
    .why ul li:is(:nth-child(4), :nth-child(5)) {
        width: 100%;
    }

    .why ul li:nth-child(4) {
        margin-block-end: 5rem;
    }

    /* order */
    .order--image {
        width: 75%;
    }

    /* blogs */
    .blogs ul li {
        flex-basis: calc(100% - 16px);
    }
}

@media screen and (max-width: 425px) {

    /* hero */
    .hero--img {
        width: 100%;
    }

    .hero--img>div p {
        font-size: var(--text-base);
    }

    /* services */
    .services--content ul li picture {
        width: 90%;
    }

    .services--aside .services--btns {
        padding: 1.5rem;
    }

    /* order */
    .order--image {
        width: 85%;
    }
}

@media screen and (max-width: 375px) {

    /* services */
    .services--content ul li picture {
        width: 100%;
    }

    .services--aside .services--btns {
        padding:1.5rem 1rem;
    }

    /* order */
    .order--image {
        width: 100%;
    }
}

/*********************
END: MEDIA
*********************/