/* 1. Fonts  */

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* 2. Body and Some General Stuff */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Be Vietnam Pro', sans-serif;
}

main {
    background-image: url("../img/icons/bg-lines.svg");
    background-position: center;
}

:root {
    --black-color: #000;
    --white-color: #FFFFFF;
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

#magicMouseCursor {
    width: 15px !important;
    height: 15px !important;
    background: rgb(29, 192, 248);
    animation: colors 5s infinite;
    transform: translate(-50%, -50%);
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(29, 192, 248);
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #eff1f2;
    box-shadow: inset 0 0 6px #eff1f2;
}

::selection {
    color: #fff;
    background: #1c9dea;
}

/* 3. Header */

.header {
    padding: 15px 40px 15px 125px;
}

.header .navbar .navbar-toggler {
    padding: 0;
    border: none;
}

.header .navbar .navbar-toggler:focus-visible,
.header .navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.header .offcanvas {
    border: none;
}

.header .offcanvas .offcanvas-header {
    justify-content: end;
}

.header .offcanvas .offcanvas-body .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 10px 20px;
}

.header .offcanvas .offcanvas-body .navbar-nav .nav-item:last-child {
    padding-right: 0;
}

.header .offcanvas .offcanvas-body .navbar-nav .nav-link-sup {
    font-size: 10px;
    line-height: 1;
    color: var(--black-color);
}

.header .offcanvas .offcanvas-body .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    padding: 0;
}

@media (max-width:991px) {
    .header {
        padding: 12px 20px 12px 20px;
    }

    .header .offcanvas .offcanvas-header .btn-close {
        width: 25px;
        height: 25px;
        border: 1px solid var(--black-color);
        border-radius: 100%;
    }

    .header .offcanvas .offcanvas-body {
        display: flex;
        align-items: center;
    }

    .header .offcanvas .offcanvas-body .navbar-nav {
        margin-left: inherit !important;
    }

    .header .offcanvas .offcanvas-body .navbar-nav .nav-link-sup {
        display: none;
    }

    .header .offcanvas .offcanvas-body .navbar-nav .nav-item {
        text-align: left;
    }
}

@media (max-width:575px) {
    .header {
        padding: 10px;
    }
}

/* 4. Fixed Sidebar */

.sidebar_fixed {
    width: 120px;
    position: fixed;
    height: 100vh;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0 30px 0;
    z-index: 999;
}

.sidebar_fixed .offcanvas {
    width: 400px;
    padding: 80px 30px 0 30px;
    transition: all 0.4s ease-in-out;
}

.sidebar_fixed .offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.sidebar_fixed .offcanvas .offcanvas-body .links_area ul li {
    padding: 15px 0;
}

.sidebar_fixed .offcanvas .offcanvas-body .links_area ul li a {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.sidebar_fixed .offcanvas .offcanvas-body .bottom_content_area h5 {
    font-size: 16px;
    font-weight: 500;
    color: #626974;
    margin-bottom: 30px;
}

.sidebar_fixed .offcanvas .offcanvas-body .bottom_content_area p {
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
}

.sidebar_fixed .company_gmail {
    transform: rotate(270deg);
}

.sidebar_fixed .company_gmail a {
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
}

.sidebar_fixed .scroll-wrapper {
    text-align: center;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.sidebar_fixed .scroll-wrapper:hover {
    transition: opacity 0.3s;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
    opacity: 1;
}

.sidebar_fixed .scroll-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--black-color);
    transform: rotate(270deg);
    padding: 20px;
}

.sidebar_fixed .scroll-line {
    height: 100px;
    width: 1px;
    display: inline-block;
    background-color: black;
}

.sidebar_fixed .scroll-button-circle {
    display: inline-block;
    cursor: pointer;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: black 2px solid;
}

.sidebar_fixed .scroll-button-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 3px 0 3px;
    border-color: black transparent transparent transparent;
    display: inline-block;
    margin-top: 12px;
}

@media (max-width:991px) {
    .sidebar_fixed {
        display: none;
    }
}

/* 5. Hero Section */

.hero_section {
    padding: 0 40px 15px 125px;
    height: 82vh;
}

.hero_section .fashion-slider-title-text {
    width: 70%;
    margin: 0 auto;
}

@media (max-width:1399px) {
    .hero_section .fashion-slider-title-text {
        font-size: 55px;
    }
}

@media (max-width:1199px) {
    .hero_section .fashion-slider-title-text {
        font-size: 46px;
        width: 60%;
    }
}

@media (max-width:991px) {
    .hero_section {
        padding: 15px 20px 15px 20px;
        height: 600px !important;
    }
}

@media (max-width:575px) {
    .hero_section {
        padding: 10px 5px 10px 5px;
    }

    .hero_section .fashion-slider-title-text {
        font-size: 34px;
        width: auto;
        letter-spacing: 2px;
    }
}

/* 6. Brands Section */

.brand_section {
    padding: 30px 0 50px 0;
}

@media (max-width:991px) {
    .brand_section {
        padding: 15px 0 10px 0;
    }

    .brand_section .image {
        margin-bottom: 30px;
    }
}

/* 7. Service Section */

.services_section {
    padding: 50px 0 50px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.services_section .top_text {
    padding-bottom: 50px;
}

.services_section .top_text h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--black-color);
    width: 60%;
    margin-bottom: 30px;
}

.services_section .top_text p {
    font-size: 20px;
    font-weight: 400;
    color: #626974;
}

.services_section .service_area .service_box .main_text h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 20px;
}

.services_section .service_area .service_box .bottom_text p {
    font-size: 16px;
    font-weight: 500;
    color: #7A7A7A;
}

.services_section .service_area .service_box .icon_image {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

@media (max-width:1199px) {
    .services_section .top_text h2 {
        font-size: 40px;
        width: 75%;
        margin-bottom: 25px;
    }

    .services_section .top_text p {
        font-size: 18px;
    }
}

@media (max-width:991px) {
    .services_section .top_text h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .services_section .top_text p {
        font-size: 17px;
    }

    .services_section .service_box {
        margin-bottom: 30px;
    }
}

@media (max-width:767px) {
    .services_section .top_text h2 {
        font-size: 30px;
        margin-bottom: 15px;
        width: auto;
    }

    .services_section .top_text p {
        font-size: 16px;
    }
}

@media (max-width:575px) {
    .services_section {
        padding: 49px 0 30px 0;
    }

    .services_section .top_text {
        padding-bottom: 30px;
    }
}

/* 8. About Section */

.about_us_section {
    padding: 80px 0;
}

.about_us_section .left_side_area {
    overflow: hidden;
}

.about_us_section .left_side_area img {
    transition: all 0.5s ease;
}

.about_us_section .left_side_area:hover img {
    transform: scale(1.1);
}

.about_us_section .right_side_area {
    padding: 0 150px 0 0;
}

.about_us_section .right_side_area h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    position: relative;
    margin: 0 0 30px 15px;
}

.about_us_section .right_side_area h5::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: var(--black-color);
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.about_us_section .right_side_area h3 {
    font-size: 30px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 30px;
}

.about_us_section .right_side_area p {
    font-size: 18px;
    font-weight: 500;
    color: #626974;
}

@media (max-width:1650px) {
    .about_us_section .right_side_area {
        padding: 0 15px 0 0;
    }
}

@media (max-width:1199px) {
    .about_us_section .right_side_area h5 {
        margin: 0px 0 15px 15px;
    }

    .about_us_section .right_side_area h3 {
        margin-bottom: 15px;
    }

    .about_us_section .right_side_area p {
        font-size: 17px;
    }
}

@media (max-width:991px) {
    .about_us_section {
        padding: 30px 0;
    }

    .about_us_section .left_side_area {
        margin-bottom: 40px;
    }
}

@media (max-width:767px) {
    .about_us_section {
        padding: 0 0 30px 0;
    }
}

@media (max-width:375px) {
    .about_us_section .right_side_area h3 {
        font-size: 23px;
    }

    .about_us_section .right_side_area p {
        font-size: 16px;
    }
}

/* 9. Grow Bussiness Section */

.grow_bussiness_section {
    padding: 150px 150px 0px 150px;
}

.grow_bussiness_section .row .col-lg-4:nth-child(2) .grow_bussiness_area {
    margin-top: 100px;
}

.grow_bussiness_section .row .col-lg-4:last-child .grow_bussiness_area {
    margin-top: 200px;
}

.grow_bussiness_section .grow_bussiness_area {
    padding: 0 50px;
    position: relative;
}

.grow_bussiness_section .grow_bussiness_area .mobile_text {
    font-size: 150px;
    font-weight: 700;
    color: #eaeaea;
    opacity: 0.5;
    margin: 0;
    display: none;
}

.grow_bussiness_section .grow_bussiness_area h4 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--black-color);
}

.grow_bussiness_section .grow_bussiness_area p {
    font-size: 15px;
    font-weight: 500;
    color: #7A7A7A;
}

.grow_bussiness_section .grow_bussiness_area .outline_text {
    transform: rotate(270deg);
    position: absolute;
    top: -80%;
    right: -8%;
    z-index: -1;
}

.grow_bussiness_section .grow_bussiness_area .outline_text span {
    font-size: 190px;
    font-weight: 700;
    color: #eaeaea;
    opacity: 0.5;
    margin: 0;
}

@media (max-width:1650px) {
    .grow_bussiness_section {
        padding: 50px 100px 50px 100px;
    }

    .grow_bussiness_section .grow_bussiness_area {
        padding: 0 40px;
    }
}

@media (max-width:1399px) {
    .grow_bussiness_section {
        padding: 50px 80px 50px 80px;
    }

    .grow_bussiness_section .grow_bussiness_area h4 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .grow_bussiness_section .grow_bussiness_area h4 br {
        display: none;
    }

    .grow_bussiness_section .grow_bussiness_area .outline_text span {
        font-size: 155px;
    }

    .grow_bussiness_section .grow_bussiness_area .outline_text {
        top: -73%;
    }

    .grow_bussiness_section .grow_bussiness_area {
        padding: 0 5px;
    }
}

@media (max-width:991px) {
    .grow_bussiness_section {
        padding: 0px 0px 20px 0px;
    }

    .grow_bussiness_section .grow_bussiness_area .mobile_text {
        display: block;
    }

    .grow_bussiness_section .grow_bussiness_area .outline_text {
        display: none;
    }

    .grow_bussiness_section .row .col-lg-4:nth-child(2) .grow_bussiness_area {
        margin-top: 0px;
    }

    .grow_bussiness_section .row .col-lg-4:last-child .grow_bussiness_area {
        margin-top: 0px;
    }
}

/* 9. Grow Bussiness Section */

.scrolling_section .marquee {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
}

.scrolling_section .marquee .marquee-wrapper {
    width: 100000px;
    animation: marqueeAnimation 40s linear 0s infinite running;
}

.scrolling_section .marquee h3 .marquee-title {
    font-size: 180px;
    font-weight: 600;
    margin-right: 20px;
    float: left;
    color: var(--black-color);
}

@keyframes marqueeAnimation {
    100% {
        transform: translateX(-2738px);
    }
}

.scrolling_section .marquee2 {
    width: 100%;
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
}

.scrolling_section .marquee2 .marquee-wrapper {
    width: 100000px;
    animation: marqueeAnimation2 40s linear 0s infinite reverse;
}

.scrolling_section .marquee2 h3 .marquee-title {
    font-size: 180px;
    font-weight: 600;
    margin-right: 20px;
    float: left;
}

.scrolling_section .text-stroke-black {
    color: transparent;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #7A7A7A;
}

@keyframes marqueeAnimation2 {
    100% {
        transform: translateX(-3350px);
    }
}

@media (max-width:1199px) {

    .scrolling_section .marquee h3 .marquee-title,
    .scrolling_section .marquee2 h3 .marquee-title {
        font-size: 110px;
    }

    @keyframes marqueeAnimation {
        100% {
            transform: translateX(-1673px);
        }
    }

    @keyframes marqueeAnimation2 {
        100% {
            transform: translateX(-2036px);
        }
    }
}

@media (max-width:575px) {

    .scrolling_section .marquee h3 .marquee-title,
    .scrolling_section .marquee2 h3 .marquee-title {
        font-size: 70px;
    }

    @keyframes marqueeAnimation {
        100% {
            transform: translateX(-1064px);
        }
    }

    @keyframes marqueeAnimation2 {
        100% {
            transform: translateX(-1296px);
        }
    }

    .scrolling_section .marquee,
    .scrolling_section .marquee2 {
        padding: 7px 0;
    }
}

/* 10. Case Studio Section */

.case_studio_section {
    padding: 100px 0;
}

.case_studio_section .top_text {
    margin-bottom: 40px;
}

.case_studio_section .top_text h5 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--black-color);
    text-align: center;
}

.case_studio_section .top_text p {
    font-size: 17px;
    font-weight: 500;
    color: #626974;
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

.case_studio_section .button_area {
    margin-bottom: 50px;
}

.case_studio_section .button_area button {
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
    background: transparent;
    border: none;
    outline: none;
    margin: 0 40px 0 0;
}

.case_studio_section .collection_list .ios_apps,
.case_studio_section .collection_list .web_development,
.case_studio_section .collection_list .android_apps {
    height: 280px;
}

.case_studio_section .button_area .active-filter-btn {
    color: rgb(29, 192, 248);
}

.case_studio_section .collection_list .collection_img_box .image {
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.case_studio_section .collection_list .collection_img_box .image:hover img {
    transform: scale(1.1);
}

.case_studio_section .collection_list .collection_img_box .image img {
    border-radius: 10px;
    transition: all 0.5s ease;
}

.case_studio_section .collection_list .collection_img_box {
    margin-bottom: 40px;
}

.case_studio_section .collection_list .collection_img_box .text h5 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
}

.case_studio_section .collection_list .collection_img_box .text p {
    font-size: 17px;
    font-weight: 500;
    color: #7A7A7A;
}

@media (max-width:1199px) {
    .case_studio_section .top_text p {
        width: 50%;
    }
}

@media (max-width:991px) {
    .case_studio_section {
        padding: 50px 0;
    }

    .case_studio_section .top_text h5 {
        font-size: 37px;
        margin-bottom: 25px;
    }

    .case_studio_section .top_text p {
        width: 65%;
    }

    .case_studio_section .collection_list .ios_apps,
    .case_studio_section .collection_list .web_development,
    .case_studio_section .collection_list .android_apps {
        height: 220px;
    }

}

@media (max-width:767px) {

    .case_studio_section .collection_list .ios_apps,
    .case_studio_section .collection_list .web_development,
    .case_studio_section .collection_list .android_apps {
        height: 240px;
    }

}

@media (max-width:575px) {
    .case_studio_section {
        padding: 30px 0;
    }

    .case_studio_section .top_text {
        margin-bottom: 30px;
    }

    .case_studio_section .button_area button {
        display: block;
        margin: 10px auto;
    }

    .case_studio_section .top_text p {
        width: auto;
    }

    .case_studio_section .top_text h5 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .case_studio_section .collection_list .collection_img_box .image {
        margin-bottom: 15px;
    }

    .case_studio_section .collection_list .collection_img_box .image img {
        min-height: 150px;
        object-fit: cover;
    }

    .case_studio_section .collection_list .collection_img_box .text h5 {
        font-size: 17px;
    }

    .case_studio_section .collection_list .collection_img_box .text p {
        font-size: 15px;
    }

    .case_studio_section .collection_list .collection_img_box {
        margin-bottom: 30px;
    }

    .case_studio_section .button_area {
        margin-bottom: 40px;
    }
}

/* 11. Testimonial Section */
/* 
.testimonial_section .left_side_area h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    position: relative;
    margin: 0 0 30px 15px;
}

.testimonial_section .left_side_area h5::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 2px;
    background: var(--black-color);
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
}

.testimonial_section .left_side_area h4 {
    font-size: 28px;
    font-weight: 600;
    color: var(--black-color);
}

.testimonial_section .right_side_area .top_area {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial_section .right_side_area .top_area .left_side .image {
    width: 76px;
    height: 76px;
    border-radius: 100%;
    margin-right: 20px;
}

.testimonial_section .right_side_area .top_area .right_side h6 {
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color);
}

.testimonial_section .right_side_area .top_area .right_side button {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    background-color: rgba(0, 0, 0, .1);
    border: none;
    outline: none;
    padding: 2px 10px;
    border-radius: 3px;
}

.testimonial_section .right_side_area .bottom_area p {
    font-size: 20px;
    font-weight: 500;
    line-height: 34px;
    color: var(--black-color);
}

@media (max-width:991px) {
    .testimonial_section .left_side_area h4 {
        font-size: 22px;
    }

    .testimonial_section .left_side_area h5 {
        margin: 0px 0 20px 15px;
    }

    .testimonial_section .right_side_area .top_area .left_side .image {
        width: 65px;
        height: 65px;
    }

    .testimonial_section .right_side_area .bottom_area p {
        font-size: 18px;
        line-height: 29px;
    }
}


@media (max-width:767px) {
    .testimonial_section .right_side_area .top_area {
        justify-content: center;
    }

    .testimonial_section .left_side_area {
        margin-bottom: 30px;
    }
}

@media (max-width:575px) {
    .testimonial_section .left_side_area h4 {
        font-size: 18px;
    }

    .testimonial_section .right_side_area .bottom_area p {
        font-size: 17px;
        line-height: 27px;
    }
} */

.testimonial_section {
    padding-bottom: 100px;
}

.testimonial_section .head {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial_section .head h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--black-color);
    text-align: center;
}

.testimonial_section .head p {
    font-size: 17px;
    font-weight: 500;
    color: #626974;
    margin: 0 auto;
    text-align: center;
}

.testimonial_section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    padding: 30px 0;
}

.testimonial_section .thumbnail {
    width: 150px;
    height: 150px;
    position: relative;
    flex-shrink: 0;
}

.testimonial_section .thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(2);
    transition: transform .5s;
}

.testimonial_section .swiper-slide-active .thumbnail img {
    transform: scale(1);
}

.testimonial_section .thumbnail::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: calc(100% + 30px);
    height: calc(100% + 10px);
    background: linear-gradient(90deg, rgba(13, 74, 214, 0.7) 10%, rgba(29, 192, 248, 1)100%);
    border-radius: 50%;
    z-index: -1;
    box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
    transition: border-radius .5s .3s;
    background-size: 600% 100%;
    animation: gradient 3s linear infinite;
    animation-direction: alternate;
}

@keyframes gradient {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}

.testimonial_section .swiper-slide-active .thumbnail::before {
    border-radius: 33% 67% 50% 50% / 50% 14% 86% 50%;
}

.testimonial_section .aside {
    position: relative;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.testimonial_section .aside>p {
    position: relative;
    line-height: normal;
    opacity: 0;
    transform: translateX(10%);
    transition: transform 1s, opacity 1s;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-color);
    padding: 50px 0;
    margin: 0;
}

.testimonial_section .swiper-slide-active .aside>p {
    transform: translateX(0);
    opacity: 1;
}

.testimonial_section .aside>p::before,
.testimonial_section .aside>p::after {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    color: #ced6e0;
    height: 40px;
    z-index: -1;
}

.testimonial_section .aside>p::before {
    content: open-quote;
    top: -20px;
    left: 10px;
}

.testimonial_section .aside>p::after {
    content: close-quote;
    right: 0;
    bottom: -20px;
}

.testimonial_section .aside .name {
    position: relative;
    width: fit-content;
    line-height: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 1s .2s, opacity 1s .3s;
}

.testimonial_section .swiper-slide-active .name {
    transform: translateX(0);
    opacity: 1;
}

.testimonial_section .aside .name h4 {
    color: rgb(29, 192, 248);
    opacity: .8;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial_section .aside .name button {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    background-color: rgba(0, 0, 0, .1);
    border: none;
    outline: none;
    padding: 6px 10px;
    border-radius: 3px;
}

.testimonial_section :is(.swiper-button-next, .swiper-button-prev) {
    background-color: #ced6e0;
    top: 35%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background-color .3s;
    box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
}

.testimonial_section :is(.swiper-button-next, .swiper-button-prev):hover {
    background: linear-gradient(90deg, rgba(13, 74, 214, 0.7) 10%, rgba(29, 192, 248, 1)100%);
}

.testimonial_section :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.testimonial_section .swiper-pagination {
    position: relative;
}

.testimonial_section .swiper-pagination span {
    background-color: #ced6e0;
    transition: width .3s;
    opacity: 1;
}

.testimonial_section .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
    background-color: rgb(29, 192, 248);
}

@media screen and (min-width:992px) {
    .testimonial_section .wrapper {
        flex-direction: row;
        padding: 0 100px 80px 100px;
    }

    .testimonial_section .thumbnail {
        width: 200px;
        height: 200px;
    }

    .testimonial_section :is(.swiper-button-next, .swiper-button-prev) {
        top: 50%;
    }
}

@media (max-width:991px) {
    .testimonial_section {
        padding-bottom: 50px;
    }

    .testimonial_section .wrapper {
        gap: 0;
    }

    .testimonial_section :is(.swiper-button-next, .swiper-button-prev) {
        top: 22%;
    }

    .testimonial_section .head h3 {
        font-size: 37px;
    }
}

@media (max-width:575px) {
    .testimonial_section {
        padding-bottom: 30px;
    }

    .testimonial_section .head h3 {
        font-size: 30px;
    }
}

/* 12. Latest News Section */

.latest_news_section {
    padding: 80px 0;
}

.latest_news_section .top_text {
    margin-bottom: 40px;
}

.latest_news_section .top_text h4 {
    font-size: 40px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 20px;
    text-align: center;
}

.latest_news_section .top_text p {
    font-size: 17px;
    font-weight: 500;
    color: #7A7A7A;
    width: 40%;
    margin: 0 auto;
    text-align: center;
}

.latest_news_section .news_box {
    margin-bottom: 40px;
}

.latest_news_section .news_box .iamge {
    overflow: hidden;
}

.latest_news_section .news_box .iamge img {
    transition: all 0.5s ease;
}

.latest_news_section .news_box .iamge:hover img {
    transform: scale(1.1);
}

.latest_news_section .news_box .text_area h6 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    display: inline-block;
    color: var(--white-color);
    background: var(--black-color);
}

.latest_news_section .news_box .text_area h5 {
    font-size: 22px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 10px;
}

.latest_news_section .news_box .text_area p {
    font-size: 18px;
    font-weight: 500;
    color: #7A7A7A;
}

@media (max-width:991px) {
    .latest_news_section {
        padding: 60px 0;
    }

    .latest_news_section .top_text h4 {
        font-size: 35px;
        margin-bottom: 16px;
    }

    .latest_news_section .top_text p {
        width: 61%;
    }
}

@media (max-width:767px) {
    .latest_news_section {
        padding: 40px 0;
    }

    .latest_news_section .news_box .text_area h6 {
        margin: 15px 0;
    }

    .latest_news_section .news_box .text_area h5 {
        font-size: 19px;
    }

    .latest_news_section .news_box .text_area p {
        font-size: 15px;
    }

    .latest_news_section .top_text p {
        width: 85%;
    }
}

@media (max-width:575px) {
    .latest_news_section {
        padding: 30px 0;
    }

    .latest_news_section .top_text h4 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .latest_news_section .top_text p {
        width: auto;
        font-size: 15px;
    }

    .latest_news_section .top_text {
        margin-bottom: 30px;
    }
}

/* 13. Contact Us Section */

.contact_us_section {
    padding-bottom: 100px;
}

.contact_us_section .top_text h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--black-color);
    text-align: center;
}

.contact_us_section .line {
    width: 100%;
    border: 1px solid var(--black-color);
}

.contact_us_section .icon {
    color: var(--black-color);
    display: none;
}

.contact_us_section .first_side p,
.contact_us_section .second_side p,
.contact_us_section .third_side p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #7A7A7A;
}

.contact_us_section .first_side h5,
.contact_us_section .second_side h5,
.contact_us_section .third_side h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black-color);
    word-break: break-all;
}

@media (max-width:991px) {

    .contact_us_section .first_side h5,
    .contact_us_section .second_side h5,
    .contact_us_section .third_side h5 {
        font-size: 17px;
    }

    .contact_us_section {
        padding-bottom: 60px;
    }
}

@media (max-width:575px) {
    .contact_us_section {
        padding-bottom: 40px;
    }

    .contact_us_section .line {
        display: none;
    }

    .contact_us_section .first_side p,
    .contact_us_section .second_side p,
    .contact_us_section .third_side p {
        text-align: center;
    }

    .contact_us_section .first_side h5,
    .contact_us_section .second_side h5,
    .contact_us_section .third_side h5 {
        text-align: center;
    }

    .contact_us_section .icon {
        display: block;
        text-align: center;
    }
}

/* 14. Footer */

.footer {
    background: linear-gradient(
        90deg,
        rgba(255, 140, 0, 0.8) 10%,   /* deep orange */
        rgba(255, 200, 120, 1) 100%  /* kulfi light orange */
    );
}

.footer .top_area {
    padding: 100px 0;
}

.footer .top_area .left_side h2 {
    font-size: 65px;
    font-weight: 500;
    color: var(--white-color);
}

.footer .top_area .right_side {
    display: flex;
    align-items: center;
}

.footer .top_area .right_side .text h4 {
    font-size: 24px;
    font-weight: 500;
    color: var(--white-color);
    line-height: 35px;
}

.footer .top_area .right_side .text a {
    color: var(--white-color);
    text-decoration: underline;
}

.footer .bottom_area {
    padding-bottom: 100px;
}

.footer .bottom_area .menu_area .top_text h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer .bottom_area .menu_area ul li {
    margin: 10px 0;
}

.footer .bottom_area .menu_area ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
}

@media (max-width:1199px) {
    .footer .top_area .left_side h2 {
        font-size: 50px;
    }

    .footer .top_area {
        padding: 70px 0;
    }

    .footer .bottom_area {
        padding-bottom: 70px;
    }
}

@media (max-width:991px) {
    .footer .top_area .left_side h2 {
        text-align: center;
        font-size: 40px;
        margin-bottom: 30px;
    }

    .footer .top_area .right_side .text h4 {
        font-size: 22px;
        line-height: 33px;
    }
}

@media (max-width:767px) {
    .footer .top_area .left_side h2 {
        font-size: 33px;
        margin-bottom: 20px;
    }

    .footer .top_area .right_side .text h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .footer .top_area {
        padding: 50px 0;
    }

    .footer .bottom_area {
        padding-bottom: 50px;
    }
}

@media (max-width:575px) {
    .footer {
        background: rgba(13, 74, 214, 0.8) 10%;
    }

    .footer .bottom_area .left_side {
        margin-bottom: 50px;
    }

    .footer .bottom_area .left_side img {
        width: 150px;
    }

    .footer .top_area {
        padding: 30px 0;
    }

    .footer .bottom_area {
        padding-bottom: 30px;
    }
}

@media (max-width:480px) {
    .footer .top_area .left_side h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .footer .top_area .right_side .text h4 {
        font-size: 15px;
        line-height: 22px;
    }
}