/* ROOT */

:root {
    --white: #fff;
    --black: #000;
    --theme--green: #254C5B;
    --theme--gold: #B2A97E;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    scroll-behavior: smooth !important;
    overflow: scroll;
    overflow-x: hidden;
    background: var(--white);
    height: 100vh;
    width: 100%;
    font-family: 'Sora', sans-serif;
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--white);
}

::-moz-selection {
    color: var(--white);
    background: var(--themecolor);
}

::selection {
    color: var(--white);
    background: var(--theme--green);
}

::-webkit-input-placeholder {
    /* Edge */
    color: var(--white);
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--white);
}

 ::placeholder {
    color: var(--white);
}

img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none !important;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

p {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
    padding: 0;
}

.container-lg {
    max-width: 1170px;
    width: 100%;
}

.full__width__container {
    /* max-width: 1366px; */
    width: 100%;
    margin: auto;
}

.padd__60 {
    padding: 80px 0;
}

.padd__30 {
    padding: 30px 0;
}

.padding-50 {
    padding: 50px 0;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++LOADER  ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.loading__bg {
    position: fixed;
    inset: 0 0 0 0;
    background-color: greenyellow;
    opacity: 1;
    z-index: 100000;
    transition: all 600ms ease-out;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++HEADER  ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

header {
    position: relative;
    z-index: 999;
    padding: 20px 0px;
}

.main__navbar.d-flex {
    align-items: center;
    justify-content: space-between;
}

.lrg-logo {
    width: 204px;
    height: 67px;
    background-image: url('../images/index/header/logo.png');
}

.sml-logo {
    width: 204px;
    height: 67px;
    background-image: url('../images/index/header/logo_on_change.png');
    background-position: center;
    background-repeat: no-repeat;
}

.site-header {
    /* initial color  */
    background: transparent;
    transition: all .5s ease-in-out;
    -web-kit-position: sticky;
    position: sticky;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.site-header.is-scrolling {
    opacity: 1;
    background: var(--white);
    padding: 10px 0;
    z-index: 10000;
    position: fixed;
    width: 100%;
}

.site-header.is-scrolling .logo {
    height: 40px;
    width: 100px;
}


/* TOGGLE  */

.site-header .mobile-menu .line-1,
.site-header .mobile-menu .line-2,
.site-header .mobile-menu .line-3 {
    border-color: var(--white) !important;
}

.site-header.is-scrolling .mobile-menu .line-1,
.site-header.is-scrolling .mobile-menu .line-2,
.site-header.is-scrolling .mobile-menu .line-3 {
    border-color: var(--black) !important;
}

.site-header .mobile-menu .line-11,
.site-header .mobile-menu .line-21,
.site-header .mobile-menu .line-31 {
    border-color: var(--black) !important;
}

.site-header.is-scrolling .mobile-menu .line-11,
.site-header.is-scrolling .mobile-menu .line-21,
.site-header.is-scrolling .mobile-menu .line-31 {
    border-color: var(--black) !important;
}
.mobile-menu .line-11,
.mobile-menu .line-21,
.mobile-menu .line-31 {
    border-top: 2.5px solid transparent;
    display: block;
    transition: margin 0.5s, transform 0.5s;
    width: 21px;
}

.mobile-menu .line-21 {
    margin: 10px 0;
    width: 69%;
    margin-left: auto;
}
.mobile-menu .line-11 {
    margin: 1px 0;
    width: 100%;
    margin-left: auto;
}
.mobile-menu.toggle .line-11,
.mobile-menu .mobile-menu.toggle .line-21,
.mobile-menu.toggle .mobile-menu .line-31,
.mobile-menu .mobile-menu.toggle .line-31 {
    transform: rotate(45deg);
}

.mobile-menu.toggle .line-21 {
    margin: -3px 0;
    opacity: 0;
}

.mobile-menu.toggle .line-31 {
    transform: rotate(-45deg);
}

.mobile-menu {
    transition: transform 0.5s;
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

.mobile-menu .line-1,
.mobile-menu .line-2,
.mobile-menu .line-3 {
    border-top: 2.5px solid transparent;
    display: block;
    transition: margin 0.5s, transform 0.5s;
    width: 21px;
}

.mobile-menu .line-2 {
    margin: 7px 0;
    width: 69%;
    margin-left: auto;
}
.mobile-menu .line-1 {
    margin: 1px 0;
    width: 100%;
    margin-left: auto;
}

.mobile-menu.toggle {
    padding: 25px 0;
}

.mobile-menu.toggle .line-1,
.mobile-menu .mobile-menu.toggle .line-2,
.mobile-menu.toggle .mobile-menu .line-3,
.mobile-menu .mobile-menu.toggle .line-3 {
    transform: rotate(45deg);
}

.mobile-menu.toggle .line-2 {
    margin: -3px 0;
    opacity: 0;
}

.mobile-menu.toggle .line-3 {
    transform: rotate(-45deg);
}

#side__menu {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    max-width: 480px;
    padding: 45px 56px;
    width: 100%;
    background-color: var(--theme--green);
    z-index: 110;
    opacity: .7;
    transform: translate(100%, 0px);
    transition: 1s ease-in-out;
}
#side__menu .social__media__icons{
    max-width: 275px;
    margin: 0 auto;
    margin-top: 125px;
}
#side__menu .social__media__icons h5{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

#side__menu .social__media__icons ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
#side__menu .social__media__icons ul li a img {
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
    opacity: 1;
}

#side__menu .social__media__icons ul li:hover a img {
    transform: translateY(-7px);
    opacity: 0.9;
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
}

#side__menu.active {
    transform: translate(0px, 0px);
    transition: 1s ease-in-out;
}

#side__menu .nav__menus .nav__menu__title h5 {
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--white);
    padding-bottom: 60px;
    padding-left: 20px;
}

/* #side__menu .nav__menus .nav__menu__title h5::after {
    content: '';
    max-width: 310px;
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #707070;
    left: 0;
    bottom: 0;
    margin: auto;
} */

#side__menu .nav__menus ul li {
    padding: 18px 0px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.nav__menus ul li:after {
    content: "";
    position: absolute;
    width: 95%;
    left: 19px;
    height: 70%;
    border-bottom: 1px solid #b1b1b178;
}
.nav__menus ul li::before {
    content: "";
    position: absolute;
   width: 15px;
   height: 22px;
   background-image: url("../images/index/header/Icon\ metro-arrow-right.png");
   right: 0px;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: right;
}
#side__menu .nav__menus ul li.active a {
    color: var(--theme--gold);
}
#side__menu .nav__menus ul li{
    max-width: 332px !important;
}
#side__menu .nav__menus ul li a {
    color: var(--white);
    padding-left: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
}

#side__menu .nav__menus ul li a:hover {
    color: var(--theme--gold);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
}
#side__menu .nav__menus ul li a .active {
    color: var(--theme--gold);
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
}
#overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.60);
    z-index: 105;
    display: none;
    transition: 0.3 ease-in-out;
}

#overlay.active {
    display: block;
    transition: 0.3 ease-in-out;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++HOME (INDEX) ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    /* width: 100%;
    height: 100%; */
}

.home__slider__image {
    width: 100%;
    min-height: 766px;
    max-height: 766px;
    background-repeat: no-repeat;
    background-size: cover;
}

.home__banner__swiper {
    position: relative;
    margin-top: -110px;
}

.home__swiper__slider__wrapper .swiper-pagination-bullet {
    font-size: 20px;
    font-family: Sora;
    color: transparent;
    background: transparent !important;
    opacity: 1;
    padding: 20px 0px;
    width: auto;
    text-align: left;
    position: relative;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
}

.home__swiper__slider__wrapper .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 15px;
    background-color: var(--white);
    top: 28px;
    left: 30px;
    margin: 3px;
}
.home__swiper__slider__wrapper .swiper-pagination-bullet:active::after {
    background-color: var(--theme--gold) !important;
}

.home__banner__swiper .swiper-pagination {
    left: calc(100% - 108px);
    transform: translateX(-50%);
    bottom: 53%;
    width: auto;
    display: grid;
}

.home__swiper__slider__wrapper .swiper-pagination-bullet-active {
    color: var(--theme--gold) !important;;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
}
.swiper-pagination-bullet-active::after {
    color: var(--theme--gold) !important;
    background-color: var(--theme--gold);
}
.home__swiper__slider__wrapper .home__slider__image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.home__swiper__slider__wrapper .home__banner__content {
    max-width: 444px;
}

.home__swiper__slider__wrapper .home__banner__content h1 {
    font-family: Sora;
    font-size: 40px;
    line-height: 53px;
    color: var(--white);
    font-weight: 400;
    padding-top: 13px;
    margin-bottom: 50px;
    position: relative;
    z-index: 99;
}
.home__swiper__slider__wrapper .home__banner__content h1::before {
    content: '';
    position: absolute;
    background-image: url('../images/index/banner/back_slash.svg');
    background-repeat: no-repeat;
    background-position: center center;
    left: -27px;
    top: -13px;
    width: 100%;
    max-width: 85px;
    height: 100%;
    max-height: 119px;
    z-index: -1;
}


.home__swiper__slider__wrapper .home__banner__content a.home__contact {
    background-color: var(--theme--gold);
    color: var(--white);
    font-family: Sora;
    font-size: 14px;
    max-width: 150px;
    padding: 15px 35px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.home__swiper__slider__wrapper .home__banner__content a.home__contact:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}


.mouse {
    display: block;
    width: 20px;
    height: 29px;
    border-radius: 20px;
    border: 2px solid var(--white);
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 272px;
    margin: 0 auto;
    z-index: 1000;
    cursor: pointer;
}

.mouse::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 8px;
    position: relative;
    border-radius: 100px;
    background: var(--white);
    animation-name: mouse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    margin: auto;
    inset: 0;
}

@keyframes mouse {
    from {
        top: 0px;
    }
    to {
        top: 6px;
    }
}
.banner__services>.container>.banner__services__slider__wrapper {

    position: relative;
}

.banner__services>.container>.banner__services__slider__wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--white);
    border-radius: 15px;
    width: 100%;
    height: 193px;
    margin: auto;

}

.banner__services .banner__services__slider__wrapper .swiper-slide {
    background-color: transparent;
    padding: 55px 0;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.banner__services .banner__services__slider__wrapper .swiper-slide:hover {
    background-color: var(--theme--gold);
    box-shadow: 0px 0px 0px 1px #b2a97e;

    
}
.banner__services .banner__services__slider__wrapper .swiper-slide:hover .banner__services__slider__content{
    padding-left: 45px;
}

.banner__services .banner__services__slider__wrapper .swiper-slide:hover .banner__services__slider__content p {
    color: var(--white);
}
.banner__services .banner__services__slider__wrapper .swiper-slide:hover #fill__color {
    fill: #fff;
    stroke: #fff;
}
.banner__services .banner__services__slider__wrapper .swiper-slide .banner__services__slider__content {
    padding-left: 35px;
}

.banner__services>.container>.banner__services__slider__wrapper {
    padding: 0 !important;
}



.banner__services__slider .swiper-wrapper .banner__services__slider__content p {
    max-width: 190px;
    font-family: Sora;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-top: 20px;
}

.banner__services>.container {
    max-width: 1228px !important;
}

.banner__services>.container>.banner__services__slider__wrapper {
    background-color: transparent;
    position: relative;
    margin-top: -150px;
    border-radius: 15px;
    z-index: 99;
    padding: 35px;
}

.banner__services .swiper-wrapper .swiper-slide {
    position: relative;
}

.banner__services .swiper-wrapper .swiper-slide::after {
    content: '';
    position: absolute;
    height: 51px;
    width: 1px;
    background-color: var(--black);
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    margin: auto;
    z-index: 1;
}

.banner__services .swiper-wrapper .swiper-slide:last-child:after {
    content: none;
}


/* .banner__services .swiper-wrapper .swiper-slide:last-child:after,
.banner__services .swiper-wrapper .swiper-slide:nth-child(1):after,
.banner__services .swiper-wrapper .swiper-slide:nth-child(2):after {
    content: none;
} */

.banner__services__slider__wrapper .swiper {
    overflow-y: inherit !important;
    overflow-x: clip;
}

.banner__services .swiper-wrapper .swiper-slide:hover::after,
.banner__services .swiper-wrapper .swiper-slide:hover::before {
    content: none;
}
/* .banner__services .banner__services__slider__wrapper .swiper-slide:hover {

box-shadow: 0px 0px 0px 1px #b2a97e;
} */
#fill__color {
    fill: #254c5b;
    stroke: #254c5b;
}



.improve__business__section {
    position: relative;
    margin-top: -76px;
}

.improve__business__section__image img {
    width: 100%;
    max-width: 634px;
    height: 687px;
    object-fit: cover;
    border-radius: 0px 0px 49px 49px;
}

.improve__business__section__content {
    background-color: var(--theme--green);
    max-width: 734px;
    width: 100%;
    border-bottom: 65px solid var(--white);
    position: relative;
}

.improve__business__section__content::before {
    content: '';
    background-image: url('../images/index/home_services/about.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    max-width: 441px;
    width: 100%;
    height: 117px;
    top: 43px;
    left: auto;
    right: 20px;
}

.improve__business__section__content::after {
    content: '';
    background-image: url('../images/index/home_services/slash.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    position: absolute;
    max-width: 199px;
    width: 100%;
    height: 451px;
    bottom: -117px;
    left: auto;
    right: 0px;
}

.improve__business__section__content .title {
    max-width: 563px;
    margin-left: 90px;
    margin-top: 140px;
}

.improve__business__section__content :where(h1,
p,
a) {
    color: var(--white);
    position: relative;
    z-index: 99;
}

.improve__business__section__content .title h1 {
    font-family: Sora;
    font-size: 40px;
    line-height: 53px;
    font-weight: 400;
    padding-top: 25px;
    max-width: 377px;
    position: relative;
}

.improve__business__section__content .title h1::before {
    content: '';
    position: absolute;
    background-image: url(../images/index/banner/back_slash.svg);
    background-repeat: no-repeat;
    background-position: center center;
    left: -180px;
    top: 11px;
    width: 100%;
    max-height: 119px;
    height: 100%;
    max-height: 119px;
    z-index: -1;
}

.improve__business__section__content .title p {
    font-family: Sora;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 471px;
}

.improve__business__section__content .title a {
    font-family: Sora;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--gold);
    text-align: center;
    padding: 16px 36px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.improve__business__section__content .title a:hover {
    color: var(--white);
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

/* .our__brand__section {
    background-image: radial-gradient(circle at center, rgb(255, 255, 255) 0, rgba(255, 255, 255, 0.900), rgba(255, 255, 255, 0.918) 100%), url('../images/index/home_services/background.png');
} */

.our__brand__section .main__title :where(h5,
    h1) {
    position: relative;
    z-index: 9;
}

.our__brand__section .main__title h5 {
    font-family: Sora;
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
    text-align: center;
}

.our__brand__section .main__title h1 {
    font-family: Sora;
    font-size: 40px;
    color: var(--black);
    font-weight: 400;
    text-align: center;
    line-height: 53px;
}

.our__brand__section .main__title h5 {
    position: relative;
}

.our__brand__section .main__title h5::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/index/banner/back_slash.svg');
    background-size: contain;
    margin: auto;
    background-repeat: no-repeat;
    width: 187px;
    height: 188px;
    bottom: -72px;
    left: -98px;
    z-index: 1;
}

.our__brand__section .our__brand__wrapper .brand__logo img {
    width: 94px;
    height: 60px;
    object-fit: cover;
}

.our__brand__section .container>.row {
    margin-top: 60px;
}

.our__brand__section .container>.row .brand__title h2 {
    font-family: Sora;
    color: var(--black);
    font-size: 30px;
    line-height: 40px;
    max-width: 370px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 15px;
}

.our__brand__section .container>.row .brand__title p {
    font-family: Sora;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    max-width: 462px;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #000000;
}

.our__brand__section .container>.row .brand__title a {
    color: var(--theme--green);
    font-family: Sora;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    padding: 18px 35px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.our__brand__section .container>.row .brand__title a:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.our__brand__section .container>.row .can__image img {
    border-radius: 15px;
}

.brand__slider {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0px 6px 36px rgb(0 0 0 / 16%);
    position: relative;
     min-height: 177px; 
    display: flex;
    align-items: center;
    margin-top: 52px;
}

.brand__slider__first .brand__slider__next,
.brand__slider__first .brand__slider__prev {
    position: absolute;
    top: 30%;
    z-index: 99;
    width: 56px;
    height: 56px;
    background-color: var(--theme--gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand__slider__first .brand__slider__next {
    right: -40px;
    
}

.brand__slider__first .brand__slider__prev {
    left: -40px;
}

.brand__slider__first .brand__slider__content img {
    filter: grayscale(100%);
    transition: .5s ease all;
}

.brand__slider__first .brand__slider__content img:hover {
    filter: grayscale(0);
    transition: .5s ease all;
}
.consistent__metrics .main__title h1 {
    font-size: 40px;
    line-height: 53px;
    font-family: Sora;
    font-weight: 400;
    text-align: center;
    max-width: 740px;
    margin: auto;
}

.consistent__metrics .main__title p {
    max-width: 943px;
    font-family: Sora;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin: auto;
    margin-top: 25px;
    text-align: center;
}

.consistent__metrics .main__title p span {
    font-weight: 500;
}

.main__title {
    margin: 45px 0px;
}

.home__map {
    /* height: 0; */
    /* padding-bottom: 550px; */
    min-height: 550px;
    display: block;
    position: relative;
    background-image: url('../images/index/map.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}

.home__map li {
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url('../images/index/map_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    transform: translateX(-1rem)
    /* go backwards 1/2x total width */
    translateY(-2.2rem);
    transition: transform .5s ease-out, background-color .25s ease-out;
}

.one .content,
.two .content,
.three .content,
.four .content,
.five .content,
.six .content,
.seven .content {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.one:hover .content,
.one:hover .content,
.two:hover .content,
.three:hover .content,
.four:hover .content,
.five:hover .content,
.six:hover .content,
.seven:hover .content {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.home__map .content {
    max-width: 190px;
    min-width: 190px;
    position: absolute;
    left: -72px;
    bottom: 44px;
    z-index: 999;
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 16px 32px rgb(0 0 0 / 16%);
    overflow: hidden;
}

.home__map .content img {
    border-radius: 8px;
    width: 190px;
    height: 108;
    object-fit: cover;
}

.home__map .content p {
    color: var(--black);
    font-size: 16px;
    font-family: Sora;
    padding: 10px 0px;
    padding-left: 9px;
}

.counter__section .counter__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 35px 0px 60px 0px;
}

.counter__section .counter__wrapper .item {
    position: relative;
    padding: 0px 20px;
    text-align: left;
    flex: 1 1 105px;
}

.counter__section .counter__wrapper .item::after {
    content: '';
    position: absolute;
    height: 73px;
    width: 1px;
    left: auto;
    right: 9px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #CECECE;
}

.counter__section .counter__wrapper .item:last-child:after {
    content: none;
}

.counter__section .counter__wrapper .item h1 {
    color: var(--theme--gold);
}

.counter__section .counter__wrapper .item span {
    font-family: Sora;
    font-size: 35px;
    color: var(--theme--green);
    font-weight: 700;
    line-height: 47px;
}

.counter__section .counter__wrapper .item p {
    font-family: Sora;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    line-height: 27px;
}

.counter__section {
    position: relative;
}

.counter__section::after {
    content: '';
    position: absolute;
    width: 176px;
    height: 437px;
   
    right: 0px;
     background-image: url(../images/index/slash01.png);
    background-repeat: no-repeat;
    left: auto;
    bottom: -250px;
    right: -4px;
    background-size: contain;
    background-position: right;
    z-index: 1;
}

.event__activities {
    background-image: linear-gradient(rgb(37 76 91 / 51%) 0, rgb(37 76 91 / 98%) 0, rgb(37 76 91 / 90%) 100%), url('../images/index/banner.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 712px;
    padding-top: 45px;
    position: relative;
}
.event__activities::after {
    content: '';
    width: 100%;
    height: 214px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #254c5b, #254c5b00);
    opacity: 1;
    z-index: 99;
}

.event__activities .event__title {
    max-width: 342px;
    width: 100%;
}

.event__activities .event__title h5 {
    font-size: 20px;
    font-weight: 400;
    font-family: Sora;
    color: var(--white);
    line-height: 27px;
    margin-bottom: 25px;
}

.event__activities .event__title h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 53px;
    font-family: Sora;
    color: var(--white);
    margin-bottom: 60px;
}

.event__activities .event__title a {
    font-family: Sora;
    color: var(--white);
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--gold);
    text-align: center;
    padding: 18px 35px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities .event__title a:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities__slider .swiper-wrapper {
    max-height: 650px;
    height: 100%;
}

.event__activities__slider .activity__card {
    background-color: var(--white);
    align-items: center;
    max-width: 573px;
    width: 100%;
    max-height: 200px;
    height: 200px;
    border-radius: 15px;
    border: 1px solid #707070;
    overflow: hidden;
}

.event__activities__slider .activity__card .card__image img {
    height: 200px;
    width: 244px;
    object-fit: cover;
}

.event__activities__slider .activity__card .card__content {
    max-width: 253px;
    width: 100%;
    margin: auto;
}

.event__activities__slider .activity__card .card__content p {
    font-size: 16px;
    font-family: Sora;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 7px;
    color: #000000;
    /* margin-bottom: 25px; */
    font-weight: 500;
}

.event__activities__slider .activity__card .card__content a button {
    font-family: Sora;
    color: var(--theme--green);
    /* width: 150px;
    height: 50px; */
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    text-align: center;
    border-radius: 10px;
    padding: 16px 40px;
    margin-top: 20px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities__slider .activity__card .card__content a button:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities__slider {
    position: relative;
}

.event__activities__slider .swiper-slide.swiper-slide-visible.swiper-slide-next,
.swiper-slide.swiper-slide-visible.swiper-slide-active {
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities__slider .swiper-slide-visible {
    opacity: 0.3;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.event__activities__slider-next,
.event__activities__slider-prev {
    position: absolute;
    left: -100px;
}

.event__activities__slider-next {
    top: 36%;
}
.event__activities__slider-next:hover {
    border-radius: 5px;
}
.event__activities__slider-prev {
    top: 54%;
}
.event__activities__slider-prev:hover {
    border-radius: 5px;
}

.stories__section .full__width__container {
    position: relative;
    padding-top: 65px;
    overflow: hidden;
}

.stories__section .full__width__container::before {
    width: 100%;
    content: '';
    position: absolute;
    background-color: var(--theme--green);
    left: 0;
    right: 0;
    top: 0;
    height: 415px;
}

.stories__slider .title {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 26px rgb(0 0 0 / 16%);
    position: relative;
    margin-top: -8px;
}

.stories__slider {
    padding-bottom: 25px;
    padding-right: 10px;
}

.stories__slider .title h5 {
    font-size: 18px;
    font-family: Sora;
    color: var(--black);
    font-weight: 500;
    line-height: 24px;
}

.stories__slider .title p {
    color: #516870;
    font-family: Sora;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.stories__title__content h5 {
    font-family: Sora;
    color: var(--white);
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
}

.stories__title__content h1 {
    font-family: Sora;
    color: var(--white);
    font-size: 40px;
    line-height: 53px;
    font-weight: 400;
    /* max-width: 291px; */
}

.stories__section .col-md-4 {
    position: relative;
}

.button__wrapper {
    display: flex;
    max-width: 168px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: -8px;
}

.stories__title__content {
    margin-bottom: 180px;
    margin-left: 70px;
}

.award-button-prev {
    transform: rotate(270deg);
}

.award-button-next {
    transform: rotate(90deg);
}
.award-button-prev:hover {

    border-radius: 5px;
}

.award-button-next:hover {
    border-radius: 5px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ABOUT ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.about__banner__wrapper {
    min-height: 400px;
    width: 100%;
    position: relative;
    margin-top: -110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about__banner__wrapper h1 {
    color: var(--white);
    font-family: Sora;
    font-size: 40px;
    font-weight: 400;
}

.improve__business>.container h1.first {
    text-align: center;

    font-size: 40px;
    line-height: 53px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    color: #000;
}

.improve__business>.container p.first__content {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 30px;
    max-width: 1003px;
    margin-top: 20px;
    margin-bottom: 60px;
    color: #000000;
}

.improve__business__content h1 {
    text-align: left;
    font-family: "Sora";
    font-size: 40px;
    line-height: 53px;
    font-weight: 400;
    max-width: 376px;
    margin-bottom: 20px;
    color: #000;
}

.improve__business__content__wrapper.d-flex {
    justify-content: space-between;
}

.improve__business__content {
    max-width: 475px;
    width: 100%;
}

.improve__business__content p {
 
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #000;
}

.improve__business__image__counter__img img {
    max-width: 634px;
    width: 100%;
    height: 481px;
    object-fit: cover;
    border-radius: 25px;
    margin-left: auto;
    display: block;
    margin-right: 0;
    margin-left: 65px;
    box-shadow: 0px 11px 36px rgb(0 0 0 / 16%);
}

.improve__business__image__counter {
    position: relative;
    max-width: 699px;
    width: 100%;
}

.about__first__counter {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 418px;
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 11px 36px rgb(0 0 0 / 16%);
}

.about__first__counter::after {
    content: '';
    position: absolute;
    background-image: url('../images/about/slash.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 107px;
}

.about__first__counter .item span {
    font-family: Sora;
    font-size: 35px;
    font-weight: 700;
    color: var(--theme--green);
}

.about__first__counter .item h1 {
    font-family: Sora;
    font-size: 35px;
    font-weight: 700;
    color: var(--theme--gold);
}

.about__first__counter .item p {
    font-family: Sora;
    font-size: 18px;
    color: var(--black);
    font-weight: 400;
}

.about__brand__title h1 {
    font-family: Sora;
    font-size: 40px;
    color: var(--black);
    font-weight: 400;
    text-align: center;
    line-height: 53px;
}

.about__brand__title h5 {
    font-family: Sora;
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
    text-align: center;
    position: relative;
    z-index: -1;
}
.brand__slider__logo img{
    filter: grayscale(100%);
    transition: .5s ease all;
}
.brand__slider__logo img:hover{
    filter: grayscale(0);
    transition: .5s ease all;
}
.about__brand__title h5::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/index/banner/back_slash.svg);
    background-size: contain;
    margin: auto;
    background-repeat: no-repeat;
    width: 187px;
    height: 188px;
    bottom: -72px;
    left: -111px;
    z-index: 1;
}

.keep__best__section {
    position: relative;
}

.keep__best__section::before {
    content: '';
    position: absolute;
    width: 100%;
    min-height: 372px;
    max-height: 372px;
    height: 100%;
    background-color: var(--theme--green);
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
}

.keep__best__title {
    text-align: center;
    padding-top: 45px;
    max-width: 872px;
    margin: auto;
}

.keep__best__title h1 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}

.keep__best__title p {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
}
.keep__best__card__content img{
    margin: 0px;
}

.keep__best__title :where(h1,
p) {
    color: var(--white);
    font-family: Sora;
}

.keep__best__card__wrapper {
    margin-top: 50px;
}

.keep__best__card__wrapper .item {
    background-color: var(--white);
    border-radius: 20px;
    padding: 23px;
    box-shadow: 0px 8px 46px rgb(0 0 0 / 16%);
}

.keep__best__card__wrapper .item h6 {
    font-size: 18px;
    font-family: Sora;
    font-weight: 600;
    line-height: 26px;
    margin-top: 20px;
}

.keep__best__card__wrapper .item p {
    font-size: 14px;
    font-family: Sora;
    line-height: 23px;
    font-weight: 300;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about__video__section {
    position: relative;
    margin-top: -95px;
    background-image: linear-gradient(rgb(0 0 0 / 70%) 0, rgb(0 0 0 / 81%) 0, rgb(0 0 0 / 61%) 100%), url('../images/about/vdo_banner.png');
    background-attachment: fixed;
    width: 100%;
    min-height: 695px;
    display: grid;
    justify-content: center;
    align-items: center;
}

.about__vdo__content h1 {
    font-family: Sora;
    font-size: 40px;
    font-weight: 400;
    line-height: 53px;
}

.about__vdo__content p {
    font-family: Sora;
    font-size: 14px;
    line-height: 25px;
    font-weight: 300;
    margin-top: 15px;
}

.about__vdo__wrapper {
    max-width: 693px;
    width: 100%;
    margin: auto;
    text-align: center;
    color: var(--white);
    position: relative;
}
.about__vdo__icon {    width: fit-content;
    margin: auto;
}
    .about__vdo__icon a{
        outline:none !important
    }

.about__video__section .wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.about__video__section .wrapper .circle {
    width: 62px;
    height: 62px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--white);
    margin: auto;
    transform: scale(1, 1);
}

.about__video__section .wrapper .circle.pulse {
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    background-color: rgba(255, 255, 255, 0.288);
}

.about__video__section .wrapper svg {
    fill: var(--theme--green);
    stroke: var(--theme--green);
    stroke-linejoin: round;
    stroke-width: 5;
    transition: all 0.3s;
}

.about__video__section .wrapper svg:hover {
    cursor: pointer;
    fill: var(--theme--gold);
    stroke: var(--theme--gold);
    transform: scale(1.1, 1.1);
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

.build__business .build__business__content {
    max-width: 502px;
}

.build__business .build__business__content h1 {
    font-size: 40px;
    font-family: Sora;
    line-height: 53px;
    font-weight: 400;
}

.build__business .build__business__content p {
    font-family: Sora;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 50px;
}

.build__business .build__business__content a {
    color: var(--theme--green);
    font-family: Sora;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    padding: 18px 35px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.build__business .build__business__content a:hover {
    border-radius: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.build__business .build__business__image img {
    border-radius: 10px;
    box-shadow: 0px 13px 43px rgb(0 0 0 / 16%);
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++BRANDS++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.SubBanner {
    height: 400px;
    width: 100%;
    position: relative;
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
    margin-top: -107px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.banner-head {
    color: #fff;
    font-size: 40px;
    line-height: 51px;
    font-weight: 400;
}




.Brand_sec {
    margin-top: 50px;
}

.brand_left {
    max-width: 475px;
    padding-top: 14px;
}

.brand-head-sec {
    max-width: 380px;

}

.brand-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    color: #000000;
    padding-right: 4px;
}

.brand-head {
    color: #000;
    font-size: 40px;
    font-weight: 400;
    max-width: 378px;

}

.sec {
    padding-top: 20px;
}

.brand-right {
    margin-left: 50px;
    max-width: 585px;
    max-height: 481px;
    border-radius: 25px;
    margin-top: -13px;
}

.brand-right img {
    height: 100%;
    width: 100%;
}

.brand_section {
    margin-top: 80px;
}

.our_brand {
    text-align: center;
}

.our_brand h3 {
    font-weight: 400;
    font-size: 20px;
    color: #000000;
}

.our_brand p {
    font-weight: 400;
    font-size: 40px;
    line-height: 51px;
    color: #000000;
}

.brand_wrapper {
    margin-top: 35px;
    margin-bottom: 82px;
}

.wrapper_section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.brand_img {
    width: calc(25% - 18px);
    margin: 25px 9px;
}

.grid_img {
    border-radius: 5px;
    border: 1px solid #C3C3C3;
    text-align: center;
}

.brand_img img {
    max-width: 100%;
}

.grid_img img {
    width: 255px;
    height: auto;
}

.brand_img h5 {
    font-size: 20px;
    line-height: 25px;
    padding-top: 15px;
    margin-bottom: 0;
    font-weight: 400;
    color: #000000;
}

.brand__slider__next:hover {
    border-radius: 5px;
}

.brand__slider__prev:hover {
    border-radius: 5px;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++EVENT++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.OuterSec {
    margin-top: -7rem;
    position: relative;
    z-index: 1;
    max-width: 1174px;
    max-height: 520px;
}

.OuterSec img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.ContentSection {
    /* max-width: 911px; */
    margin: 0 auto;
    padding-top: 3rem;
}

.OuterContent {
    max-width: 1030px;
    margin: 0 auto;
}

.OuterContent h4 {
    font-size: 20px;
    color: #888888;
    font-weight: 500;
    line-height: 45px;
}

.OuterContent h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 45px;
    max-width: 907px;
}

.OuterContent p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}
.parent-swiper .events__card {
    background-color: var(--white);
    align-items: center;
    max-width: 573px;
    width: 100%;
    max-height: 200px;
    height: 200px;
    border-radius: 15px;
   box-shadow: 0px 6px 36px #9D9D9D29;
    overflow: hidden;
}
.parent-swiper  .events__card .card__image img {
    height: 200px;
    width: 244px;
    object-fit: cover;
}

.parent-swiper .events__card .card__content {
    max-width: 253px;
    width: 100%;
    margin: auto;
}

.parent-swiper .events__card .card__content p {
    font-size: 16px;
    font-family: Sora;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 7px;
    color: #000000;
    /* margin-bottom: 25px; */
    font-weight: 500;
}

.parent-swiper .events__card .card__content a button {
    font-family: Sora;
    color: var(--theme--green);
    /* width: 150px;
    height: 50px; */
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    text-align: center;
    border-radius: 10px;
    padding: 16px 40px;
    margin-top: 20px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.parent-swiper .events__card .card__content a button:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}
.inner-section {
    margin-top: 30px;
    margin-bottom: -28px;
}

.Event-right {
    max-width: 517px;
    /* max-height: 296px; */
    border-radius: 15px;
}

.Event-right img {
    height: 100%;
    width: 100%;

}

.OuterContent a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000;
    border-top: 2px solid #C9C9C9;
}

.OuterContent a h5 {
    font-size: 16px;
    text-align: left;
    line-height: 4.1rem;
    padding-left: 12px;
    padding-top: 10px;
}

.ReadMore_section {
    margin-bottom: 100px;
}

.ReadMore_head h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
}


.ReadMore_content {
    height: 250px;
    margin-top: 30px;
}

.ReadMore_content .left,
.right {
    width: 530PX;
    height: 200PX;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0px 6px 36px #9d9d9d29;
}

.inner_sec {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 6px 36px #9d9d9d29;
    background-color: #FFFFFF; */
}

.inner {
    background-color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 573px;
    width: 100%;
    max-height: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0px 6px 36px #9d9d9d29;
    overflow: hidden;
    margin-top: 20px;
}

.inner_sec .LeftImg {
    width: 244px;
    height: 200px;

}

.LeftImg img {
    height: 200px;
    width: 244px;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.LeftContent {
    max-width: 253px;
    width: 100%;
    margin: auto;
}

.r-img img {
    height: 200px;
    width: 244px;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
}

.ReadButton P {
    font-size: 16px;
    font-family: Sora;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1px;
}

.ReadButton button {
    padding: 16px 37px;
    font-size: 15px;
    line-height: 1;
    color: #000;
    border: 1px solid #254C5B;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 25px;
    
    margin-left: 2px;


}

button a {
    font-size: 14px;
    color: #254C5B;
}
.service-grid-content .service_img img{
    margin: 0 auto;
}
.parent-swiper {
    position: relative;
}

.dots {
    display: none;

}

.S-dots {
    display: none;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++SERVICE ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.Service_wrapper {
    padding-top: 60px;
    margin-bottom: 50px;
}

.OurService_content {
    margin-top: 40px;
}

.OurService_content h3 {
    font-size: 40px;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;

}

.OurService_content p {
    padding-top: 20px;
    max-width: 982px;
    text-align: center;
    margin: 0 auto;
    font-weight: 300;
}

.service_box {
    width: calc(33% - 18px);
    margin: 25px 9px;
}

.grid_box {
    box-shadow: 0px 10px 36px #48484829;
    height: 300px;
    text-align: center;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box_contents {
    padding: 64px 54px;
}

.box_contents h5 {
    max-width: 223px;
    font-size: 22px;
    padding-top: 50px;
    line-height: 33px;
    color: #000000;
    font-weight: 600;
}

.box_contents h5:hover {
    color: #254c5b
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++CONTACT ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/


.contact_wrapper {
    display: flex;
    padding: 60px 90px;
    background: #FFFFFF;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-top: -103px;
    margin-bottom: -83px;

}
.contact_wrapper .Left_wraper p{
    max-width: 388px;
    line-height: 28px;
    font-size: 14px;
}

.ContactParent {
    box-shadow: 10px 8px 30px #796F6F1C;
    background-color: red;
    padding: 45px;
    border-radius: 20px;

    display: flex;
}

.contact_address {
    max-width: 337px;
    width: 100%;
    background-color: #254C5B;
    border-radius: 10px;
    padding: 53px 32px;
    margin-top: 50px;
}

.contact_address h3 {
    color: var(--white);
    font-size: 35px;
    font-weight: 400;
    padding-bottom: 17px;
}

.contact_address .d-flex {
    margin-bottom: 15px;
}

.contact_address .d-flex .icon {
    max-width: 20px;
    width: 100%;
    min-width: 20px;
    margin-right: 15px;
}

.contact_address .d-flex .content :where(a, p) {
    color: var(--white);
    font-family: Sora;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    text-align: left;
}
.contact_address .d-flex .content .hov:hover{
    color: var(--theme--gold);
}

.name {
    max-width: 535px;
    margin-left: auto;
    margin-top: 50px;
}
.name .mail{
    margin-bottom: 20px;
}


.name ::placeholder {
    color: #000;
}

.name .main__input {
    width: 100%;
    height: 55px;
    border-radius: 3px;
    outline: none;
    /* margin-bottom: 20px; */
    border: none;
    background: #F7F7F7;
    color: #000000;
    padding: 0px 10px;
    font-family: Sora;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px transparent;
    /* -webkit-transition: all 2s ease 0s; */
}
/* .name .maill{
    margin-top: 20px;
} */

.name textarea {
    min-height: 100px;
    padding-top: 15px;
    resize: none;
    background: #F7F7F7;
    color: #000000;
}
.name .spinnerr{
    position: relative;
}

.Right-wrapper p {
    max-width: 560px;

}

.Left_wraper h2 {
    max-width: 467px;
}

/* .name button {
    background-color: var(--theme--gold);
    color: var(--white);
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-family: Sora;
    font-weight: 400;
    margin-top: 4px;
    -webkit-transition: all 0.5s ease 0s;
} */
.contact__submit {
    background-color: var(--theme--gold);
    color: var(--white);
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-family: Sora;
    font-weight: 400;
    margin-top: 23px;
    -webkit-transition: all 0.5s ease 0s;
}

.contact__submit:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
}
.col-md-12.drp-sect select.main__input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}
.col-md-12.drp-sect{
    position:relative;
    margin-bottom: 20px;
}
.col-md-12.drp-sect::after{
    content: '';
    background-image:url('../images/form__dropdown.png');
    background-repeat: no-repeat;
    background-position: center;
    width: 8px;
    height: 4px;
    position: absolute;
    left: auto;
    right: 28px;
    top: 18px;
}
.col-md-6 .fullname{
    padding-bottom: 20px;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++AWARDS ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.awards {
    margin-top: 60px;
    margin-bottom: 70px;
}

.awards h3 {
    text-align: center;
    font-size: 40px;
}

.awards p {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;

}

.certificate_sec {
    width: 100%;
}

.awd_img {
    max-width: 272px;
    max-height: 400px;
}

.awd_img img {
    width: 100%;
    height: 100%;
}



.img_content {
    box-shadow: 0px 3px 26px #00000029;
    border-radius: 10px;
    text-align: center;
    /* height: auto; */
    padding: 16px 20px;
    margin-top: -10px;
    background-color: #fff;
    position: relative;
}

.img_content h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;

}

.img_content h6 {
    font-size: 15px;
    color: #516870;
    font-weight: 400;
    line-height: 19px;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++AWARDS-DETAILS++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.outer_wrapper_sec .container{
    max-width: 1254px;
}


.bussiness_wrapper {
    padding: 60px 40px;
    background: #FFFFFF;
    margin-top: -4rem;
    z-index: 1;
    position: relative;
    border-radius: 15px;
}



.img_wrapper_sec {
    padding-top: 73px;
}

.img_wrapper_sec h3 {
    text-align: center;
    font-size: 40px;
    max-width: 693px;
    margin: 0 auto;
    font-weight: 400;

}

.img_wrapper_sec p {
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    color: #000000;
    line-height: 26px;
    padding-top: 20px;
}

.img-parent {
    max-width: 1174px;
    max-height: 472px;
    border-radius: 25px;
    margin-top: 45px;
}

.img-parent img {
    height: 472px;
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.ourbrand__services__wrapper {
    padding-top: 40px;
}

.flexBox {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 -1rem;
}

.flexBox__box {
    /* margin: 0 1rem; */
    padding: 20px;
    position: relative;
    
    width: calc(100% / 3 - 2rem);
}

/* .flexBox__box:not(:last-child) {
    border-right: 1px solid #707070;
} */
.flexBox__box::after {
    content: '';
    position: absolute;
    background: #C3C3C3;
    height: 171px;
    width: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.flexBox__box:last-child::after{
   opacity: 0;
}
.flexBox__box a {
    color: #000;
}

.flex-content:hover {
    color: #84181C;
}

.flex-content h5 {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    line-height: 32px;
    max-width: 283px;
}

.flex-content p {
    font-size: 14px;
    line-height: 26px;
    color: #000000;
    font-weight: 300;
}

.discuus-box {
    width: 100%;
    height: 360px;
    background: #254C5B;
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
    z-index: -2;
}

.discuss-content-box {

    margin: 0 auto;
    text-align: center;
    padding-top: 71px;

}

.discuss-content-box p {
    color: white;
    max-width: 774px;
    margin: 0 auto;
}

.discuss-content-box h3 {
    color: var(--white);
    padding-bottom: 20px;
}

.discuss-content-box button {
    border-radius: 10px;
    background: #B2A97E;
    padding: 20px 50px;
    margin-top: 60px;
    border: none;

}
.discuss-content-box button:hover{
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
}

.discuss-content-box button a {
    color: #FFFFFF;
}

.other-service_section {
    margin-top: 70px;
}

.discuus-box .particle_img {
    width: 267px;
    height: 303px;
    position: absolute;
    left: -49px;
    top: -33px;
    z-index: -1;
}


.discuus-box .particle_img2 {
    width: 267px;
    height: 303px;
    position: absolute;
    right: -48px;
    bottom: -35px;
    z-index: -1;
}


.discuss-content-box .particle_img img {
    width: 100%;
    height: 100%;
}

.other-service_head h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    color: #000000;

}

.service-grid {
    box-shadow: 0px 10px 36px #48484829;
    min-height: 265px;
    text-align: center;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 271px;
    padding: 48px 39px;
    margin: 26px 10px;

}

.service-grid-content h5 {
    max-width: 173px;
    font-size: 16px;
    color: #000000;
    padding-top: 50px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
}

.swiper .img-box {
    display: block;
    max-width: 47px;
    max-height: 47px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ACTIVITY RECOGNITION++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.activity_section {
    margin-top: 60px;
}
.activity_content p{
    max-width: 894px;
    margin: 0 auto;
    padding-bottom: 65px;
}
.load-more1 {
    background-color: white;
    color: #B9B9B9;
    padding: 16px 38px;
    border-radius: 5px;
    font-size: 14px;
    margin: 50px 0;
    display: inline-block;
    border: 1px solid #989898;
    transition: .5s ease all;
}
.load-more1:hover {
    border: 1px solid #254C5B;
    text-decoration: none;
    color: #254C5B;
    transition: .5s ease all;
}
.activity_section h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 400;
}

/* .activity_section p {
    max-width: 894px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    line-height: 26px;
    margin: 0 auto;
    padding-bottom: 43px;
    color: #000000;
} */

.activity_section .container {
    margin: 30px auto;
}

.activity_section .col-md-6 {
    display: none;
}

.contents {

    margin: 10px 0;

}
.activity_section .Active__card {
    background-color: var(--white);
    align-items: center;
    max-width: 573px;
    width: 100%;
    max-height: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0px 6px 36px #9D9D9D29;
    /* border: 1px solid #707070; */
    overflow: hidden;
    margin-top: 20px;
}
.activity_section  .Active__card .card__image img {
    height: 200px;
    width: 244px;
    object-fit: cover;
}

.activity_section .Active__card .card__content {
    max-width: 253px;
    width: 100%;
    margin: auto;
}

.activity_section .Active__card .card__content p {
    font-size: 16px;
    font-family: Sora;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 7px;
    text-align: left;
    color: #000000;
    /* margin-bottom: 25px; */
    font-weight: 500;
}

.activity_section .Active__card .card__content a button {
    font-family: Sora;
    color: var(--theme--green);
    /* width: 150px;
    height: 50px; */
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    text-align: center;
    border-radius: 10px;
    padding: 16px 40px;
    float: left;
    margin-top: 20px;
    /* margin-left: -92px; */
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.activity_section .Active__card .card__content a button:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.awd_activity_section {
    margin-top: 40px;
}

.awd_activity_section h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 400;
}

.awd_activity_section p {
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    /* padding-bottom: 43px; */
}

.awd_activity_section .container {
    margin: 30px auto;
}


.load-more {
    background-color: white;
    color: #B9B9B9;
    padding: 16px 38px;
    border-radius: 5px;
    font-size: 14px;
    margin: 50px 0;
    display: inline-block;
    border: 1px solid #989898;
    transition: .5s ease all;
}

.load-more:hover {
    border: 1px solid #254C5B;
    text-decoration: none;
    color: #254C5B;
    transition: .5s ease all;
}

.awd-parent {
    margin: 25px 9px;
}

.awd_imgs {
    max-width: 100%;
    max-height: 400px;
}

.awd_imgs img {
    width: 100%;
    height: 100%;
}

.awd_activity_section .col-md-3 {
    display: none;
}



.img_contents {
    box-shadow: 0px 3px 26px #00000029;
    border-radius: 10px;
    text-align: center;
    /* height: auto; */
    padding: 16px 17px;
    margin-top: -10px;
    background-color: #fff;
    position: relative;
}

.img_contents h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    text-align: left;

}

.img_contents h6 {
    font-size: 15px;
    color: #516870;
    font-weight: 400;
    line-height: 19px;
}

/* ERROR */

    .main-sec{
        margin-top: 178px;
    }
        .error-img{
            max-height: 189px;
            max-width: 445px;
            margin: 0 auto;
        }
        .error-content{
            margin: 0 auto;
        }
        .error-content h1{
                font-size: 30px;
                font-weight:600;
                text-align: center;
                color: #000000;
                padding-bottom: 20px;
                padding-top: 55px;
            }
            .error-content p{
                font-size: 18px;
                font-weight: 300;
                max-width:579px;
                text-align: center;
                margin: 0 auto;
                color: #000000;
                padding-top: 0px;
            }
            .homeee {
                display: flex;
                margin: 0 auto;
                align-items: center;
            }
            .hhhh{
                background-color: #B2A97E;
                color: #FFFFFF;
                padding: 15px 50px;
                border-radius: 5px;
                font-size: 16px;
                margin: 50px 0;
                display: inline-block;
                border: 1px solid #989898;
                transition: .5s ease all;
                display: flex;
                margin: 0 auto;
                margin-top: 40px;
            }
            .hhhh:hover{
                color: #B9B9B9;
                border-radius: 0px;
                -webkit-transition: all 0.5s ease 0s;
            }
        
    




/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++FOOTER  ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.form__wrapper {
    display: flex;
    position: relative;
    align-items: center;
    margin-bottom: -103px;
    z-index: 100;
}

.address__section {
    max-width: 373px;
    width: 100%;
    background-color: var(--theme--gold);
    border-radius: 10px;
    padding: 60px;
    position: absolute;
}

.address__section h2 {
    color: var(--white);
    font-size: 32px;
    line-height: 47px;
    font-family: Sora;
    font-weight: 400;
    margin-bottom: 30px;
}

.address__section .d-flex .icon {
    max-width: 20px;
    width: 100%;
    min-width: 20px;
    margin-right: 15px;
}

.address__section .d-flex .content :where(a,
    p) {
    color: var(--white);
    font-family: Sora;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}

.list__policy ul li a,
.list__our__services ul li a,
.list__stratex ul li a,
.address__section .d-flex .content a {
    position: relative;
}
.input__data__form .mail{
    margin-bottom: 20px;
}
.input__data__form .fullname{
   padding-bottom: 20px;
}

.list__policy ul li a::after,
.list__our__services ul li a::after,
.list__stratex ul li a::after,
.address__section .d-flex .content a::after {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    background: var(--white);
    left: 0;
    bottom: -4px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

.list__policy ul li a:hover::after,
.list__our__services ul li a:hover::after,
.list__stratex ul li a:hover::after,
.address__section .d-flex .content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.address__section .d-flex {
    margin-bottom: 15px;
}

.input__data__form {
    min-height: 533px;
    max-width: 829px;
    min-width: 829px;
    width: 100%;
    padding: 60px 35px 60px 60px;
    border-radius: 10px;
    background-image: linear-gradient(rgb(0 0 0 / 70%) 0, rgb(0 0 0 / 81%) 0, rgb(0 0 0 / 61%) 100%), url('../images/footer/form/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-left: auto;
}

.input__data__form___tag {
    max-width: 610px;
    margin-left: auto;
}

.input__data__form___tag .main__input,
textarea {
    width: 100%;
    height: 55px;
    border-radius: 3px;
    outline: none;
    /* margin-bottom: 20px; */
    border: none;
    background: #5168706b;
    color: var(--white);
    padding: 0px 10px;
    font-family: Sora;
    font-size: 14px;
    font-weight: 300;
    border-bottom: 1px transparent;
    /* -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s; */
}
.input__data__form___tag{
    transition: none !important;
}

.input__data__form___tag .main__input:focus,
textarea:focus {
    border-bottom: 1px solid var(--theme--gold);
    /* -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s; */
}

textarea {
    min-height: 100px;
    padding-top: 15px;
    resize: none;
}

.input__data__form___tag .footer__submit {
    background-color: var(--theme--gold);
    color: var(--white);
    width: 150px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-family: Sora;
    font-weight: 400;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.input__data__form___tag .footer__submit:hover {
    border-radius: 0px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

footer {
    background-color: var(--theme--green);
    padding-top: 170px;
    position: relative;
    z-index: 99;
}

footer::after {
    content: '';
    position: absolute;
    background-image: url('../images/footer/slash.png');
    background-repeat: no-repeat;
    transform: translateX(-50%);
    left: 577px;
    bottom: 0;
    width: 300px;
    height: 200px;
    z-index: 9;
}

footer .container {
    position: relative;
    z-index: 999;
}

.footer__wrapper .social__media__icons ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
}

.footer__wrapper .social__media__icons ul li a img {
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
    opacity: 1;
}

.footer__wrapper .social__media__icons ul li:hover a img {
    transform: translateY(-7px);
    opacity: 0.9;
    -webkit-transition: all 2s ease 0s;
    -moz-transition: all 2s ease 0s;
    -ms-transition: all 2s ease 0s;
    -o-transition: all 2s ease 0s;
}

footer .logo__social__icons {
    max-width: 240px;
}

.social__media__icons {
    margin-left: 8px;
}

footer .footer__wrapper h5 {
    color: var(--theme--gold);
    font-family: Sora;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

footer .footer__wrapper ul li a {
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
    line-height: 30px;
}

footer .footer__wrapper {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}

footer .first__session {
    margin-right: 250px;
}

footer .second__session {
    display: flex;
    max-width: 616px;
    width: 100%;
    justify-content: space-between;
}

.list__stratex {
    max-width: 131px;
    width: 100%;
}

.list__our__services {
    max-width: 182px;
    width: 100%;
}

.list__policy {
    max-width: 174px;
    width: 100%;
}

.copy__right .wrapper {
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.all__right {
    font-size: 12px;
    font-weight: 400;
    font-family: Sora;
}

.webcastle,
.webcastle a {
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
    font-family: Sora;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.webcastle a:hover {
    color: var(--theme--gold);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.copy__right {
    border-top: 1px solid #707070;
    margin-top: 40px;
    padding: 20px 0px;
}

footer .container {
    position: relative;
}

footer .scroll__top {
    position: absolute;
    border: 1px solid transparent;
    top: 0px;
    left: auto;
    height: 45px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--theme--gold);
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

footer .scroll__top:hover {
    border: 1px solid var(--theme--gold);
    background-color: transparent;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

footer .scroll__top:hover img {
    transform: none !important;
}
.name .main__input{   
    transition: none !important;
   }









/* 
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                        MEDIAQUERY
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


@media only screen and (min-width:1400px) {
    #side__menu {
        max-width: 39%;
    }

    #side__menu .nav__menus ul li {
        max-width: 350px;
    }
}
@media only screen and (max-width:1280px) {
    .improve__business__image__counter__img img {
        margin-left: 0;
    }
    .about__first__counter {
        right: 0;
        margin: auto;
    }
    .brand-right{
        margin-top: 30px;
    }
}
@media only screen and (max-width:1200px) {
    .event__activities::after {
        content: none;
    }
}
@media only screen and (max-width:1100px) {
    /* #side__menu {
        padding: 45px 20px !important;
        background: red;
       
    } */
    #side__menu .nav__menus ul li {
        max-width: 431px !important;
    }
    .img_contents h4{
        font-size: 19px;
    }
    .img_contents h6{
        font-size: 12px;
    }
    .img_contents{
        padding: 16px 10px;
    } 
    .awd_activity_section p{
        font-size: 12px;
    }
}


@media only screen and (max-width:1199px) {
    .input__data__form {
        min-width: unset;
        max-width: 100%;
    }
    .address__section {
        position: relative;
        z-index: 99;
        max-width: 95%;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: -30px;
    }
    .form__wrapper {
        flex-direction: column;
    }
    .input__data__form___tag {
        max-width: 100%;
    }
    .ReadMore_content .right {
        margin-left: 30px;
    }
    .parent-swiper .events__card .card__content{
        margin: 20px;
    }
    .event__activities__slider .activity__card .card__content{
        margin: 20px;
    }

    .aa {
        padding-left: 21px;
    }

    /* .ContentSection {
        padding-top: 15rem;
    } */
    .activity_section .Active__card .card__content{
        margin: 21px;
    }
    .contact_wrapper{
        padding: 60px 30px;
    }
    .img_contents{
        padding: 16px 11px;
    }
    .awd_activity_section p{
        font-size: 12px;
    }

}

@media only screen and (min-width:1170px) {
    .home__banner__swiper .swiper-pagination {
        right: 0%;
    }
    /* .event__activities__slider .activity__card .card__content{
        padding: 10px;
    } */
    .home__swiper__slider__wrapper .home__banner__content h1::before{
        left: -8px;
        top: -21px;
    }
    /* .parent-swiper .events__card .card__content{
        padding: 10px;
    } */
}

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

    .home__map {
        min-height: 350px;
    }
    .one .content,
    .two .content,
    .three .content,
    .four .content,
    .five .content,
    .six .content,
    .seven .content {
        display: none;
    }
    .event__activities>.container>.row {
        flex-direction: column;
    }
    .event__activities>.container>.row>.col-md-6.col-lg-6.col-xs-12.align-self-center {
        align-self: unset !important;
        margin-bottom: 40px;
    }
    .event__activities .for__mob {
        max-width: 100%;
        padding: 0;
    }
    .activity__card.d-flex {
        flex-direction: column;
        max-height: unset;
        height: 100%;
        max-width: 222px;
    }
    .event__activities__slider .swiper-slide-visible {
        opacity: 1;
    }
    .event__activities__slider .activity__card .card__image img {
        border-radius: 10px;
    }
    .event__activities__slider .activity__card .card__content p {
        font-size: 13px;
        max-width: 192px;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 22px;
        text-align: left;
    }
    .event__activities {
        padding-bottom: 20px;
    }
    .event__activities__slider .activity__card .card__content a button {
        width: 101px;
        height: 33px;
        font-size: 9px;
        margin-left: 15px;
        margin-bottom: 20px;
    }
    .event__activities__slider-next {
        top: 38%;
        z-index: 1;
        right: -8px;
        transform: rotate(180deg);
        left: auto;
    }
    
    .event__activities__slider-next img,
    .event__activities__slider-prev img {
        width: 45px;
        height: 45px;
    }
    .event__activities__slider-prev {
        top: 38%;
        z-index: 1;
        left: -8px;
        transform: rotate(0deg);
    }
    .about__first__counter .item h1{
        /* padding-left: 20px; */
    }
    .about__first__counter::after{
        height: 85px;
    }
    .improve__business__content p{
        padding-right: 31px;
    }
    .about__banner__wrapper {
        margin-top: 105px;
    }
    .improve__business__content h1{
        padding-right: 24px;
        font-size: 34px;
    }
    .stories__section .full__width__container>.row {
        flex-direction: column;
    }
    .stories__section .full__width__container>.row .col-md-7 {
        max-width: 100%;
        margin-left: 15px;
    }
    .stories__section .full__width__container::before {
        height: 100%;
    }
    .certificatr__order1 {
        order: 1;
        align-self: unset !important;
    }
    .certificatr__order2 {
        order: 2;
        margin-top: 45px;
    }
    .stories__title__content {
        padding-left: 15px;
        margin-bottom: 96px;
    }
    .award-button-next img,
    .award-button-prev img {
        width: 47px;
        height: 47px;
    }
    .button__wrapper {
        max-width: 118px;
    }
    .ReadButton p {
        padding: 0 11px 0 16px;
        font-size: 12px;
    }
    
    .ReadButton button {
        /* margin-left: 16px; */
        padding: 14px 30px;
    }
    .readbutton button{
        margin-left: 16px;
    }

    .contact_wrapper {
        flex-wrap: wrap;
        margin-top: 0px;
    }

    .contact_address {
        max-width: 88%;
        margin: 0 auto;
        margin-top: 40px;
    }
    .contact_address{
        padding: 53px 89px;
    }

    .name {
        max-width: 100%;
    }

    .ContentSection {
        padding-top: 3rem;
    }

    .brand-head-sec {
        max-width: 100%;
    }

    .contact_address h3 {
        text-align: left;
        font-size: 31px;
    }
    .flex-content h5{
        line-height: 26px;
    }
    .Event-right{
        max-width: 100%;
    }
    .first__section {
        margin: auto;
        margin-bottom: 51px;
    }
    /* .parent-swiper .events__card .card__content{
        padding: 17px;
    } */
    /* .activity_section .Active__card .card__content{
        padding: 17px;
    } */
    /* .activity_section .Active__card .card__content a button {
        margin-left: 0px;
    } */
    /* #side__menu .social__media__icons {
        margin-top: 90px;
    } */
    .awd_activity_section .col-md-3 {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%!important;
    }
    .img_contents{
        width: 100%;
    }
    .img_contents h6 {
        text-align: left;
    }
    .brand-right{
        margin-left: 0px;
    }
    .brand-head {
        font-size: 36px;
    }
    .about__first__counter{
        padding: 40px 14px;
    } 
    .awd_activity_section{
        margin-top: 0px;
    }
    .activity_content p{
        padding-bottom: 35px;
    }
    .contact_wrapper .Left_wraper p {
        max-width: 100%;
        text-align: center;
    }
    .Left_wraper h2{
        max-width: 100%;
        text-align: center;
    }

}

@media only screen and (max-width:991px) {
   
    .logo__social__icons img {
        max-width: 241px;
    }
    .social__media__icons ul li img {
        width: 32px;
        height: 32px;
    }
    
    .brand_left {
        max-width: 100%;
        padding-top: 20px;
    }

    .ReadMore_content {
        flex-direction: column;
    }

    .ReadMore_content .right {
        margin-left: 0px;
        margin-top: 20px;
    }

    .ReadMore_content .left,
    .right {
        width: 100%;
    }

    .inner_sec {
        justify-content: start;
    }

    .aa p {
        max-width: 290px;
    }

    .l-content {
        margin-left: 20px;
    }

    .service_box {
        width: calc(50% - 18px);
    }

    .img_content {
        padding: 16px 10px;
    }

    .img_content h4 {
        font-size: 16px;
    }

    /* .Event-right {
        margin-top: 30px;

    } */

    .wrapps h2 {
        text-align: center;
        max-width: 100%;
    }

    .particle_img2 {
        display: none;
    }

    .particle_img {
        left: 35% !important;
        top: 15% !important;
    }

    .bussiness_wrapper {
        padding: 0px;
        margin-top: 0px;
    }
    .about__banner__wrapper h1{
        padding-top: 60px;
    }
    .banner-head{
        padding-top: 56px;
    }
}
@media only screen and (max-width:908px) {

    .stories__title__content{
        margin-left: 12px;
    }
}

@media only screen and (max-width:768px) {
    .home__banner__swiper .swiper-pagination {
        display: none;
    }
    .improve__business__section__wrapper.d-flex {
        flex-direction: column;
    }
    .improve__business__section__image {
        background-color: var(--theme--green);
    }
    .improve__business__section__content {
        border-bottom: 65px solid #254c5b;
    }
    .improve__business__section__content .title p {
        margin-bottom: 40px;
    }
    .improve__business__section__content .title {
        max-width: 100%;
        margin-left: 15px;
        margin-top: 50px;
    }
    .improve__business__section__image img,
    .improve__business__section__content {
        max-width: 100%;
    }
    .improve__business__section__content::before {
        top: 0;
    }
    .improve__business__section__content::after {
        bottom: -153px;
        max-width: 164px;
        max-height: 283px;
        max-height: 283px;
    }
    .improve__business__section__content::after {
        background-position: right;
    }
    .improve__business__content__wrapper.d-flex {
        flex-direction: column-reverse;
    }
    .improve__business__image__counter__img img,
    .improve__business__content {
        max-width: 100%;
    }
    .about__first__counter {
        bottom: -100px;
    }
    .improve__business__content {
        margin-top: 140px;
    }
    
    .service-grid {
        padding: 30px 60px;
        
    }
    .build__business .build__business__content h1{
        line-height: 50px;
    }
    .LeftContent {
        margin-left: 12px;
    }

    .ReadButton p {
        padding: 0px;
        font-size: 14px;
    }

    .ContentSection {
        padding-top: 2rem;
    }

    .OurService_content h3 {
        font-size: 38px;
    }

    .particle_img {
        left: 25% !important;
        top: 25% !important;
    }

    .OuterContent h3 {
        line-height: 35px;
        font-size: 24px;
    }

    .brand-right {
        margin-top: 20px;
        margin-left: 0px;
    }

    .contact_wrapper {
        padding: 60px 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        display: block;
    }
    .contact_address h3{
        text-align: left;
    }

    .awd_imgs {
        max-width: 100%;
        max-height: 100%;
    }
    .brand_img h5 {
        font-size: 16px;
    }
    .img_contents {
        width: 100%;
    }
    .img_contents h6 {
        font-size: 14px;
    }
    .brand-head {
     max-width: 100%;
    }
    .contact_address {
        margin: 0 auto;
        margin-top: 40px;
    }

}
@media only screen and (max-width:768px) {
    .small-next,
    .small-prev {
        display: none;
    }
    .our__brand__section::before {
        max-height: 670px;
    }
    .img_contents{
        padding: 16px 10px;
    }
}

@media only screen and (max-width:767px) {
    .brand__slider__first .brand__slider__next,
    .brand__slider__first .brand__slider__prev {
        display: none;
    }
    .brand__slider {
        min-height: 89px;
    }
    .our__brand__section .container>.row .can__image img {
        margin-top: 55px;
        margin-bottom: 20px;
    }
    .home__map {
        min-height: 255px;
    }
    footer::after {
        left: 0 !important;
        transform: none;
        background-position: left;
    }
    .certificate__image img {
        width: 100%;
    }
    footer .scroll__top {
        display: none;
    }
    .build__business .build__business__image img {
        margin-top: 40px;
    }
    .keep__best__section::before {
        max-height: 100%;
    }
    .slider___mobile__wrapper .brand__logo img {
        width: 96px !important;
        height: 63px !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
        margin-bottom: 30px !important;
    }

    .slider___mobile__wrapper .mainsec___mobile__slider .swiper-slide img {
        max-width: 100% !important;
    }

    .slider___mobile__wrapper .brand__title h2 {
        font-size: 25px;
        line-height: 23px;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .slider___mobile__wrapper .brand__title p {
        font-size: 14px;
        font-weight: 300;
        line-height: 30px;
        color: var(--black);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slider___mobile__wrapper .brand__title button {
        color: var(--theme--green);
        font-family: Sora;
        font-size: 14px;
        font-weight: 400;
        background-color: transparent;
        border: 1px solid var(--theme--green);
        text-align: center;
        max-width: 150px;
        width: 100%;
        height: 50px;
        text-align: center;
        border-radius: 10px;
        -webkit-transition: all 0.5s ease 0s;
        -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
        -o-transition: all 0.5s ease 0s;
        margin-top: 35px;
        margin-bottom: 20px;
    }
    .brand_img {
        width: calc(33% - 18px);

    }

    .service_box {
        width: calc(50% - 18px);
    }

    .brand_img h5 {
        font-size: 16px;
    }
    /* .parent-swiper .events__card .card__content{
        max-width: 225px;
    } */
}

@media only screen and (max-width:600px) {
    /* .padd__60,
    .padding-50 {
        padding: 30px 0px;
    } */
    h1 {
        font-size: 30px ;
        line-height: 45px;
    }
    h2 {
        font-size: 25px !important;
        line-height: 33px;
    }
    .main__navbar.d-flex .company__logo {
        max-width: 135px;
    }
    .home__swiper__slider__wrapper .home__banner__content h1::before,
    .our__brand__section .main__title h5::after {
        content: none;
    }
    .home__swiper__slider__wrapper .home__banner__content h1 {
        margin-bottom: 55px;
        line-height: 45px;
    }
    #mouse {
        display: none;
    }
    .banner__services__slider .swiper-wrapper .banner__services__slider__content p {
        font-size: 14px;
        line-height: 18px;
    }
    .banner__services>.container>.banner__services__slider__wrapper {
        background-color: transparent;
    }
    .banner__services .swiper-wrapper .swiper-slide:nth-child(2)::before {
        max-width: 164px;
        min-width: 164px;
        height: 179px;
        top: -40px;
        left: -5px;
    }
    .improve__business__section__content::before {
        content: none;
    }
    .mob__order__1 {
        order: 1;
    }
    .mob__order__2 {
        order: 2;
    }
    footer .footer__wrapper h5 {
        font-size: 14px;
    }
    footer .footer__wrapper ul li a {
        font-size: 12px;
    }
    .copy__right .wrapper {
        flex-direction: column;
    }
    .copy__right {
        padding-bottom: 60px;
    }
    footer::after {
        background-size: cover;
        width: 162px;
        height: 127px;
        left: -79px !important;
    }
    .stories__slider .title h5 {
        font-size: 14px;
    }
    .stories__slider .title p {
        font-size: 12px;
    }
    .input__data__form {
        padding-left: 20px;
        padding-right: 20px;
    }
    .address__section {
        padding: 30px;
        margin-top: 40px;
    }
    .about__first__counter {
        padding: 20px 10px;
        bottom: -73px;
    }
    .about__first__counter::after {
        width: 19%;
    }
    .improve__business__image__counter__img img {
        height: 294px;
    }
    .improve__business>.container p.first__content {
        margin-bottom: 40px;
    }
    .improve__business__content h1 {
        line-height: 38px;
        margin-top: -38px;
    }
    .our__brand__section .container>.row {
        margin-top: 0;
    }
    .main__title {
        margin: 0;
    }
    .our__brand__section .container>.row .can__image img {
        margin-top: 15px;
    }
    .keep__best__section>.container {
        padding-right: 0;
    }
    .keep__best__title {
        padding-right: 15px;
    }
    .build__business .build__business__image img{
        margin-top: 40px;
    }
    #side__menu{
        max-width: 481px;
    }
  
    /* @media only screen and (max-width: 600px)
{
.awd_activity_section .col-md-3 {
    -ms-flex: 0 0 50% !important;
    flex: 0 0 100% !important;
    max-width: 100%!important;
}
} */
}

@media only screen and (max-width:597px) {
    .flexBox__box::after{
        left: 16px;
        right: auto;
        height: 171px;
    }
    .flexBox__box:last-child::after{
        opacity: 1;
       
    }

    .flex-content{
        padding: 0px 18px;
    }
    .event__activities .for__mob {
        padding-left: 15px;
        padding-right: 0;
    }
    .event__activities__slider-prev {
        left: 4px;
        top: 39%;
        transform: rotate(90deg);
    }
    .event__activities__slider-next {
        right: 0;
        transform: rotate(90deg);
        top: 39%;
    }
    .banner-head {
        font-size: 30px;
        line-height: 45px;
        padding-top: 80px;
        text-align: center;
    }
    .awd_activity_section p{
        font-size: 14px;
    }

    .brand_left {
        padding: 9px;
    }

    .brand-head {
        font-size: 30px;
        padding-top: 15px;

    }
    .about__brand__title h1{
        font-size: 30px !important;
        max-width: 322px;
        margin: 0 auto;
    }
    .about__brand__title h5::after{
        width: 196px;
        height: 196px;
        bottom: -66px;
        left: -10px;
    }
    .about__banner__wrapper {
        min-height: 360px;
    }
    .about__banner__wrapper h1{
        margin-top: 98px;
    }

    .first,
    .sec {
        font-size: 14px;
    }

    .brand_img {
        width: calc(50% - 18px);
        margin: 15px 9px;
    }

    .our_brand p {
        font-size: 30px;
        max-width: 322px;
        margin: 0 auto;
    }

    .service_box {
        width: calc(100% - 18px);
        margin: 15px 9px;
    }

    .ContentSection {
        padding-top: 3rem;
    }

    .OuterContent h2 {
        font-size: 24px;
        line-height: 38px;
    }

    .OurService_content h3 {
        font-size: 30px;
        line-height: 38px;
    }

    .Service_wrapper {
        padding-top: 40px;
    }

    .ReadButton {
        margin-left: 20px;
    }
    .ReadMore_section{
        margin-bottom: 0px;
    }
    .img_contents {
        padding: 9px 8px;
    }

    .img_content h6 {
        font-size: 12px;
        line-height: 13px;
        font-weight: 400;
    }

    .img_content h4 {
        font-size: 12px;
        font-weight: 500;
        line-height: 15px;
    }

    .awards p {
        line-height: 28px;
        font-size: 14px;
        font-weight: 300;
    }

    .awards h3 {
        font-size: 30px;
        font-weight: 400;
        line-height: 38px;
    }

    .ourbrand__services__wrapper .flexBox {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .event__activities .event__title h1{
        font-size: 30px;
    }

    .ourbrand__services__wrapper .flexBox__box {

        width: 100%;
        display: flex;
        align-items: center;
        gap: 1.6rem;
        margin-right: 0px;
        padding-top: 10px;
        border-right: none;
    }

    /* .flex-content {
        border-left: 1px solid #9A9A9A;
        padding-left: 20px;
    } */
    /* .flexBox__box::after{
        content: '';
        position: absolute;
        background: #C3C3C3;
        height: 193px;
        width: 1px;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    } */
    .flex-content h5 {
        line-height: 32px;
    }

    .img_wrapper_sec h3 {
        font-size: 30PX;
    }

    .discuss-content-box p {
        padding: 14px;
    }

    .service-grid {
        margin-bottom: 60px;
        /* min-height: 199px; */
        min-height: 188px;
        margin: 26px 8px;
    }
    .awd_activity_section .container{
        margin-bottom: 0;
    }

    .dots {
        display: block;
        bottom: -30px !important;
    }

    .S-dots {
        display: block;
        bottom: 5px;
    }

    .swiper-pagination.S-dots.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        margin-bottom: 0px;
        /* left: 0px; */
    }

    .dots .swiper-pagination-bullet {
        background: none;
        border: 1px solid #2C2C2C;
    }

    .dots .swiper-pagination-bullet-active {
        background-color: #2C2C2C;
    }

    .S-dots .swiper-pagination-bullet {
        background: none;
        border: 1px solid #2C2C2C;
    }

    .S-dots .swiper-pagination-bullet-active {
        background-color: #2C2C2C;
    }

    .dots .swiper-pagination-bullet {

        border: 1px solid #2C2C2C;
    }

    .S-dots .swiper-pagination-bullet {

        border: 1px solid #2C2C2C;
    }

    .brand-head-sec {
        text-align: left;
        max-width: 100%;
    }

    .brand-content p {
        font-size: 14px;
        font-weight: 300;
        line-height: 29px;
    }

    .brand-right {
        margin-top: 25px;
        padding: 9px;
    }

    .our_brand h3 {
        font-size: 16px;
        line-height: 21px;
    }

    .OuterContent h3 {
        font-size: 24px;
        line-height: 38px;
    }

    .ReadMore_head h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .contact_wrapper {
        padding: 25px 9px;
        margin-top: 20px;
        
      
    
    }
    .contact_wrapper .Left_wraper p {
        text-align: center;
        margin: 0 auto;
    }
    .contact_address {
        padding: 40px 35px;
        margin-top: 40px !important;
        max-width: 400px;
        margin: 0 auto;

    }

    .contact_address h3 {
        font-size: 30px;
        text-align: left;
    }

    .webcastle {
        padding-top: 10px;
    }

    .list__policy {
        width: 24%;
    }

    .social__media__icons {
        margin-left: 23px;
        margin-right: 22px;
    }

    .copy__right {
        margin: 40px 20px 0 20px;
    }

    .SubBanner {
        height: 320px;
    }

    .brand_section {
        margin-top: 40px;
    }

    .brand_wrapper {
        margin-bottom: 60px;
    }

    .address__section h2 {
        line-height: 31px;
    }

    .padd__30 {
        padding: 0px;
    }

    .Left_wraper h2 {
        text-align: center;
    }

    .mouse {
        display: none;
    }

    .home__swiper__slider__wrapper .home__banner__content a.home__contact {
        padding: 13px 35px;
    }

    .improve__business__section__image img {
        height: 371px;
    }

    .improve__business__section__content .title h1::before {
        left: -13px;
        top: 0px;
        max-width: 89px;
    }

    .improve__business__section__content .title p {
        max-width: 346px;
    }

    .improve__business__section__content .title h1 {
        line-height: 45px;
        font-size: 30px;
        max-width: 287px;
    }

    .thumbnail__section .large__slider .row .brand__title a button {
        padding: 16px 36px;
    }

    .event__activities__slider .activity__card .card__content p {
        color: #000000;
    }

    .event__activities__slider .activity__card .card__content a button {
        margin-top: 10px;
        padding: 0px;
    }

    .event__activities .event__title h5 {
        margin-bottom: 0px;
    }

    .event__activities .event__title h1 {
        line-height: 50px;
        margin-bottom: 40px;
        max-width: 249px;
    }

    .event__activities__slider__wrapper {
        margin-top: 40px;
    }

    .event__activities .event__title a {
        padding: 16px 36px;
    }

    .counter__section::after {
        width: 105px;
        height: 230px;
        bottom: -161px;
        right: 1px;
    }

    .counter__section .counter__wrapper .item {
        padding: 0px 9px;
    }

    .counter__section .counter__wrapper .item h1 {
        text-align: center;
    }

    .counter__section .counter__wrapper .item p {
        font-size: 18px;
    }

    .our__brand__section .main__title h1 {
        font-size: 30px !important;
    }

    .about__first__counter {
        max-width: 374px;
    }
    .error-content h1{
        font-size: 26px;

    }
    .error-content p{
        font-size: 15px;
        max-width: 388px;
        
    }
    .service-grid-content h5{
        color: #000000;
        font-weight: 600;
        font-size: 13px;
        max-width: 205px;
    }
    .service_img img{
        margin: 0 auto;

    }
    .img_wrapper_sec {
        padding-top: 30px;
    }
    .build__business .build__business__content h1::before{
        top: -36px;
        left: -50px;
    }
    .OuterSec{
        margin-top: -3rem;
        max-height: 300px;
    }
    .OuterSec img{
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
    }
    .discuss-content-box button{
        margin-top: 6px;
    }
    .discuus-box .particle_img {
        width: 295px;
        height: 327px;
        top: 0;
        left: 25% !important;
        top: 14% !important;
    }
    .other-service_head h3{
        font-size: 24px;
    }
    .brand-right img{
        height: 270px;
    }
    .service-grid{
        padding: 30px 30px;
    }
    .img-parent{
        max-height: 302px;
    }
    .img-parent img{
        height: 302px;
    }
    .other-service_section{
        overflow: hidden;
    }
    .service-grid-content h5{
        padding-top: 28px;
    }
    .box_contents{
        padding: 71px;
    }
    .grid_box{
        height: 234px;
    }
    .box_contents h5{
        padding-top: 30px;
    }
    .contact_address {
        max-width: 86%;
    }
    .img_contents h6{
        margin-bottom: 0px;
    }
    .about__video__section{
        margin-bottom: 0px;
    }
    .improve__business__section__content .title{
        margin-top: 10px;
    }
    .improve__business__section__content .title h1{
        padding-top: 47px;
    }
    .load-more1{
        margin: 24px 0 !important;
    }

}
@media only screen and (max-width:590px) {
    .banner__services__slider .swiper-wrapper .banner__services__slider__content p {
        max-width: 154px;
    }

    .banner__services>.container>.banner__services__slider__wrapper::before {

        height: 169px;
    }
}
@media only screen and (max-width:576px) {
    .other-service_section{
        overflow: hidden;
    }
}
/* @media only screen and (max-width:537px){
    .awd_activity_section .col-sm-6 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%!important;
    }
    .img_contents{
        width: 100%;
    }
} */
@media only screen and (max-width:520px){
    footer .footer__wrapper ul li a {
        font-size: 11px;
    }
    .parent-swiper .events__card .card__content{
        max-width: 203px;
    }
    .awd_activity_section p {
        font-size: 11px;
    }

}

@media only screen and (max-width:480px){
    footer .footer__wrapper ul li a {
        font-size: 10px;
    }
    .activity_section .Active__card .card__content{
        padding: 10px;
    }
    /* .activity_section .Active__card .card__content a button{
        margin-left: -60px;
    } */
    /* .img_contents {
        width: 199px;
    } */
    .img_contents h6 {
        font-size: 11px;
    }
   
    .flexBox__box::after {
        height: 190px;
    }
    .awd_activity_section p {
        font-size: 10px;
    }

}
@media only screen and (max-width:462px) {
    /* .img_contents {
        width: 183px;
    } */
    .img_contents h6 {
        font-size: 10px;
    }
    .img_contents h4 {
        font-size: 16px;
    }
}
@media only screen and (max-width:438px){
    .list__stratex {
        max-width: 118px;
    }
    .list__our__services {
        max-width: 152px;
    }
    .list__policy {
        width: 27%;
    }

}
@media only screen and (max-width:400px){
    .discuus-box .particle_img{

        inset: 0 !important;
        margin: auto;
    
    }

}

@media only screen and (max-width:395px) {
    /* footer .second__session {
        flex-wrap: wrap;
    } */
    /* .list__stratex,
    .list__our__services,
    .list__policy {
        max-width: 100%;
        margin-bottom: 20px;
    } */
    .img_contents{
        padding: 9px 3px;
    }
}
@media only screen and (max-width:390px) {
   .counter__section .counter__wrapper .item::after{
    right :0;
}
/* .discuus-box .particle_img{

    inset: 0 !important;
    margin: auto;

} */
  
}

@media only screen and (max-width:375px) {
    #side__menu {
        padding: 45px 15px;
    }
    .banner__services .swiper-wrapper .swiper-slide:nth-child(2)::before {
        left: -15px;
    }
    .banner__services__slider .swiper-wrapper .banner__services__slider__content p {
        max-width: 153px;
    }
    
    .ReadButton button {
        padding: 13px 21px;
        margin-left: 0PX;
    }
    .contact_address{
        padding: 40px 38px;
    }
    .img_contents h4 {
        font-size: 14px;
    }
    .awd_activity_section p {
        font-size: 8px;
    }
    .activity_section .Active__card .card__content a button{
        padding: 16px 26px;
    }
}
.our__brand__section {
    position: relative;
}

.our__brand__section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, rgb(255 255 255 / 72%) 0, rgb(255 255 255 / 95%), rgb(255 255 255) 100%), url(../images/index/home_services/background.jpg) !important;
    max-height: 682px !important;

    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.thumbnail__section .large__slider .our__brand__wrapper .brand__logo img {
    width: 94px;
    height: 60px;
    object-fit: cover;
}

.thumbnail__section .large__slider .row .brand__title h2 {
    font-family: Sora;
    color: var(--black);
    font-size: 30px;
    line-height: 40px;
    max-width: 370px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 15px;
}

.thumbnail__section .large__slider .row .brand__title p {
    font-family: Sora;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 35px;
    display: -webkit-box;
    /* -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    overflow: hidden;
}

.thumbnail__section .large__slider .row .brand__title a button {
    color: var(--theme--green);
    font-family: Sora;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid var(--theme--green);
    text-align: center;
    padding: 18px 35px;
    text-align: center;
    border-radius: 10px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.thumbnail__section .large__slider .row .brand__title a button:hover {
    border-radius: 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.thumbnail__section .row .can__image img {
    border-radius: 15px;
    max-width: 634px;
    width: 100%;
    max-height: 341px;
    height: 100%;
    object-fit: cover;
}

.thumbnail__section .thumb__slider {
    height: 80%;
    width: 100%;
}

.thumbnail__section .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumbnail__section .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.thumbnail__section .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbnail__section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: none;
}

.brand__slider__content {
    position: relative;
    margin-top: 45px;
   
}

.brand__slider__content::after {
    content: '';
    position: absolute;
    inset: 0;
    max-width: 245px;
    width: 100%;
    height: 100%;
    /* max-height: 195px; */
    max-height: 205px;
    min-height: 188px;
    background-color: var(--white);
    top: -27px;
    z-index: -1;
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 6px 46px rgb(0 0 0 / 16%);
    transition: all ease 0.3s;
}

.brand__slider__content:hover::after,
.swiper-slide-thumb-active .brand__slider__content::after {
    visibility: visible;
    opacity: 1;
}

.brand__slider__content::before {
    content: '';
    position: absolute;
    background-image: url('../images/index/up_bg.png');
    top: -38px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 38px;
    max-height: 14px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    visibility: hidden;
    opacity: 0;
}

.brand__slider__content:hover::before {
    visibility: visible;
    opacity: 1;
}
.thumbnail__section__web__only .swiper-slide-thumb-active .brand__slider__content::before {
    visibility: visible;
    opacity: 1;
}

.thumb__slider {
    position: relative;
    margin-top: 30px;
}

.thumb__slider::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0px 6px 36px rgb(0 0 0 / 16%);
    /* max-height: 130px; */
    max-height: 177px;
    inset: 0;
    top: 35px;
}

.thumb__slider .brand__slider__content img {
    filter: grayscale(100%);
    margin-top: 23px;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.thumb__slider .brand__slider__content:hover img {
    filter: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.small-next,
.small-prev {
    position: absolute;
    top: auto;
    bottom: 16%;
    z-index: 10;
}

.small-prev {
    left: -30px;
    transform: rotate(-90deg);
}
.small-prev:hover{
    border-radius: 5px;
}

.small-next {
    right: -30px;
    transform: rotate(90deg);
}
.small-next:hover {
    border-radius: 5px;
}




.swiper.thumb__slider {
    padding-top: 10px;
    padding-bottom: 65px;
}

.thumbnail__section>.container {
    position: relative;
}
/* HOME THUMBNAIL SLIDER (MOBILE ONLY)  */

.slider___mobile__wrapper {
    position: relative;
}

.slider___mobile__wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 635px;
    background-image: radial-gradient(circle at center, rgb(255, 255, 255) 0, rgba(255, 255, 255, 0.945), rgb(255 255 255) 100%), url('../images/index/home_services/background.png');
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.slider___mobile__wrapper .thumb___mobile__slider {
    position: relative;
    height: 109px;
    padding-bottom: 20px;
}

.slider___mobile__wrapper .thumb___mobile__slider::after {
    content: '';
    position: absolute;
    background-color: var(--white);
    margin: auto;
    width: 100%;
    height: 89px;
       
    inset: 0;
    border-radius: 15px;
}

.slider___mobile__wrapper .thumb___mobile__slider img {
    padding: 20px 0;
}

.slider___mobile__wrapper .thumb___mobile__slider .swiper-slide {
    position: relative;
}

.slider___mobile__wrapper .thumb___mobile__slider .swiper-slide::after {
    background-color: var(--white);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    min-height: 101px;
    border-radius: 15px;
    z-index: -1;
    box-shadow: 0 6px 46px rgb(0 0 0 / 16%);
    visibility: hidden;
    opacity: 0;
}

.slider___mobile__wrapper .thumb___mobile__slider .swiper-slide::before {
    content: '';
    position: absolute;
    background-image: url('../images/index/up_bg.png');
    left: 0;
    right: 0;
    bottom: -22px;
    top: auto;
    margin: auto;
    width: 40px;
    box-shadow: 0 6px 46px rgb(0 0 0 / 16%);
    height: 15px;
    transform: rotate(180deg);
    visibility: hidden;
    opacity: 0;
}

.slider___mobile__wrapper .thumb___mobile__slider .swiper-slide:hover::after,
.slider___mobile__wrapper .thumb___mobile__slider .swiper-slide:hover::before {
    visibility: visible;
    opacity: 1;
}

.slider___mobile__wrapper .thumb___mobile__slider img {
    max-width: 75px;
    margin: auto;
    display: block;
}

.slider___mobile__wrapper .mainsec___mobile__slider .swiper-slide {
    margin-top: 35px;
}

.slider___mobile__wrapper .mainsec___mobile__slider .swiper-slide img {
    max-width: 388px;
    width: 100%;
    max-height: 264px;
    height: 100%;
    border-radius: 15px;
    display: block;
    margin: auto;
}

.thumb___mobile__slider .swiper-slide-thumb-active {
    position: relative;
}

.thumb___mobile__slider .swiper-slide-thumb-active::after {
    background-color: var(--white);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 15px;
    z-index: -1;
    box-shadow: 0 6px 46px rgb(0 0 0 / 16%);
    opacity: 1 !important;
    visibility: visible !important;
}

.thumb___mobile__slider .swiper-slide-thumb-active::before {
    content: '';
    position: absolute;
    background-image: url('../images/index/up_bg.png');
    left: 0;
    right: 0;
    bottom: -12px;
    top: auto;
    margin: auto;
    width: 40px;
    box-shadow: 0 6px 46px rgb(0 0 0 / 16%);
    height: 15px;
    transform: rotate(180deg);
    opacity: 1 !important;
    visibility: visible !important;
}



@media only screen and (min-width:767px) {
    .slider___mobile__wrapper {
        display: none;
    }
    .thumb__slider .brand__slider__content img {
   
        height: 153px;
    }

}

@media only screen and (max-width:767px) {
    .thumbnail__section__web__only {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
    .slider___mobile__wrapper {
        display: block;
    }
}

@media only screen and (max-width:600px) {}