* {
    transition: all 0.5s ease-in-out !important;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* إزالة تأثير الخلفية الزرقاء */
    -webkit-tap-highlight-color: transparent;
    transition: 0.5s;
}
html {
    scroll-behavior: smooth;
}
.section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section .container {
    width: 100%;
}
:root {
    --primary-color: #e2af46;
    --secondary-color: #112b42;
    --light-beige-color: #fffff6;
    --dark-gray-color: #b9b9b9;
    --light-gray-color: #e9e8e4;
    --bg-color: #f6f2e5;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
}
::selection {
    background-color: #333;
    color: #fff;
}
body {
    background-color: #fff;
    transition: 0.5s all ease-in-out ;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    background-image: url(media/Imgaes/bg/bg.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat;
}
/* Header */
header {
    width: 100%;
    height: 75px;
    background-color: transparent;
    /* backdrop-filter: blur(1px); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 40px;
}
@media screen and (max-width: 768px) {
    header {
        padding: 0 20px;
    }
}
header .header-container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.5% 0;
}
header .header-container .header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .header-container .header-content .logo {
    width: max-content;
    min-width: max-content;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .header-container .header-content .logo a img {
    width: 35px;
    max-width: 100%;
}
header .header-container .header-content ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: center;
    position: fixed;
    padding: 20px;
    top: -110vh;
    left: 0;
    right: 0;
    /* left: 50vw;
    right: 50vw; */
    width: calc(100% - 0px);
    min-height: 50vh;
    height: max-content;
    border-radius: 12px;
    padding-top: 100px;
    /* background-color: #f6f2e5; */
    background-color: #e9e8e4;
    z-index: -1;
}
header .header-container .header-content.opened ul {
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 100px 10px 1000px rgba(0, 0, 0, 0.2);
}
header .header-container .header-content ul li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 40px;
}
header .header-container .header-content ul li a {
    display: inline-block;
    color: #333;
    font-size: 17px;
    font-weight: 500;
}
header .header-container .header-content ul li a img {
    display: none;
}
@media screen and (max-width: 1024px) {
    header .header-container .header-content ul li {
        padding: 20px 0;
    }
}

@media screen and (min-width: 768px) {
    header .header-container .header-content ul {
        flex-direction: row;
        align-items: flex-end;
        padding: 0 20px;
        padding-top: 75px;
        min-height: 50vh;
        width: calc(100% - 40px);
        /* top: 0; */
    }
    header .header-container .header-content.opened ul {
        top: 0;
        right: 20px;
        left: 20px;
        box-shadow: 0 100px 10px 1000px rgba(0, 0, 0, 0.2);
    }
    header .header-container .header-content ul li {
        width: calc(100% / 4);
        /* border-right: 1px solid #33333347; */
        height: 100%;
        padding: 5px 50px;
        padding-bottom: 20px;
    }
    header .header-container .header-content ul li:last-child {
        border-right: 0;
    }
    header .header-container .header-content ul li a {
        position: relative;
        width: 100%;
        height: 100%;
        padding-bottom: 4px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        font-size: 22px;
        font-weight: 400;
        text-transform: uppercase;
    }
    header .header-container .header-content ul li a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0.3px;
        background-color: #333;
        transition: all 0.5s ease-in-out;
    }
    header .header-container .header-content ul li a:hover::after {
        width: 100%;
    }
    header .header-container .header-content ul li a img {
        filter: invert(1);
        width: 20px;
        rotate: -45deg;
        display: inline-block;
    }
}
header .header-container .header-content .menu {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
header .header-container .header-content .menu .menu-box {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;

}
header .header-container .header-content .menu .menu-box span {
    width: 100%;
    height: 3px;
    border-radius: 20px;
    background-color: #333;
    transition: all 0.5s ease-in-out
}
header .header-container .header-content .menu .menu-box span.middle {
    margin: 5.5px 0;
    width: 75%;
}
header .header-container .header-content .menu .menu-box span.bottom {
    max-width: 100%;
    width: 50%;
}
header .header-container .header-content.opened .menu .menu-box {
    justify-content: center;
    align-items: center;
    position: relative;
}
header .header-container .header-content.opened .menu .menu-box span.top {
    rotate: 45deg;
    width: 100%;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
}
header .header-container .header-content.opened .menu .menu-box span.middle {
    width: 0;
    margin: 0;
}
header .header-container .header-content.opened .menu .menu-box span.bottom {
    width: 100%;
    rotate: -45deg;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
}
/* Landing */
.landing {
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 100px;
}
@media screen and (min-width: 768px) {
    .landing {
        max-height: 100vh;
    }
}
@media screen and (max-width: 768px) {
    .landing {
        padding: 0 20px;
        padding-top: 100px;
    }
}
.landing .landing-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing .landing-content .slider-parent {
    width: 100%;
    overflow: hidden;
}
.landing .landing-content .slider-parent .slider-content {
    display: flex;
    position: relative;
    width: 100%;
}
.landing .landing-content .slider-parent .slider-content .arrows {
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.landing .landing-content .slider-parent .slider-content:hover .arrows {
    opacity: 1;
}
.landing .landing-content .slider-parent .slider-content .arrows .arrow {
    padding: 20px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #f6f2e5;
}
.landing .landing-content .slider-parent .slider-content .arrows .arrow img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .arrows {
        opacity: 1;
        transform: translateY(-100px);
    }
    .landing .landing-content .slider-parent .slider-content .arrows .arrow {
        padding: 0;
        background-color: transparent;
    }
    .landing .landing-content .slider-parent .slider-content .arrows .arrow img {
        width: 25px;
        height: 25px;
        filter: invert(1);
    }
}
.landing .landing-content .slider-parent .slider-content .arrows .arrow.left-arrow {
    rotate: 180deg;
}
.landing .landing-content .slider-parent .slider-content .slider-item {
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item {
        flex-direction: column;
    }
}

.slider-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
}
.slider-item.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
.slider-content {
    position: relative;
}

/* @keyframes slide-in {
    from {
        scale: 0.8;
        opacity: 0;
    }
    to {
        scale: 1;
        opacity: 1;
    }
}
@supports (animation-timeline: view()) {
    .landing .landing-content .slider-parent .slider-content .slider-item {
        animation-name: slide-in;
        animation-duration: 1s;
        animation-timing-function: ease-out;
        animation-fill-mode: both;
        animation-timeline: view();
        animation-range: cover 0% cover 40%;
    }
    .landing .landing-content .slider-parent .slider-content .slider-item:nth-child(1) {
        animation-delay: 0s;
    }
    .landing .landing-content .slider-parent .slider-content .slider-item:nth-child(2) {
        animation-delay: 0.2s;
    }
}
@supports not (animation-timeline: view()) {
    .landing .landing-content .slider-parent .slider-content .slider-item {
        transform: translateY(-100%);
        transition: transform 1s ease-out, opacity 1s ease-out;
    }
    .landing .landing-content .slider-parent .slider-content .slider-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
} */

.landing .landing-content .slider-parent .slider-content .slider-item .item-bg {
    width: 50%;
    aspect-ratio: 1.14 / 1;
    display: flex;
    justify-content: center;
    gap: 0px;
    align-items: center;
    transform: translateX(100px);
    transition: transform 0.6s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item.active .item-bg {
    transform: translateX(0);
}
@media screen and (max-width: 1440px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg {
        aspect-ratio: 1 / 1;
    }
}
@media screen and (max-width: 1024px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg {
        aspect-ratio: 1 / 1.5;
    }
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg {
        aspect-ratio: 1 / 1;
    }
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #f6f2e5;
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img:first-child {
        width: 100%;
    }
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img {
        width: 100%;
    }
}
@media screen and (max-width: 551px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img:first-child {
        width: 100%;
    }
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover div {
    width: 5px;
    height: 100%;
    background-color: #f6f2e5;
    transition: 1s width ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover div:first-child,
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover div:last-child {
    width: 0px;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover.closing div {
    width: 20%;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover.closing div:first-child,
.landing .landing-content .slider-parent .slider-content .slider-item .item-bg .img .img-cover.closing div:last-child {
    width: 20%px;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content {
    width: 50%;
    height: 100%;
    color: #333;
    text-align: left;
    display: flex;
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-content {
        width: 100%;
        padding-bottom: 20px;
    }
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box {
    max-width: 430px;
    padding: 30px 15px;
    background-color: rgba(210, 210, 210, 0.702);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    float: left;
    opacity: 0.4;
    transform: translateX(-100px);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item.active .item-content .content-box .box {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .img {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .img {
        display: none;  
    }
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    justify-content: center;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line {
    display: flex;
    justify-content: center;
    align-items: center;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 10px;
    border-right: 2px solid #333;
    margin-right: 10px;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line .icon svg {
    width: 25px;
    color: #333;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line .link a,
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line .link p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #333;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .box .lines .line .link p {
    cursor: default;
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .top h2 {
    font-size: 95px;
    font-weight: 800;
    line-height: 1em;
    letter-spacing: -5px;
    margin: 5px 0;
    transform: translateY(-100px);
    opacity: 0.4;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item.active .item-content .content-box .top h2 {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
@media (max-width: 1024px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .top h2 {
        font-size: 70px;
        letter-spacing: -2px;
    }
}
@media (max-width: 767px) {
    .landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .top h2 {
        font-size: 50px;
    }
}
.landing .landing-content .slider-parent .slider-content .slider-item .item-content .content-box .top p {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    margin: 20px 0 45px;
    transform: translateY(-50px);
    opacity: 0.4;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
.landing .landing-content .slider-parent .slider-content .slider-item.active .item-content .content-box .top p {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
/* About Us */
.about {
    padding: 0 40px;
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: rgba(210, 210, 210, 0.702);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .about {
        padding: 0 20px;
    }
}
.about .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 50px 20px;
}
.about .bg img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes slide-in {
    from {
        scale: 0.8;
        opacity: 0;
    }
    to {
        scale: 1;
        opacity: 1;
    }
}
@supports (animation-timeline: view()) {
    .about .bg img {
        animation-name: slide-in;
        animation-duration: 1s;
        animation-timing-function: ease-out;
        animation-fill-mode: both;
        animation-timeline: view();
        animation-range: cover 0% cover 10%;
    }
}
@supports not (animation-timeline: view()) {
    .about .bg img {
        transform: translateY(-100%);
        transition: transform 1s ease-out, opacity 1s ease-out;
    }
    .about .bg img.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.about .container {
    position: relative;
    z-index: 1;
    color: #fff;
}
.about .container .content {
    border-radius: 12px;
    margin: 20px;
    padding: 50px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 50%;
}
@media screen and (max-width: 1024px) {
    .about .container .content {
        max-width: 600px;
    }
}
@media screen and (max-width: 768px) {
    .about .container .content {
        max-width: 100%;
    }
}
.about .container .content .top .main-h {
    padding-bottom: 20px;
}
.about .container .content .top .main-h h2 {
    font-size: 75px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
.about .container .content .top .p p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .about .container .content .top .main-h h2 {
        font-size: 35px;
    }
    .about .container .content .top .p p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}
.about .container .content .values {
    margin-top: 20px;
}
.about .container .content .values ul {
    list-style-type: none;
}
.about .container .content .values ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}
.about .container .content .values ul li img {
    width: 30px;
}
.about .container .content .values ul li p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
}
/* Our Services */
.services {
    padding: 0 40px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .services {
        padding: 0 20px;
    }
}
.services .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 50px 20px;
}
.services .bg img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes slide-in {
    from {
        scale: 0.8;
        opacity: 0;
    }
    to {
        scale: 1;
        opacity: 1;
    }
}
@supports (animation-timeline: view()) {
    .services .bg img {
        animation-name: slide-in;
        animation-duration: 1s;
        animation-timing-function: ease-out;
        animation-fill-mode: both;
        animation-timeline: view();
        animation-range: cover 0% cover 10%;
    }
}
.services .container {
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.services .container .content {
    border-radius: 12px;
    padding: 50px 20px;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .services .container {
        padding: 50px 0px;
    }
}
.services .container .content .top {
    max-width: 50%;
}
@media screen and (max-width: 1024px) {
    .services .container .content .top {
        max-width: 600px;
    }
}
@media screen and (max-width: 768px) {
    .services .container .content {
        max-width: 100%;
    }
}
.services .container .content .top .main-h {
    padding-bottom: 20px;
}
.services .container .content .top .main-h h2 {
    font-size: 75px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
.services .container .content .top .p p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    .services .container .content .top .main-h h2 {
        font-size: 35px;
    }
    .services .container .content .top .p p {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}
.services .container .content .cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}
.services .container .content .cards .card {
    max-width: 550px;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    min-height: 100%;
    color: #000;
    background-color: rgba(210, 210, 210, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
}
@media screen and (max-width: 768px) {
    .services .container .content .cards {
        flex-direction: column;
    }
    .services .container .content .cards .card {
        max-width: 100%;
        padding: 20px 10px;
    }
}
.services .container .content .cards .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background-color: rgb(0 0 0 / 37%);
    z-index: 1;
}
.services .container .content .cards .card .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 768px) {
    .services .container .content .cards .card .card-bg {
        padding: 20px 10px;
    }
}
.services .container .content .cards .card .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.services .container .content .cards .card .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    gap: 20px;
    padding: 20px;
}
@media screen and (max-width: 768px) {
    .services .container .content .cards .card .card-content {
        padding: 20px 10px;
    }
}
.services .container .content .cards .card .card-content .title h3 {
    font-size: 30px;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .services .container .content .cards .card .card-content .title h3 {
        font-size: 26px;
    }
}
.services .container .content .cards .card .card-content .card-p p  {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
.services .container .content .cards .card .card-content .call,
.services .container .content .cards .card .card-content .call .button {
    width: 100%;
}
.services .container .content .cards .card .card-content .call .button a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: rgba(246, 242, 229, 0.8);
    color: #000;
}
.services .container .content .cards .card .card-content .call .button a .img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 5px;
    background-color: rgba(246, 242, 229, 0.9);
}
.services .container .content .cards .card .card-content .call .button a .img img {
    width: 20px;
    transform: rotateX(180deg);
}
.services .container .content .cards .card .card-content .call .button a p {
    font-size: 18px;
    font-weight: 600;
}
/* Why Choose Us? */
.why {
    padding: 0 40px;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(210, 210, 210, 0.702);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .why {
        padding: 0 20px;
    }
}
.why .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 50px 20px;
}
.why .bg img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes slide-in {
    from {
        scale: 0.8;
        opacity: 0;
    }
    to {
        scale: 1;
        opacity: 1;
    }
}
@supports (animation-timeline: view()) {
    .why .bg img {
        animation-name: slide-in;
        animation-duration: 1s;
        animation-timing-function: ease-out;
        animation-fill-mode: both;
        animation-timeline: view();
        animation-range: cover 0% cover 10%;
    }
}
.why .container {
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}
.why .container .content {
    border-radius: 12px;
    margin: 20px;
    padding: 50px 20px;
    backdrop-filter: blur(0.5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    max-width: 60%;
}
@media screen and (max-width: 1024px) {
    .why .container .content {
        max-width: 600px;
    }
}
@media screen and (max-width: 768px) {
    .why .container {
        padding: 20px 20px;
    }
    .why .container .content {
        max-width: 100%;
        padding: 30px 10px;
        margin: 0;
    }
}
.why .container .content .top .main-h {
    padding-bottom: 20px;
}
.why .container .content .top .main-h h2 {
    font-size: 75px;
    font-weight: 600;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .why .container .content .top .main-h h2 {
        font-size: 35px;
    }
}
.why .container .content .benefits ul {
    padding-inline-start: 10px;
    list-style-type: circle;
}
.why .container .content .benefits ul li {
    margin: 10px 0;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    max-width: fit-content;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .why .container .content .benefits ul li {
        font-size: 18px;
        padding: 10px 15px;
    }
}
/* Footer */
footer {
    width: 100%;
    min-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent !important;
}
@media screen and (min-width: 1200px) {
    footer {
        padding: 0 1%;
    }
}
footer .footer-container {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0.5% 5%;
}
@media screen and (min-width: 1200px) {
    footer .footer-container {
        padding: 0 1%;
    }
}
footer .footer-container .footer-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 20px;
}
@media screen and (max-width: 768px) {
    footer .footer-container .footer-content {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* gap: 10px 10px; */
    }
}
footer .footer-container .footer-content .child {
    width: calc(100% / 3);
}
footer .footer-container .footer-content .legal {
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (max-width: 768px) {
    footer .footer-container .footer-content .child {
        width: 100%;
    }
    footer .footer-container .footer-content .legal {
        align-items: center;
    }
}
footer .footer-container .footer-content .legal div p {
    font-size: 16px;
    font-weight: 400;
}
footer .footer-container .footer-content .legal div p span {
    font-weight: 500;
}
footer .footer-container .footer-content .rights {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
footer .footer-container .footer-content .rights a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}
footer .footer-container .footer-content .follow-us {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
@media screen and (max-width: 768px) {
    footer .footer-container .footer-content .follow-us {
        justify-content: center;
    }
}
footer .footer-container .footer-content .follow-us ul {
    display: flex;
    align-items: center;
    gap: 10px;
}