@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
/* font-family: "Outfit", serif; */

@font-face {
    font-family: 'ClashDisplay-Extralight';
    src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Extralight.woff') format('woff'),
        url('../fonts/ClashDisplay-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Light';
    src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Light.woff') format('woff'),
        url('../fonts/ClashDisplay-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Regular';
    src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Regular.woff') format('woff'),
        url('../fonts/ClashDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Medium';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Medium.woff') format('woff'),
        url('../fonts/ClashDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Semibold';
    src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Semibold.woff') format('woff'),
        url('../fonts/ClashDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'ClashDisplay-Bold';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Bold.woff') format('woff'),
        url('../fonts/ClashDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Outfit", serif;
    color: #666666;
    background-color: #FAF7F4;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #121216;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #000000;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    padding: 30px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .2s ease-in-out;
}

.header-section.sticky {
    padding: 15px 0;
    width: 100%;

    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .2s ease-in-out;
}

.header-section.clr {
    padding: 15px 0;
    background-color: #FFFFFF;
    transition: all .2s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-section .btn-01 a {
    margin: 0 !important;
}

.header-section .menubar {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu {
    margin: 0;
    padding: 50px;
    position: fixed;
    right: -350px;
    top: 0;
    width: 350px;
    height: 100%;
    background-color: #121216;
    border-radius: 0;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.main-menu.oppenned {
    right: 0;
}

.main-menu ul.page-links {
    margin: 60px 0;
    padding: 0;
    list-style: none;
}

.main-menu ul.page-links li {
    margin: 15px 0;
    display: block;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'ClashDisplay-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #FFFFFF;
    text-transform: uppercase;
}

.main-menu ul.page-links li a {
    color: #FFFFFF;
    display: block;
    transition: all .4s ease-in-out;
}

.main-menu ul.page-links li a:hover,
.main-menu ul.page-links li.current-menu-item a {
    color: #FFAA05;
    transition: all .4s ease-in-out;
}

.main-menu ul.social-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu ul.social-links li {
    margin: 0 20px 0 0;
    display: inline-block;
    font-size: 24px;
    font-weight: normal;
    line-height: 1.4;
    color: #FFFFFF;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-menu ul.social-links li a {
    color: #FFFFFF;
    display: block;
    transition: all .4s ease-in-out;
}

.main-menu ul.social-links a:hover {
    color: #FFAA05;
    transition: all .4s ease-in-out;
}

.c-hamburger {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 2;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/menu-open.svg) no-repeat center;
}

.c-hamburger.is-active {
    position: absolute;
    top: 20px;
    right: 20px;
}

.c-hamburger.is-active span {
    background: url(../img/menu-close.svg) no-repeat center;
}

@media only screen and (max-width:760px) {
    .header-section {
        padding: 15px 0;
    }

    .header-section .btn-01 a {
        display: none;
    }

    .main-menu ul.page-links li {
        font-size: 16px;
    }

    .main-menu ul.social-links li {
        font-size: 18px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    position: relative;
    z-index: 1;
}

.banner-section figure {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    min-height: 700px;
    background: url(../img/ellipse.svg) no-repeat center;
    overflow: hidden;
}

@keyframes b {
    0% {
        transform: skewX(0deg);
    }

    25% {
        transform: skewX(1deg);
    }

    50% {
        transform: skewX(0deg);
    }

    75% {
        transform: skewX(-1deg);
    }

    100% {
        transform: skewX(0deg);
    }
}

.banner-section .container {
    padding: 200px 15px 100px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.banner-section .container article {
    width: calc(100% - 500px);
}

.banner-section .container aside {
    width: 470px;
}

.banner-section .container aside img {
    transform: translatex(0px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(-30px);
    }

    100% {
        transform: translatex(0px);
    }
}

.banner-section h1 {
    font-family: 'ClashDisplay-Light';
    font-size: 46px;
    font-weight: 300;
    line-height: 1.4;
    color: #121216;
    padding: 10px 0;
}

.banner-section h1 strong {
    font-family: 'ClashDisplay-Regular';
    font-weight: 400;
}

.banner-section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #222222;
    padding: 0;
    max-width: 500px;
}

.banner-section h1 span.linebar {
    font-family: 'ClashDisplay-Regular';
    font-weight: 400;
    display: block;
    position: relative;
    padding-left: 520px;
}

.banner-section h1 span.linebar::before {
    content: "";
    width: 500px;
    height: 1px;
    background-color: #121216;
    position: absolute;
    left: 0;
    top: 35px;
}

.banner-section .btn-more-info a {
    margin: 50px 170px 0 0;
    padding: 0;
    width: 100px;
    height: 100px;
    background: url(../img/btn-more-info.svg) no-repeat center;
    font-size: 24px;
    color: #FFFFFF;
    display: block;
    position: relative;
    float: right;
}

.arrow3 {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 0;
    transform-origin: 0% 50%;
    -webkit-animation: slide3 3s ease-in-out infinite;
    animation: slide3 3s ease-in-out infinite;
}

@-webkit-keyframes slide3 {

    0%,
    100% {
        transform: translateY(-5px) translateX(5px) rotate(-45deg);
    }

    50% {
        transform: translateY(5px) translateX(-5px) rotate(-45deg);
    }
}



@media only screen and (max-width:760px) {
    .banner-section figure {
        min-height: 500px;
        background-size: cover;
        animation-play-state: paused !important;
    }

    .banner-section .container {
        padding: 100px 15px 50px 15px;
        flex-wrap: wrap-reverse;
        gap: 10px;
    }

    .banner-section .container article {
        width: 100%;
    }

    .banner-section .container aside {
        width: 100%;
    }

    .banner-section h1 {
        font-size: 30px;
    }

    .banner-section p {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-section h1 span.linebar {
        padding-left: 240px;
    }

    .banner-section h1 span.linebar::before {
        width: 224px;
        top: 22px;
    }

    .banner-section .btn-more-info a {
        margin: 25px 0 0 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .banner-section figure {
        animation-play-state: paused !important;
    }

    .banner-section .container {
        flex-wrap: wrap-reverse;
    }

    .banner-section .container article {
        width: 100%;
    }

    .banner-section .container aside {
        width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1169px) {
    .banner-section figure {
        animation-play-state: paused !important;
    }

    .banner-section h1 span.linebar {
        padding-left: 70%;
    }

    .banner-section h1 span.linebar::before {
        width: 65%;
    }

    .banner-section .btn-more-info a {
        margin: 50px 50px 0 0;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'ClashDisplay-Medium';
    font-weight: 500;
    line-height: 1.2;
    color: #121216;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 46px;
}

.content-section h2 {
    font-size: 46px;
}

.content-section h3 {
    font-size: 36px;
}

.content-section h4 {
    font-size: 30px;
}

.content-section h5 {
    font-size: 26px;
}

.content-section h6 {
    font-size: 22px;
}

.content-section p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #222222;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #222222;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 10px 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: #222222;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a,
#load-more {
    margin: 15px 0;
    padding: 12px 25px;
    width: auto;
    height: auto;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #757584 0%, #121216 50%, #FFAA05 100%);
    border: none;
    border-radius: 10px;
    text-align: center;
    font-family: 'ClashDisplay-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: 0.5s;
    cursor: pointer;
}

.btn-01 a:hover,
#load-more:hover {
    background-position: right center;
}

.sub-heading {
    padding: 0 !important;
    font-size: 20px !important;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .content-section h3 {
        font-size: 26px;
    }

    .content-section h4 {
        font-size: 24px;
    }

    .content-section h5 {
        font-size: 22px;
    }

    .content-section h6 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section ul li {
        font-size: 16px;
    }

    .content-section ol li {
        font-size: 16px;
    }

    .btn-01 a {
        margin: 5px 0;
        padding: 10px 15px;
        font-size: 16px;
    }

    .sub-heading {
        font-size: 16px !important;
    }
}

.counter-section {
    padding: 0 15px;
}

.counter-section section {
    margin: 0 auto;
    padding: 50px;
    max-width: 1170px;
    background: #FFFFFF;
    border: 1px solid #E7DACE;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.counter-section section div {
    text-align: center;
}

#counter span.title {
    display: block;
    white-space: nowrap;
    font-size: 20px;
    color: #222228;
}

#counter span.percent {
    font-size: 46px;
    color: #121216;
    display: block;
}

#counter span.percent:after {
    content: "+";
    display: inline-block;
}

@media only screen and (max-width:760px) {
    .counter-section {
        padding: 15px;
    }

    .counter-section section {
        padding: 15px;
        flex-wrap: wrap;
    }

    .counter-section section div {
        text-align: center;
        width: 50%;
        padding: 15px;
    }

    #counter span.title {
        font-size: 14px;
    }

    #counter span.percent {
        font-size: 30px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .counter-section section {
        padding: 25px;
        flex-wrap: wrap;
    }

    .counter-section section div {
        padding: 25px;
        width: 50%;
    }
}

.our-products-section {
    padding: 70px 0;
}

.our-products-section section {
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.our-products-section section .product-card {
    width: 33.333%;
    background: #FFFFFF;
    border: 1px solid #E7DACE;
    border-radius: 15px;
    transition: all .4s ease-in-out;
}

.our-products-section section .product-card figure {
    margin: 0;
    padding: 0;
    text-align: center;
}

.our-products-section section .product-card figure img {
    border-radius: 15px 15px 0 0;
}

.our-products-section section .product-card article {
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-products-section section .product-card article h6 {
    font-family: 'ClashDisplay-Semibold';
    padding: 0;
}

.our-products-section section .product-card article p {
    padding: 0;
}

.our-products-section section .product-card article .title {
    width: calc(100% - 60px);
}

.our-products-section section .product-card article .btn-arrow a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.our-products-section section .product-card:hover .btn-arrow a {
    background: url(../img/btn-arrow-hover.svg) no-repeat center;
    transform: translateY(-20%);
    transition: .5s;
}

.our-products-section section .product-card:hover .btn-arrow a path {
    fill: #FFFFFF !important;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .our-products-section {
        padding: 25px 0;
    }

    .our-products-section section {
        margin: 15px auto;
        flex-wrap: wrap;
        gap: 15px;
    }

    .our-products-section section .product-card {
        width: 100%;
    }
}

.about-us-section {
    padding: 100px 0;
    background: #F8F2E6 url(../img/ellipse2.svg) no-repeat center;
    position: relative;
    z-index: 1;
}

.about-us-section::before {
    content: "";
    width: 673px;
    height: 207px;
    background: url(../img/grdn-top.svg) no-repeat top;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.about-us-section::after {
    content: "";
    width: 596px;
    height: 189px;
    background: url(../img/grdn-bot.svg) no-repeat top;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.about-us-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-us-section .container article {
    width: 50%;
}

.about-us-section .container figure {
    width: 50%;
    position: relative;
}

.about-us-section .container figure .main-logo {
    margin: 0 auto;
    width: 360px;
    height: 360px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-section .container figure .main-logo img {
    height: 66px;
}

.about-us-section .container figure .dream-photography {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFFFFF 50%, #FBE4A4 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 100px;
    top: -20px;
}

.about-us-section .container figure .emoji-mantra {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, #FFFFFF 50%, #FBE4A4 100%);
    border-radius: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0px;
    top: -20px;
}

.about-us-section .container figure .avaya {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #FFFFFF 50%, #FBE4A4 100%);
    border-radius: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.about-us-section .container figure .dream-mockup {
    width: 100px;
    height: 100px;
    background: linear-gradient(315deg, #FFFFFF 50%, #FBE4A4 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 100px;
    bottom: 0px;
}

@media only screen and (max-width:760px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-us-section::before {
        display: none;
    }

    .about-us-section::after {
        display: none;
    }

    .about-us-section .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-us-section .container article {
        width: 100%;
    }

    .about-us-section .container figure {
        width: 100%;
    }

    .about-us-section .container figure .main-logo {
        width: 300px;
        height: 300px;
    }

    .about-us-section .container figure .main-logo img {
        height: 46px;
    }

    .about-us-section .container figure .dream-photography {
        padding: 15px;
        width: 70px;
        height: 70px;
        left: 40px;
        top: 0px;
    }

    .about-us-section .container figure .emoji-mantra {
        padding: 15px;
        width: 100px;
        height: 100px;
        right: 0px;
        top: 0px;
    }

    .about-us-section .container figure .avaya {
        padding: 15px;
        width: 100px;
        height: 100px;
        left: 0px;
        bottom: 0px;
    }

    .about-us-section .container figure .dream-mockup {
        padding: 15px;
        width: 70px;
        height: 70px;
        right: 40px;
        bottom: 0px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .about-us-section .container figure .dream-photography {
        left: 0;
    }

    .about-us-section .container figure .emoji-mantra {
        top: -40px;
    }

    .about-us-section .container figure .avaya {
        bottom: -40px;
    }

    .about-us-section .container figure .dream-mockup {
        right: 0px;
        bottom: -20px;
    }
}

.our-services-section {
    padding: 70px 0;
}

.our-services-section section {
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.our-services-section section .service-card {
    width: calc(33.333% - 20px);
    min-height: 300px;
    background-color: #FAF7F4;
    border: 1px solid #FAF7F4;
    border-radius: 20px;
    padding: 25px;
}

.our-services-section section .service-card:hover {
    background-color: #FFFFFF;
    border: 1px solid #E7DACE;
}

.our-services-section section .service-card h6 {
    font-family: 'ClashDisplay-Medium';
    font-size: 20px;
}

.our-services-section section .service-card h6 span {
    color: #F49A02;
}

.our-services-section section .service-card p {
    padding: 0;
}

@media only screen and (max-width:760px) {
    .our-services-section {
        padding: 25px 0;
    }

    .our-services-section section {
        margin: 30px auto;
        flex-wrap: wrap;
        gap: 15px;
    }

    .our-services-section section .service-card {
        width: 100%;
        min-height: inherit;
        padding: 15px;
    }

    .our-services-section section .service-card img {
        width: 50px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .our-services-section section {
        flex-wrap: wrap;
    }

    .our-services-section section .service-card {
        width: 47%;
        min-height: inherit;
    }
}


.help-you-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.help-you-section article {
    width: 45%;
}

.help-you-section aside {
    width: 55%;
    background: url(../img/ellipse4.svg) no-repeat center;
    background-size: contain;
}

.help-you-section hr {
    margin: 15px auto;
    padding: 0;
    width: 100%;
    height: 1px;
    background-color: #CFC0B1;
    border: none;
}

.help-you-section .number-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.help-you-section .number-box .number {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ClashDisplay-Medium';
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #121216;
}

.help-you-section .number-box .content {
    width: calc(100% - 80px);
    border-left: 1px solid #CFC0B1;
    padding-left: 25px;
}

.help-you-section .number-box .content h6 {
    margin: 5px 0;
    padding: 0;
}

.help-you-section .number-box .content p {
    margin: 5px 0;
    padding: 0;
}

@media only screen and (max-width:760px) {
    .help-you-section {
        padding: 25px 0;
    }

    .help-you-section .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .help-you-section article {
        width: 100%;
    }

    .help-you-section aside {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .help-you-section .container {
        gap: 30px;
    }

    .help-you-section article {
        width: 50%;
    }

    .help-you-section aside {
        width: 50%;
    }
}

.testimonials-section {
    padding: 100px 15px;
}

.testimonials-section section {
    margin: 0 auto;
    padding: 30px;
    max-width: 1170px;
    min-height: 450px;
    background: #FFFFFF;
    border: 1px solid #E7DACE;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section section aside {
    width: 35%;
    min-height: 390px;
    background: url(../img/ellipse5.svg) no-repeat center/cover;
}

.testimonials-section section article {
    width: 65%;
    padding: 0 70px;
}

.sin-testiImage img {
    width: 54px;
    height: 54px;
    transform: scale(1, 1);
    transition: all 1s;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    margin: 15px auto;
}

.slider-nav .slick-current img {
    transform: scale(1.5, 1.5);
    transition: all 1s;
    border: 3px solid #FFAA05;
}

.testimonials-section h6 {
    font-family: 'ClashDisplay-Regular';
    padding: 0;
}

.reviews-slider {
    position: relative !important;
}

.reviews-slider .slick-list {
    overflow: inherit !important;
}

.reviews-slider .thumbimg01 {
    position: absolute;
    top: 0;
    left: 0;
}

.reviews-slider .thumbimg02 {
    position: absolute;
    top: 75px;
    left: -100px;
}

.reviews-slider .thumbimg03 {
    position: absolute;
    top: 150px;
    left: 0;
}

.reviews-slider .thumbimg04 {
    position: absolute;
    top: 220px;
    right: -100px;
}

.reviews-slider .thumbimg05 {
    position: absolute;
    top: 300px;
    left: 0;
}

@media only screen and (max-width:760px) {
    .testimonials-section {
        padding: 15px;
    }

    .testimonials-section section {
        flex-wrap: wrap;
    }

    .testimonials-section section aside {
        width: 100%;
        min-height: 100px;
        padding: 10px 0;
    }

    .testimonials-section section article {
        width: 100%;
        padding: 0;
    }

    .reviews-slider .slick-list {
        overflow: hidden !important;
    }

    .reviews-slider .thumbimg01 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg02 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg03 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .reviews-slider .thumbimg04 {
        position: inherit;
        top: auto;
        right: auto;
    }

    .reviews-slider .thumbimg05 {
        position: inherit;
        top: auto;
        left: auto;
    }

    .sin-testiText img {
        height: 25px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .testimonials-section section article {
        padding: 0 0 0 70px;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {}

.lets-talk-section {
    padding: 100px 0;
    background: #F8F2E6 url(../img/ellipse3.svg) no-repeat center;
    position: relative;
    z-index: 1;
    text-align: center;
    background-size: contain;
}

.lets-talk-section::before {
    content: "";
    width: 673px;
    height: 207px;
    background: url(../img/grdn-top.svg) no-repeat top;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.lets-talk-section::after {
    content: "";
    width: 596px;
    height: 189px;
    background: url(../img/grdn-bot.svg) no-repeat top;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.lets-talk-section p {
    margin: 0 auto;
    max-width: 1000px;
}

@media only screen and (max-width:760px) {
    .lets-talk-section {
        padding: 30px 0;
    }

    .lets-talk-section::before {
        display: none;
    }

    .lets-talk-section::after {
        display: none;
    }
}

.our-blog-section {
    padding: 70px 0;
}

.our-blog-section section {
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.our-blog-section section .blog-card {
    width: 30%;
    background-color: #FFFFFF;
    border-radius: 15px;
    position: relative;
}

.our-blog-section section .blog-card figure {
    margin: 0;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    text-align: center;
}

.our-blog-section section .blog-card aside {
    margin: 0;
    padding: 10px 15px;
    width: 100%;
    height: 40px;
    background-color: #F9E9CD;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    right: -15px;
}

.our-blog-section section .blog-card aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-blog-section section .blog-card aside ul li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: #222228;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.our-blog-section section .blog-card article {
    padding: 15px 15px 30px 15px;
}

.our-blog-section section .blog-card article h6 {
    font-family: 'ClashDisplay-Semibold';
    font-size: 18px;
    padding: 0;
}

.our-blog-section section .blog-card .read-more {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    bottom: -25px;
}

.our-blog-section section .blog-card .read-more a {
    width: 50px;
    height: 50px;
    background: url(../img/btn-arrow-hover.svg) no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.our-blog-section section .blog-card .read-more a path {
    fill: #FFFFFF !important;
}

.our-blog-section section .blog-card:hover .read-more a {
    transform: translateY(-15%);
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .our-blog-section {
        padding: 30px 0;
    }

    .our-blog-section section {
        margin: 30px auto;
        flex-wrap: wrap;
        gap: 50px 30px;
    }

    .our-blog-section section .blog-card {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .our-blog-section section {
        flex-wrap: wrap;
        justify-content: center;
    }

    .our-blog-section section .blog-card {
        width: 46%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .our-blog-section section {
        gap: 30px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section .footer-top {
    padding: 50px 0;
    border: 1px solid #CFC0B1;
    border-width: 1px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-section .footer-top article {
    width: 430px;
    position: relative;
}

.footer-section .footer-top article p {
    padding: 1rem 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #222228;
}

.footer-section .footer-top ul.social-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.footer-section .footer-top ul.social-links li {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #374550;
}

.footer-section .footer-top ul.social-links li a {
    width: 30px;
    height: 30px;
    color: #374550;
    background-color: #FAF7F4;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
}

.footer-section .footer-top ul.social-links li a:hover {
    background-color: #FFAA05;
    transition: all .4s ease-in-out;
    color: #fff;
}

.footer-section .footer-top aside {
    max-width: calc(100% - 430px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
}

.footer-section .footer-top h4 {
    font-family: 'ClashDisplay-Medium';
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    color: #121216;
    position: relative;
}

.footer-section .footer-top aside ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section .footer-top aside ul li {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #222228;
}

.footer-section .footer-top aside ul li a {
    color: #222228;
    transition: all .4s ease-in-out;
}

.footer-section .footer-top aside ul li a:hover {
    color: #000000;
    transition: all .4s ease-in-out;
}

.footer-section .footer-top aside ul li a.active {
    color: #000000;
    transition: all .4s ease-in-out;
}

.footer-section .footer-bot {
    padding: 30px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: #374550;
}

@media only screen and (max-width:760px) {
    .footer-section .footer-top {
        padding: 30px 0 25px 0;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-section .footer-top article {
        width: 100%;
    }

    .footer-section .footer-top article p {
        font-size: 16px;
    }

    .footer-section .footer-top ul.social-links {
        gap: 10px;
    }

    .footer-section .footer-top aside {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-section .footer-top h4 {
        font-size: 18px;
    }

    .footer-section .footer-top aside ul li {
        margin: 0;
        font-size: 16px;
    }

    .footer-section .footer-bot {
        padding: 15px 0;
        font-size: 16px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section .footer-top {
        flex-wrap: wrap;
    }

    .footer-section .footer-top article {
        width: 100%;
    }

    .footer-section .footer-top aside {
        max-width: 100%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1169px) {
    .footer-section .footer-top aside {
        gap: 50px;
    }
}

/* 	-----------------------------------------------------
    ------------------ Go to top Styles -----------------
    ----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 60px;
    width: 60px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 50%;
    box-shadow: 0px 10px 25px -3px #00000040;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}

@media only screen and (max-width:1170px) {
    .cd-top {
        display: none;
    }
}

/***************************************************
 * Generated by SVG Artista on 1/10/2025, 11:26:59 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-1 {
    -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
    animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-2 {
    -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
    animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-3 {
    -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
    animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-4 {
    -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
    animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-5 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-5 {
    -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
    animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-6 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-6 {
    -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
    animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-7 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-7 {
    -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
    animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-8 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-8 {
    -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-9 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-9 {
    -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
    animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-10 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-10 {
    -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
    animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-11 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-11 {
    -webkit-animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
    animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-fill-12 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-12 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-12 {
    -webkit-animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
    animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-13 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-13 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-13 {
    -webkit-animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
    animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@-webkit-keyframes animate-svg-fill-14 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

@keyframes animate-svg-fill-14 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(11, 35, 64);
    }
}

.svg-elem-14 {
    -webkit-animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
    animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@-webkit-keyframes animate-svg-fill-15 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

@keyframes animate-svg-fill-15 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 170, 5);
    }
}

.svg-elem-15 {
    -webkit-animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
    animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@-webkit-keyframes animate-svg-fill-16 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

@keyframes animate-svg-fill-16 {
    0% {
        fill: transparent;
    }

    100% {
        fill: rgb(255, 255, 255);
    }
}

.svg-elem-16 {
    -webkit-animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
    animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.inner-banner-section {
    position: relative;
    z-index: 1;
}

.inner-banner-section figure {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    min-height: 500px;
    background: url(../img/ellipse.svg) no-repeat 114px/contain;
    overflow: hidden;
}

.inner-banner-section .container {
    padding: 130px 15px 50px 15px;
    display: flex;
    gap: 30px;
}

.inner-banner-section .container article {
    width: calc(100% - 730px);
    position: relative;
}

.inner-banner-section .container aside {
    width: 700px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.inner-banner-section h1 {
    font-family: 'ClashDisplay-Light';
    font-size: 46px;
    font-weight: 300;
    line-height: 1.2;
    color: #121216;
    padding: 10px 0;
}

.inner-banner-section h1 strong {
    font-family: 'ClashDisplay-Regular';
    font-weight: 400;
}

ul.breadcrumb {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}

ul.breadcrumb li {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #222222;
    position: relative;
}

ul.breadcrumb li::after {
    content: "\f054";
    font: var(--fa-font-solid);
    font-size: 12px;
    position: absolute;
    right: -18px;
    top: 10px;
}

ul.breadcrumb li:last-child::after {
    display: none;
}

ul.breadcrumb li a {
    color: #FFAA05;
}

.inner-banner-section .btn-more-info a {
    margin: 0;
    padding: 0;
    width: 100px;
    height: 100px;
    background: url(../img/btn-more-info.svg) no-repeat center;
    font-size: 24px;
    color: #FFFFFF;
    display: block;
    position: absolute;
    bottom: 50px;
    right: -50px;
}

@media only screen and (max-width:760px) {
    .inner-banner-section figure {
        min-height: 500px;
        background-size: cover;
        background-position: center;
        animation-play-state: paused !important;
    }

    .inner-banner-section .container {
        padding: 100px 15px 50px 15px;
        flex-wrap: wrap-reverse;
        gap: 10px;
    }

    .inner-banner-section .container article {
        width: 100%;
    }

    .inner-banner-section .container aside {
        width: 100%;
    }

    .inner-banner-section h1 {
        font-size: 30px;
        width: calc(100% - 120px);
    }

    .inner-banner-section .btn-more-info a {
        right: 0;
        bottom: 0;
    }

    ul.breadcrumb {
        margin: 0;
    }

    ul.breadcrumb li {
        font-size: 16px;
    }

    ul.breadcrumb li::after {
        top: 8px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .inner-banner-section figure {
        animation-play-state: paused !important;
        background-size: cover;
        background-position: center;
    }

    .inner-banner-section .container {
        flex-wrap: wrap-reverse;
    }

    .inner-banner-section .container article {
        width: 100%;
    }

    .inner-banner-section .container aside {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .inner-banner-section .btn-more-info a {
        right: 0;
        bottom: 0;
    }

    ul.breadcrumb {
        margin: 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
    .inner-banner-section figure {
        animation-play-state: paused !important;
        background-size: cover;
        background-position: center;
    }
}

.welcome-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.welcome-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.welcome-section figure {
    margin: 0;
    padding: 20px 30px;
    width: 50%;
    background-color: #FFFFFF;
    border-radius: 20px;
    text-align: center;
}

.welcome-section figure img {
    margin: 10px auto;
}

.welcome-section article {
    width: 50%;
}

@media only screen and (max-width:760px) {
    .welcome-section {
        padding: 30px 0;
    }

    .welcome-section .container {
        flex-wrap: wrap-reverse;
        gap: 15px;
    }

    .welcome-section figure {
        margin: 0;
        padding: 10px 20px;
        width: 100%;
    }

    .welcome-section article {
        width: 100%;
    }
}

.vision-mission-section .vision,
.vision-mission-section .mission {
    display: flex;
    position: relative;
    z-index: 1;
}

.vision-mission-section .vision figure {
    width: 50%;
    padding: 0 100px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vision-mission-section .vision figure::before {
    content: "";
    width: 45%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    left: 0;
}

.vision-mission-section .mission figure {
    width: 50%;
    padding: 0 0 0 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vision-mission-section .mission figure::before {
    content: "";
    width: 45%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    right: 0;
}

.vision-mission-section .vision article,
.vision-mission-section .mission article {
    width: 50%;
    padding: 20px 50px;
}

.vision-mission-section .vision article div,
.vision-mission-section .mission article div {
    max-width: 400px;
}

.vision-mission-section .mission article {
    display: flex;
    justify-content: flex-end;
}

.vision-mission-section .vision::before {
    content: "";
    height: 50%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.vision-mission-section .vision::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.vision-mission-section .mission::before {
    content: "";
    height: 50%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.vision-mission-section .mission::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

@media only screen and (max-width:760px) {
    .vision-mission-section .vision {
        flex-wrap: wrap-reverse;
    }

    .vision-mission-section .mission {
        flex-wrap: wrap;
    }

    .vision-mission-section .vision figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .vision-mission-section .vision figure img {
        width: 112px;
        height: 112px;
    }

    .vision-mission-section .vision figure::before {
        width: 50px;
        top: 63px;
    }

    .vision-mission-section .mission figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .vision-mission-section .mission figure img {
        width: 112px;
        height: 112px;
    }

    .vision-mission-section .mission figure::before {
        width: 50px;
        top: 63px;
        right: auto;
        left: 0;
    }

    .vision-mission-section .vision article {
        width: 100%;
        padding: 0 0 10px 50px;
    }

    .vision-mission-section .mission article {
        width: 100%;
        padding: 10px 0 0 50px;
    }

    .vision-mission-section .vision article div,
    .vision-mission-section .mission article div {
        max-width: 100%;
    }

    .vision-mission-section .mission article {
        display: flex;
        justify-content: flex-end;
    }

    .vision-mission-section .vision::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .vision-mission-section .vision::after {
        left: 25px;
        top: 50px;
    }

    .vision-mission-section .mission::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .vision-mission-section .mission::after {
        left: 25px;
        top: 50px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .vision-mission-section .vision article {
        padding: 0 50px 0 0 !important;
    }

    .vision-mission-section .mission article {
        padding: 0 0 0 50px !important;
    }

    .vision-mission-section .vision figure {
        padding: 0 !important;
    }

    .vision-mission-section .mission figure {
        padding: 0 !important;
    }
}

.why-choose-section {
    padding: 100px 0;
}

.why-choose-section section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-section section .icon-content-box {
    padding: 1px;
    width: 30%;
    background: linear-gradient(231.61deg, #FFFFFF 10.92%, #FFBB00 51.32%, #FFFFFF 91.72%);
    border: none;
    border-radius: 30px;
}

.why-choose-section section .icon-content-box article {
    padding: 30px;
    width: 100%;
    min-height: 330px;
    background-color: #FFFFFF;
    border-radius: 30px;
    text-align: center;
}

.why-choose-section section .icon-content-box article p {
    padding: 0;
}

@media only screen and (max-width:760px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .why-choose-section section {
        margin-top: 30px;
        gap: 15px;
    }

    .why-choose-section section .icon-content-box {
        padding: 1px;
        width: 100%;
    }

    .why-choose-section section .icon-content-box article {
        padding: 15px;
        width: 100%;
        min-height: inherit;
    }

    .why-choose-section section .icon-content-box article p {
        padding: 0 0 10px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .why-choose-section section .icon-content-box {
        width: 47%;
    }
}

.team-section section {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.team-member {
    width: 25%;
}

.team-member figure {
    margin: 0;
    padding: 0;
    background-color: #F9E9CD;
    border: 1px solid #E7DACE;
    border-radius: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.team-member article {
    padding: 10px;
}

.team-member article p {
    padding: 0 0 15px 0;
}

.team-member article ul.social-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.team-member article ul.social-links li {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
}

.team-member article ul.social-links li a {
    width: 20px;
    height: 20px;
    color: #FFFFFF;
    background-color: #83829C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease-in-out;
}

.team-member article ul.social-links li a:hover {
    color: #FFFFFF;
    background-color: #FFAA05;
    transition: all .4s ease-in-out;
}

@media only screen and (max-width:760px) {
    .team-section section {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .team-member {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .team-section section {
        flex-wrap: wrap;
    }

    .team-member {
        width: 47%;
    }
}

.breadcrumb-section {
    margin-top: 110px;
    padding: 15px 0;
}

.breadcrumb-section ul.breadcrumb {
    margin: 0;
}

.blog-details-section .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.blog-details-section section {
    width: calc(100% - 420px);
}

.blog-details-section aside {
    width: 360px;
}

.blog-details-section figure {
    padding: 15px;
    text-align: center;
    background-color: #FFFFFF;
    border: 1px solid #E7DACE;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.blog-details-section .meta {
    margin: 0 0 15px 0;
    padding: 10px 15px;
    width: 100%;
    height: 40px;
    background-color: #F9E9CD;
    border: 1px solid #E7DACE;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    position: relative;
}

.blog-details-section .meta ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-details-section .meta ul li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    color: #222228;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.blog-details-section .highlight {
    margin: 10px auto;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 5px solid #FFAA05;
    border-width: 0 5px;
}

.help-form {
    margin-bottom: 30px;
    padding: 20px 30px;
    background-color: #F9E9CD;
    border-radius: 10px;
}

.help-form input[type="text"],
.help-form input[type="email"],
.help-form textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    height: 44px;
    background-color: #FFFFFF;
    border: 1px solid #ACABA2;
    border-radius: 8px;
    font-family: "Outfit", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0%;
    color: #222228;
}

.help-form textarea {
    height: 100px;
    overflow: auto;
    resize: none;
}

.help-form input[type="submit"] {
    margin: 10px 0;
    padding: 12px 25px;
    width: 100%;
    height: auto;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #757584 0%, #121216 50%, #FFAA05 100%);
    border: none;
    border-radius: 10px;
    text-align: center;
    font-family: 'ClashDisplay-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-block;
    transition: 0.5s;
}

.help-form input[type="submit"]:hover,
.help-form input[type="submit"]:focus {
    background-position: right center;
}



@media only screen and (max-width:760px) {
    .breadcrumb-section {
        margin-top: 80px;
    }

    .blog-details-section .container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .blog-details-section section {
        width: 100%;
    }

    .blog-details-section aside {
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .blog-details-section .container {
        gap: 30px;
    }

    .blog-details-section section {
        width: calc(100% - 330px)
    }

    .blog-details-section aside {
        width: 300px;
    }


}

.contact-info-section {
    padding: 100px 0;
}

.contact-info-section .container {
    display: flex;
    text-align: center;
}

.contact-info-section h6 {
    color: #FFAA05;
}

.contact-info-section p {
    padding: 0;
}

.contact-info-section .info-box {
    width: 33.333%;
    padding: 0;
}

.contact-info-section .info-box:nth-child(2) {
    border: 1px solid #A9A9A9;
    border-width: 0 1px;
}

.contact-form-section {
    padding: 0 0 100px 0;
}

.contact-form-section p {
    margin: 0 auto;
    max-width: 1030px;
}

.contact-form-section form {
    margin: 30px auto 0 auto;
    padding: 50px;
    max-width: 1030px;
    background-color: #F9E9CD;
    border: 1px solid #E7DACE;
    border-radius: 10px;
}

.contact-form-section form input[type="text"],
.contact-form-section form input[type="tel"],
.contact-form-section form input[type="email"],
.contact-form-section form textarea {
    margin: 15px 0;
    padding: 10px 0 15px 0;
    width: 100%;
    height: 44px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #434343;
    border-radius: 0;
    font-family: "Outfit", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0%;
    color: #222228;
}

.contact-form-section form textarea {
    height: 100px;
    overflow: auto;
    resize: none;
}

.contact-form-section form input[type="submit"] {
    margin: 15px 0;
    padding: 18px 25px;
    width: 100%;
    height: auto;
    background-size: 200% auto;
    background-image: linear-gradient(to right, #757584 0%, #121216 50%, #FFAA05 100%);
    border: none;
    border-radius: 10px;
    text-align: center;
    font-family: 'ClashDisplay-Medium';
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    cursor: pointer;
    display: inline-block;
    transition: 0.5s;
}

.contact-form-section form input[type="submit"]:hover,
.contact-form-section form input[type="submit"]:focus {
    background-position: right center;
}

@media only screen and (max-width:760px) {
    .contact-info-section {
        padding: 30px 0;
        position: relative;
        z-index: 1;
    }

    .contact-info-section .container {
        flex-wrap: wrap;
    }

    .contact-info-section .info-box {
        width: 100%;
        padding: 25px 0;
    }

    .contact-info-section .info-box:nth-child(2) {
        border: 1px solid #A9A9A9;
        border-width: 1px 0;
    }

    .contact-form-section {
        padding: 0 0 30px 0;
    }

    .contact-form-section form {
        margin: 15px auto 0 auto;
        padding: 20px;
    }
}

.services-section {
    padding: 0 0 100px 0;
}

.services-section .left-icon-content {
    display: flex;
    position: relative;
    z-index: 1;
}

.services-section .left-icon-content figure {
    width: 50%;
    padding: 0 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-section .left-icon-content figure::before {
    content: "";
    width: 35%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    right: 0;
}

.services-section .left-icon-content article {
    width: 50%;
    padding: 20px 0 20px 50px;
}

.services-section .left-icon-content article div {
    max-width: 500px;
}

.services-section .left-icon-content article {
    display: flex;
    justify-content: flex-end;
}

.services-section .left-icon-content::before {
    content: "";
    height: 100%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}

.services-section .left-icon-content::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.services-section .left-icon-content:first-child::before {
    height: 50%;
}

.services-section .right-icon-content {
    display: flex;
    position: relative;
    z-index: 1;
}

.services-section .right-icon-content figure {
    width: 50%;
    padding: 0 50px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-section .right-icon-content figure::before {
    content: "";
    width: 35%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    left: 0;
}

.services-section .right-icon-content article {
    width: 50%;
    padding: 20px 50px 20px 0;
}

.services-section .right-icon-content article div {
    max-width: 500px;
}

.services-section .right-icon-content article {
    display: flex;
    justify-content: flex-start;
}

.services-section .right-icon-content::before {
    content: "";
    height: 100%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.services-section .right-icon-content::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.services-section .right-icon-content:last-child::before {
    height: 50%;
}

@media only screen and (max-width:760px) {
    .services-section .left-icon-content {
        flex-wrap: wrap;
    }

    .services-section .left-icon-content figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .services-section .left-icon-content figure img {
        width: 112px;
        height: 112px;
    }

    .services-section .left-icon-content figure::before {
        width: 50px;
        top: 63px;
        left: 0;
    }

    .services-section .left-icon-content article {
        width: 100%;
        padding: 0 0 10px 50px;
    }

    .services-section .left-icon-content::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .services-section .left-icon-content::after {
        left: 25px;
        top: 50px;
    }

    .services-section .left-icon-content:first-child::before {
        height: 100%;
    }

    .services-section .right-icon-content {
        flex-wrap: wrap-reverse;
    }

    .services-section .right-icon-content figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .services-section .right-icon-content figure img {
        width: 112px;
        height: 112px;
    }

    .services-section .right-icon-content figure::before {
        width: 50px;
        top: 63px;
        right: auto;
        left: 0;
    }

    .services-section .right-icon-content article {
        width: 100%;
        padding: 10px 0 0 50px;
    }

    .services-section .left-icon-content article div,
    .services-section .right-icon-content article div {
        max-width: 100%;
    }

    .services-section .right-icon-content article {
        display: flex;
        justify-content: flex-end;
    }

    .services-section .right-icon-content::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .services-section .right-icon-content::after {
        left: 25px;
        top: 50px;
    }

    .services-section .right-icon-content:last-child::before {
        height: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .services-section .left-icon-content article {
        padding: 0 0 0 30px !important;
    }

    .services-section .right-icon-content article {
        padding: 0 30px 0 0 !important;
    }

    .services-section .left-icon-content figure {
        padding: 0 !important;
    }

    .services-section .right-icon-content figure {
        padding: 0 !important;
    }
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
    .services-section .left-icon-content figure {
        padding: 0 !important;
    }

    .services-section .right-icon-content figure {
        padding: 0 !important;
    }
}

.footer-section .footer-top aside ul li a:hover {
    color: #ffaa05;
}

.services-section {
    padding: 0 0 100px 0;
}

.services-section .left-icon-content {
    display: flex;
    position: relative;
    z-index: 1;
}

.services-section .left-icon-content figure {
    width: 50%;
    padding: 0 0 0 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-section .left-icon-content figure::before {
    content: "";
    width: 35%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    right: 0;
}

.services-section .left-icon-content article {
    width: 50%;
    padding: 20px 0 20px 50px;
}

.services-section .left-icon-content article div {
    max-width: 500px;
}

.services-section .left-icon-content article {
    display: flex;
    justify-content: flex-end;
}

.services-section .left-icon-content::before {
    content: "";
    height: 100%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}

.services-section .left-icon-content::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.services-section .left-icon-content:first-child::before {
    height: 50%;
}

.services-section .right-icon-content {
    display: flex;
    position: relative;
    z-index: 1;
}

.services-section .right-icon-content figure {
    width: 50%;
    padding: 0 50px 0 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-section .right-icon-content figure::before {
    content: "";
    width: 35%;
    border-top: 2px dashed #FFBB00;
    position: absolute;
    top: calc(50% + 13px);
    left: 0;
}

.services-section .right-icon-content article {
    width: 50%;
    padding: 20px 50px 20px 0;
}

.services-section .right-icon-content article div {
    max-width: 500px;
}

.services-section .right-icon-content article {
    display: flex;
    justify-content: flex-start;
}

.services-section .right-icon-content::before {
    content: "";
    height: 100%;
    border-right: 2px dashed #FFBB00;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
}

.services-section .right-icon-content::after {
    content: "";
    width: 26px;
    height: 26px;
    background-color: #FFBB00;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 0);
}

.services-section .right-icon-content:last-child::before {
    height: 50%;
}

@media only screen and (max-width:760px) {
    .services-section .left-icon-content {
        flex-wrap: wrap;
    }

    .services-section .left-icon-content figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .services-section .left-icon-content figure img {
        width: 112px;
        height: 112px;
    }

    .services-section .left-icon-content figure::before {
        width: 50px;
        top: 63px;
    }

    .services-section .left-icon-content article {
        width: 100%;
        padding: 0 0 10px 50px;
    }

    .services-section .left-icon-content::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .services-section .left-icon-content::after {
        left: 25px;
        top: 50px;
    }

    .services-section .left-icon-content:first-child::before {
        height: 100%;
    }

    .services-section .right-icon-content {
        flex-wrap: wrap-reverse;
    }

    .services-section .right-icon-content figure {
        width: 100%;
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }

    .services-section .right-icon-content figure img {
        width: 112px;
        height: 112px;
    }

    .services-section .right-icon-content figure::before {
        width: 50px;
        top: 63px;
        right: auto;
        left: 0;
    }

    .services-section .right-icon-content article {
        width: 100%;
        padding: 10px 0 0 50px;
    }

    .services-section .left-icon-content article div,
    .services-section .right-icon-content article div {
        max-width: 100%;
    }

    .services-section .right-icon-content article {
        display: flex;
        justify-content: flex-end;
    }

    .services-section .right-icon-content::before {
        left: 25px;
        top: 0;
        height: 100%;
    }

    .services-section .right-icon-content::after {
        left: 25px;
        top: 50px;
    }

    .services-section .right-icon-content:last-child::before {
        height: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .services-section .left-icon-content article {
        padding: 0 0 0 30px !important;
    }

    .services-section .right-icon-content article {
        padding: 0 30px 0 0 !important;
    }

    .services-section .left-icon-content figure {
        padding: 0 !important;
    }

    .services-section .right-icon-content figure {
        padding: 0 !important;
    }
}

@media only screen and (min-width:1024px) and (max-width:1200px) {
    .services-section .left-icon-content figure {
        padding: 0 !important;
    }

    .services-section .right-icon-content figure {
        padding: 0 !important;
    }
}

.services-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-list ul li {
    margin: 15px 0;
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

.services-list ul li .logo {
    width: 70px;
    height: 70px;
}

.services-list ul li .heading {
    width: calc(100% - 140px);
    font-family: 'ClashDisplay-Medium';
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #121216;
}

.services-list ul li .heading span {
    color: #F49A02;
}

.services-list ul li .link {
    width: 30px;
    height: 30px;
}