@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

:root {
    --theme-color: #B9723F;
    --lato-family: "Lato", serif;
    --gotu-family: "Gotu", sans-serif;
    --marcellus-family: "Marcellus", serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: var(--lato-family);
    background: #fff;
    overflow-x: hidden;
}

p {
    margin-bottom: 0px;
}

html {
    scroll-behavior: smooth;
}

.owl-theme .owl-dots {
    display: none;
}

.owl-theme .owl-nav {
    display: block !important;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #666;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.btn:focus {
    box-shadow: none !important;
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-close:focus {
    box-shadow: none;
}

.btn:hover {
    color: #fff !important;
}

.accordion-button:focus {
    box-shadow: none;
}

a {
    color: #000;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0px;
    list-style-type: none;
}

a:hover {
    color: initial;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

/*.full-width {
  width: 100% !important;
}*/
.container {
    max-width: 95%;
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.vertical-space-2 {
    height: 10px;
}

.vertical-space-5 {
    display: inline-block;
    width: 100%;
    height: 5px;
}

.vertical-space-8 {
    display: inline-block;
    width: 100%;
    height: 8px;
}

.vertical-space-10 {
    display: inline-block;
    width: 100%;
    height: 10px;
}

.vertical-space-12 {
    display: inline-block;
    width: 100%;
    height: 12px;
}

.vertical-space-15 {
    display: inline-block;
    width: 100%;
    height: 15px;
}

.vertical-space-20 {
    display: inline-block;
    width: 100%;
    height: 20px;
}

.vertical-space-30 {
    display: inline-block;
    width: 100%;
    height: 30px;
}

.vertical-space-40 {
    display: inline-block;
    width: 100%;
    height: 40px;
}

.vertical-space-50 {
    display: inline-block;
    width: 100%;
    height: 50px;
}

.vertical-space-60 {
    display: inline-block;
    width: 100%;
    height: 60px;
}

.vertical-space-65 {
    display: inline-block;
    width: 100%;
    height: 65px;
}

.vertical-space-70 {
    display: inline-block;
    width: 100%;
    height: 70px;
}

.vertical-space-80 {
    display: inline-block;
    width: 100%;
    height: 80px;
}

.vertical-space-90 {
    display: inline-block;
    width: 100%;
    height: 90px;
}

.vertical-space-100 {
    display: inline-block;
    width: 100%;
    height: 100px;
}

.vertical-space-120 {
    display: inline-block;
    width: 100%;
    height: 120px;
}

.vertical-space-150 {
    display: inline-block;
    width: 100%;
    height: 150px;
}

.common {
    color: var(--theme-color);
}


.common-btn {
    background: var(--theme-color);
    /* fallback for old browsers */
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none !important;
    color: #fff !important;
}

.common-btn:hover,
.common-btn:focus {
    background: var(--theme-color);
    /* fallback for old browsers */
    color: #fff !important;
}

.common-btn1 {
    background: transparent;
    /* fallback for old browsers */
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #a65e2e !important;
    color: var(--theme-color) !important;
}

.common-btn1:hover,
.common-btn1:focus {
    background: #a65e2e;
    /* fallback for old browsers */
    color: #fff !important;
}

.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999;
    border-radius: 0px !important;
    background: #fff !important;
    transition: 0.5s all;
    animation: swip_down .5s linear 1;
    -webkit-box-shadow: 0 3px 5px rgba(106, 113, 124, 0.3);
    -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
    box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

@keyframes swip_down {
    from {
        transform: translate(0px, -50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.top-header {
    background: var(--theme-color);
    font-family: var(--fira-sans-family);
    padding: 10px 0px;
}

.top-header .top-header-left ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
}

.top-header .top-header-left ul li {
    margin-right: 25px;
    position: relative;
}

.top-header .top-header-left ul li:not(:last-child):after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #ffffff90;
}

.top-header .top-header-left .top-header-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}

.top-header .top-header-right .desc-link {
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}

.top-header .top-header-right .desc-link li {
    margin-left: 25px;
    position: relative;
}

.top-header .top-header-right .desc-link li:not(:last-child):after {
    content: "";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background: #fff;
}

.top-header .top-header-right .top-header-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #fff;
}

.top-header .top-header-left .top-header-link i {
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}

.top-header .social-icon {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
}

.top-header .social-icon li {
    margin-left: 15px;
}

.top-header .social-icon li a i {
    color: #fff;
    font-size: 13px;
    margin-right: 3px;
}

.top-header .follow-link {
    padding: 0px 20px;
    font-size: 14px;
    color: #fff;
}

.main-header {
    width: 100%;
}

.main-header .navbar {
    padding: 0px 0px 0px;
    width: 100%;
    position: relative;
    background: #fff;
    z-index: 1020;
}

/* .main-header .navbar::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 21%;
    height: 100%;
    background: #fff;
    z-index:-1;
}
.main-header .navbar::after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 77%;
    height: 100%;
    background: var(--theme-color);
    z-index:-2;
} */
.main-header .navbar .navbar-collapse {
    position: relative;
}

.main-header .navbar-brand img {
    width: 200px;
}

.main-header .navbar .nav-link {
    font-size: 16px;
    color: #333;
    padding: 20px 0px;
    position: relative;
    font-weight: 500;
    position: relative;
}

.main-header .navbar li {
    position: relative;
}

.main-header .navbar .nav-item:not(:last-child)::after {
    content: "✦";
    position: absolute;
    right: -4px;
    top: 50%;
    font-size: 10px;
    transform: translateY(-50%);
    color: #333;
}

.main-header .navbar li.dropdown .nav-link:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    margin-left: 4px;
    margin-top: 3px;
    opacity: .9;
    color: var(--theme-color);
}

.main-header .navbar .nav-link:hover,
.main-header .navbar .nav-link.active {
    color: var(--theme-color);
}

.main-header .navbar .nav-item {
    padding: 0px 22px;
}

.main-header .navbar .main-header-contact .icon {
    font-size: 24px;
    color: #8a8a8a;
    text-align: left;
}

.main-header .navbar .main-header-contact ul {
    margin-bottom: 0px;
    display: flex;
    justify-content: end;
}

.main-header .navbar .main-header-contact ul li {
    padding: 0px 25px;
    position: relative;
}

.main-header .navbar .main-header-contact ul li:last-child {
    padding-left: 25px;
    padding-right: 0px;
}

.main-header .navbar .main-header-contact ul li:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    height: 26px;
    background: #d5dce4;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.main-header .navbar .main-header-contact .contact-text {
    font-size: 15px;
    color: var(--theme-color);
    font-weight: 500;
}

.main-header .navbar .main-header-contact .phone-number {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

.main-header .navbar .main-header-contact .icon {
    margin-right: 10px;
    color: var(--theme-color);
    text-align: center;
    width: 45px;
    height: 45px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
}

.main-header .navbar .main-header-contact .text {
    float: right;
}

.main-header .navbar .nav-item.dropdown .dropdown-toggle::after {
    border: none;
}

.main-header .navbar .nav-item .dropdown-menu {
    border: none;
    border-top: 3px solid var(--theme-color);
    border-radius: 0px;
    background: #fff;
    padding: 0px;
    min-width: 550px;
    max-width: 100%;
    box-shadow: 0 3px 25px 0 rgba(0, 0, 0, .07), 0 0 0 rgba(0, 0, 0, .1) inset;
}

.main-header .navbar .dropdown .dropdown-menu .dropdown-item {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    display: block;
    padding: 10px 20px;
    text-align: left;
    color: #000;
    border-top: 1px solid rgba(0, 43, 92, .04);
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    background: transparent;
}

.main-header .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--theme-color) !important;
}

.main-header .navbar .dropdown:hover>ul.dropdown-menu {
    display: block !important;
    animation: swip_left .5s linear 1;
}

.main-header .navbar .dropdown .dropdown-menu li:last-child {
    border-bottom: none;
}

.main-header .navbar .social ul li {
    list-style-type: none;
    padding-left: 8px;
    color: #666;
}

.main-header .navbar .social ul {
    display: flex;
    padding-left: 0px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

.main-header .navbar .social i {
    color: #a55f2e;
    text-align: center;
    font-size: 14px;
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #f7f7f7;
    text-align: center;
    border-radius: 3px;
    margin: 0px 2px 0px 0px;
}

@keyframes bg-anim {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
        opacity: 1
    }

    80% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.main-header .navbar .social a {
    cursor: pointer;
}

.main-header .navbar .social i:hover {
    color: var(--theme-color);
}

@keyframes swip_left {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.header-btn {
    background: transparent;
    border: 1px solid var(--theme-color);
    padding: 10px 25px;
    color: var(--theme-color);
    font-size: 16px;
    border-radius: 30px;
}

.header-btn:hover,
.header-btn:focus {
    background: var(--theme-color);
    color: #fff;
}

.banner-img {
    position: relative;
}


.banner-img-1 {
    background-size: cover;
    background: url(../images/banner/banner-4.webp);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: calc(100vh - 117px);
    border-radius: 10px;
}

.banner-img-2 {
    background: url(../images/banner/banner-2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 100vh;
}

.banner-img-3 {
    background: url(../images/banner/banner-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.banner-img-4 {
    background: url(../images/banner/banner-7.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    width: 100%;
    height: 100vh;
}

.banner .banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

@keyframes swip_up {
    from {
        transform: translate(0px, 50px);
        opacity: 0
    }

    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

.banner-small-img {
    width: 85% !important;
    height: 450px;
    margin: 0 auto 0;
    position: relative;
    z-index: 0;
}

.banner-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.banner-small-img::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #A65E2E;
    transform: rotate(2deg);
    border-radius: 20px;
    z-index: -1;
}

.banner-small-img::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    transform: rotate(2deg);
    border-radius: 20px;
    z-index: -2;
}

.banner-section .banner-content .banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.banner-section .banner-content .banner-title {
    position: relative;
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 2px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    font-family: var(--marcellus-family);
}

.banner-section .banner-content .banner-title span {
    color: #ffe900;
}

.banner-section .banner-content .banner-text {
    font-size: 17px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #fff;
}

.banner-section .banner-content .banner-small-img {
    width: 100%;
}

.video-background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: auto;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: -2;
}

.banner-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    color: white;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .5) 30%, transparent 50%);
    z-index: -1;
}

.banner-section .banner-content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 0px;
    width: 100%;
}

.arrow {
    position: absolute;
    left: -100px;
    top: 50px;
}

#svgArrow {
    width: 80px;
}

.banner-section .banner-btn {
    background: #fff;
    /* fallback for old browsers */
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none !important;
    color: #000 !important;
}

.banner-section .banner-btn:hover,
.banner-section .banner-btn:focus {
    background: #fff;
    /* fallback for old browsers */
    color: #000 !important;
}


.main-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--theme-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-subtitle img {
    width: 24px;
    margin-right: 8px;
}

.main-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 65px;
    color: #000;
    margin-bottom: 15px;
 
    font-family: var(--marcellus-family)
}

.no_cap {
    text-transform: none;
}

.main-title-white {
    font-size: 44px;
    font-weight: 500;
    line-height: 65px;
    color: #fff;
    margin-bottom: 15px;
    /* text-transform: capitalize; */
    font-family: var(--marcellus-family)
}




.about-detail {
    padding: 70px 0px;
    position: relative;
    overflow-x: hidden;
}

.about-detail .pattern-02 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.about-detail .about-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
}

.about-detail .about-title {
    position: relative;
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 2px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #000;
    font-family: var(--marcellus-family);
}

.about-detail .about-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 15px;
}

.about-detail .arrow {
    top: 0%;
}

.about-detail .box-img {
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #efefef;
}

.about-detail .box-img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;

}

.about-detail .member-count {
    width: 50px;
    height: 50px;
    border: 2px solid #a55f2e;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -20px;
    color: #fff;
}

.about-detail .box-img img:not(:first-child) {
    margin-left: -20px;
}

.about-detail .about-small-img {
    width: 85% !important;
    height: 400px;
    margin: 0 auto 0;
    position: relative;
    z-index: 0;
}

.about-detail .about-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.about-detail .about-small-img::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #A65E2E;
    transform: rotate(2deg);
    border-radius: 20px;
    z-index: -1;
}

.about-detail .about-small-img::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    transform: rotate(2deg);
    border-radius: 20px;
    z-index: -2;
}

.who-this {
    padding: 50px 0px;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.who-this .who-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 25px;
}

.who-list {
    margin-bottom: 0px;
}

.who-list li {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 15px;
    display: inline-block;
    width: 49%;
    padding-left: 25px;
    position: relative;
}

.who-list li::after {
    content: "✦";
    position: absolute;
    left: 0px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
    color: var(--theme-color);
}

.who-list li:last-child {
    width: 100%;
    margin-bottom: 0px;
}

.who-this .pattern-01 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.who-this .box-wrapper {
    padding: 0px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.who-this .box-wrapper .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    margin-bottom: 25px;
}

.who-this .box-wrapper .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.who-this .box-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #000;
    font-family: var(--marcellus-family);
    height: 43px;
}

.who-this .box-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
}

.who-this .border-rt {
    position: relative;
}

.who-this .border-rt:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 90%;
    background: #efefef;
}

.who-this .box-wrapper .learn-link {
    margin-top: 25px;
    overflow: hidden;
}

.who-this .box-wrapper .read-link {
    display: flex;
    align-items: center;
}

.who-this .box-wrapper:hover .learn-link .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible;
    -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}

.who-this .box-wrapper .learn-link .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    /* text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0; */
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    will-change: visibility, margin-right, text-indent, opacity;
}

.who-this .box-wrapper .read-link i {
    font-size: 18px;
}

.who-this .box-wrapper .read-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--theme-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    justify-content: center;
}

.why-choose {
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
}

.why-choose .pattern-02 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.why-choose .why-choose-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    /* text-transform: capitalize; */
    font-family: var(--marcellus-family)
}

.why-choose .why-choose-text {
    font-size: 16px;
    color: #40304B;
    line-height: 28px;
    margin-bottom: 10px;
}

.why-choose .img-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
}

.why-choose .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.why-choose .small-img-box {
    width: 100%;
    height: 300px;
    position: relative;
}

.why-choose .small-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose .box-wrapper .icon {
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 20px;
    font-family: var(--gotu-family);
    color: #fff;
}

.why-choose .box-wrapper .icon::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.why-choose .box-wrapper .icon img {
    width: 28px;
}

.why-choose .box-wrapper .box-title {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    /* text-transform: capitalize; */
    font-family: var(--marcellus-family);
}

.why-choose .box-wrapper .box-text {
    font-size: 16px;
    color: #40304B;
    line-height: 28px;
    margin-bottom: 10px;
}

.why-choose .why-choose-padd {
    padding-left: 10px;
}


.service-detail {
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
}

.service-detail .pattern-02 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.service-detail .service-text {
    font-size: 16px;
    color: #40304B;
    line-height: 28px;
    margin-bottom: 10px;
}

.service-detail.service-detail-inner {
    background: transparent !important;
}

.service-detail .service-box .img-box {
    width: 100%;
    height: 380px;
    position: relative;
    z-index: 0;
    border-radius: 20px;
    overflow: hidden;
}

.service-detail .service-box .img-box:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.service-detail .service-box .img-box:hover:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.service-detail .service-box .img-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    bottom: 0;
    opacity: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #262626;
    border-radius: 20px;
    overflow: hidden;
}

.service-detail .service-box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.7s all;
}

.service-detail .service-box .img-box .content-box {
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 380px;
}

.service-detail .service-box .img-box .content-box .title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    /* text-transform: capitalize; */
    font-family: var(--marcellus-family)
}

.service-detail .service-box:hover .img-box img {
    transform: scale(1.23);
}

.service-detail .service-box .img-box .content-box .read-link {
    display: flex;
    justify-content: space-between;
}

.service-detail .service-box .img-box .content-box .read-link a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.testimonial-list {
    background-color: #F4F0ED;
    background-image: url(../images/bg09-copyright.png);
    padding: 50px 0px;
    background-position: center center;
    background-size: cover;
}

.testimonial-list .testimonial-box {
    background: #fff;
    padding: 25px;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 10px;
    border: 1px solid #f9f9f9;
}

.testimonial-list .testimonial-box .user-profile {
    margin-bottom: 10px;
}

.testimonial-list .testimonial-box .icon {
    width: 70px;
    height: 70px;
    max-width: 100%;
    margin: 0 auto 20px;
}

.testimonial-list .testimonial-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
}

.testimonial-list .testimonial-box .user-name {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0px;
    font-family: var(--marcellus-family);
    height: 43px;
}

.testimonial-list .testimonial-box .user-text {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 400;
    margin-bottom: 0px;

}

.testimonial-list .testimonial-box .box-text {
    font-size: 16px;
    color: #6e7889;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 28px;
    text-align: center;
    height: 387px;
    display: flex;
    align-items: center;
}

.testimonial-list .testimonial-box hr {
    opacity: 0.1;
}

.testimonial-list .testimonial-box .star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.testimonial-list .testimonial-box .star-rating i {
    font-size: 14px;
    color: #FF8A00;
    margin: 0px 2px;
}

.testimonial-carousel .owl-nav {
    display: block !important;
}

.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -80px;
    left: 0px;
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -80px;
    right: 0px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {

    font-size: 14px !important;
    color: #fff !important;
    background: #E1AE79 !important;
        width: 35px;
    height: 35px;
    line-height: 45px;
    text-align: center;
    outline: none;
    margin: 0px 5px;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}

.blog-section {
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
}

.blog-section .pattern-02 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.blog-section .blog-text {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 28px;
}

.blog-section .blog-card {
    border: none;
    width: 100%;
    height: 100%;
    background: transparent;
}

.blog-section .blog-card .blog-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--theme-color);
    border-radius: 30px;
    padding: 5px 15px;
    color: #fff;
}

.blog-section .blog-card .card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    transition: 0.5s all;
    position: relative;
    border-radius: 0px;
}

.blog-section .blog-card .card-img:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.blog-section .blog-card .card-img:hover:after {
    height: 250%;
    transition: all 600ms linear !important;
    background-color: transparent;
}

.blog-section .blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s all;
    border-radius: 20px;
}

.blog-section .blog-card .card-body {
    position: relative;
    width: 100%;
    padding: 0px;
}

.blog-section .blog-card .card-body .body-wrapper {
    padding: 15px 0px;
}

.blog-section .blog-card .user-list {
    display: flex;
}

.blog-section .blog-card .user-list li {
    font-size: 14px;
    color: #6e7889;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
    /* text-transform: capitalize; */
}

.blog-section .blog-card .user-list li:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3px;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #6e7889;
    border-radius: 50%;
}

.blog-section .blog-card .user-list li a {
    color: #6e7889;
}

.blog-section .blog-card .user-list li a:hover {
    color: var(--theme-color);
}

.blog-section .blog-card .user-list li i {
    margin-right: 5px;
    font-size: 13px;
    color: var(--theme-color);
}

.blog-section .blog-card .time-desc {
    font-size: 12px;
    color: #6e7889;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.blog-section .blog-card .card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--marcellus-family);
}

.blog-section .blog-card .card-title a {
    color: #000;
}

.blog-section .blog-card .card-text {
    font-size: 15px;
    color: #666;
    line-height: 30px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-section .blog-card .card-link {
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Raleway", serif;
    letter-spacing: .35em;
    position: relative;
    display: inline-block;
}

.blog-section .blog-card .card-link a {
    color: var(--theme-color);
}

.blog-section .blog-card .card-link:hover a {
    color: var(--theme-color);
}

.blog-section .blog-card .card-link:after {
    content: "\f0da";
    position: absolute;
    right: -15px;
    top: 47%;
    transform: translateY(-50%);
    color: var(--theme-color);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.5s all;
}

.blog-section .blog-card .card-link:hover:after {
    right: -17px;
    color: var(--theme-color);
}

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

.get-quote .quote-box {
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 35px;
    border-radius: 20px;
}

.get-quote .img-box {
    width: 100%;
    height: 400px;
}

.get-quote .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.get-quote .quote-text {
    font-size: 16px;
    color: #40304B;
    line-height: 28px;
    margin-bottom: 10px;
}

.footer-detail {
    background-color: #A66130;
    background-image: url(../images/bg09-copyright.png);
    background-size: cover;
    padding: 30px 0px 0px;
    position: relative;
    z-index: 0;
}

.footer-detail .footer-main-title {
    font-size: 40px;
    font-weight: 500;
    font-family: var(--marcellus-family);
    color: #fff;
    padding-bottom: 15px;
    position: relative;
}

.footer-detail .input-group .form-control {
    background: #fff;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 16px;
    font-weight: 400;
    width: 250px;
    max-width: 100%;
    padding: 10px 20px;
    color: #000;
    border-radius: 30px !important;
    font-family: var(--marcellus-family);
    margin-right: 10px;
}

.footer-detail .input-group .form-control::placeholder {
    color: #000;
}

.footer-detail .search-btn {
    background: #e1ae79;
    border-radius: 30px !important;
    color: #fff;
    font-size: 16px;
    padding: 15px 30px;
    border: none !important;
    text-align: center;
    font-family: var(--yantramanav-family);
}

.footer-detail .search-btn i {
    margin-left: 7px;
}

.footer-detail .shipping-detail {
    padding: 0px 0px 30px;
    border-bottom: 1px solid #ffffff40;
    margin-bottom: 25px;
}

.footer-detail .shipping-detail .shipping-title {
    position: relative;
    margin-bottom: 0px;
    font-size: 30px;
    font-weight: 400;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    /* text-transform: capitalize; */
    font-family: var(--marcellus-family);
}

.footer-detail .footer-content {
    padding: 0px 10px;
    position: relative;
    z-index: 1;
}

.footer-detail .footer-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.footer-detail .footer-logo img {
    width: 250px;
}

.footer-detail .footer-content .social-icon ul {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
    padding-top: 15px;
}

.footer-detail .footer-content .social-icon li {
    margin-right: 10px;
}

.footer-detail .footer-content .social-icon li a i {
    color: #fff;
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: transparent;
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
}

.footer-detail .footer-content .social-icon li a i:hover {
    color: #fff;
    border-color: #eee;
    background: var(--main-color);
}

.footer-detail .footer-title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    position: relative;
    font-family: var(--marcellus-family);
    margin-bottom: 15px;
}

.footer-detail.footer-text {
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
}

.footer-detail .footer-quick-links {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.footer-detail .footer-quick-links .footer-item:not(:last-child) {
    padding-right: 25px;
}


.footer-detail .footer-quick-links .footer-item .footer-link {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.footer-detail.footer-list li a:hover {
    color: #FFCB05;
}

.footer-detail .footer-contact-list {
    margin-bottom: 0px;
    padding-top: 0px;
}

.footer-detail .footer-contact-list li {
    padding-bottom: 12px;
}

.footer-detail .footer-contact-list .footer-contact {
    color: #ffff;
    font-size: 15px;
    font-weight: 400;
}

.footer-detail .footer-contact-list .footer-contact i {
    margin-right: 10px;
}

.footer-detail .footer-contact-list .footer-contact b {
    font-weight: 700;
}

.footer-bottom {
    margin-top: 30px;
    padding: 15px 0px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #ffffff14;
}

.footer-bottom .copyright-text {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0px;
}

.footer-bottom .copyright-text a {
    color: #fff;
}


.about-banner {
    background: #ba7240 !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 80px 0px !important;
    position: relative;
    z-index: 0;
}

.about-banner::after {
    display: none;
}

.page-banner {
    background: url(../images/page-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 100px 0px;
    position: relative;
    z-index: 0;
}

.page-banner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .5) 30%, transparent 50%);
    opacity: 0.8;
    z-index: -1;
}

.page-banner .banner-content .banner-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.page-banner .banner-content .banner-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #fff;
    font-family: var(--marcellus-family);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.page-banner .banner-content .banner-title span {
    color: #ffe900;
}

.page-banner .banner-content .banner-text {
    font-size: 18px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #000;
}

.page-banner .breadcrumb-item.active {
    color: #fff;
}

.page-banner .breadcrumb-item {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 10px;
}

.page-banner .breadcrumb-item a {
    color: #fff;
}


.our-story {
    padding: 50px 0px 80px;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

.our-story .story-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 25px;
}

.our-story .story-text:last-child {
    margin-bottom: 0px;
}

.our-story .pattern-01 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.our-story .img-section {
    position: relative;
}

.our-story .img-box {
    width: 100%;
    height: 400px;
}

.our-story .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.our-story .img-box-1 {
    width: 100%;
    height: 400px;
    margin-top: 100px;
}

.our-story .img-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-training {
    padding: 50px 0px;
    position: relative;
    overflow-x: hidden;
}

.why-training .pattern-02 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    height: 100%;
    z-index: -1;
}

.why-training .img-box {
    width: 100%;
    height: 400px;
    text-align: center;
}

.why-training .img-box img {
    width: 60%;

    margin: 0 auto;
}

.accordion-button:not(.collapsed) {
    background: var(--theme-color);
    color: #fff;
}

.accordion-button {
    border-radius: 0px !important;
}

.accordion-item {
    border: none !important;
    border-radius: 0px !important;
    margin-bottom: 10px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M2 13.5a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 0-1H3.707L13.854 2.854a.5.5 0 0 0-.708-.708L3 12.293V7.5a.5.5 0 0 0-1 0z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    border-color: var(--theme-color) !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    border-color: var(--theme-color);
}

.accordion-button {
    border: 1px solid #efefef;
    font-family: var(--marcellus-family);
    font-size: 20px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M2 13.5a.5.5 0 0 0 .5.5h6a.5.5 0 0 0 0-1H3.707L13.854 2.854a.5.5 0 0 0-.708-.708L3 12.293V7.5a.5.5 0 0 0-1 0z'/%3e%3c/svg%3e");

}

.why-training .accordion-body .box-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 0px;
}


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

.why-diffrent .box-wrapper-list {
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 35px;
    border-radius: 20px;
}

.why-diffrent .box-wrapper-list .box-wrapper {
    padding: 0px 25px;
    text-align: center;
}

.why-diffrent .box-wrapper-list .box-wrapper .icon {
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.why-diffrent .box-wrapper-list .box-wrapper .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: brightness(0) invert(1);
}

.why-diffrent .box-wrapper-list .box-wrapper .box-title {
    position: relative;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    color: #000;
    font-family: var(--marcellus-family);
}

.why-diffrent .box-wrapper-list .box-wrapper .box-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
}


.contact {
    padding: 60px 0px;
}

.contact .contact-left,
.contact .contact-right {
    padding: 0px 30px;
}

.contact .contact-title {
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    font-family: var(--marcellus-family);
}

.contact .contact-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #242424;
    margin-bottom: 20px;
}

.contact .contact-detail {
    display: flex;
    margin-bottom: 35px;
}

.contact .contact-detail .icon img {
    width: 45px;
}

.contact .contact-detail .text-wrapper {
    margin-left: 15px;
}

.contact .contact-detail .text-wrapper .reservation-text {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    font-family: var(--marcellus-family);
    display: block;
    margin: 0px;
    margin-bottom: 10px;
}

.contact .contact-detail .text-wrapper .reservation-title {
    margin: 0;
    line-height: inherit;
    ;

}

.contact .contact-detail .text-wrapper .reservation-title a {
    font-size: 16px;
    color: #666666;
    margin-right: 10px;
}

.contact .contact-right {
    padding: 25px;
    border-radius: 12px;
}

.contact .contact-right .swipe {
    width: 230px !important;
}

.contact .get-title {
    font-weight: 500;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #000;
    font-size: 24px;
}

.contact form .form-label {
    color: #000;
    font-weight: 600;
}

.contact form .form-control {
    max-width: 100%;
    padding: 12px 20px;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    width: 100%;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 400;
    color: #40304B;
    background-image: none;
    border: 1px solid #efefef;
}

.contact form .form-control::placeholder {
    color: #40304B;
}

.contact .input-container {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 30px;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.07) -21.43%, rgba(255, 255, 255, 0.09) 113.53%);
    transition: 0.1s all;
    -webkit-transition: all .4s;
    transition: all .4s;
}




.contact .input-field {
    width: 100%;
    padding: 10px;
    outline: none;
    border: none;
}

.input-field:focus {
    border: none;
}

#file-input {
    display: none;
}


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

.faq-detail .img-section {
    position: relative;
    padding-left: 30px;
}

.faq-detail .img-box {
    width: 100%;
    height: 400px;
}

.faq-detail .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.faq-detail .img-box-1 {
    width: 100%;
    height: 400px;
    margin-top: 50px;
}

.faq-detail .img-box-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.faq-detail .accordion-item {
    margin-bottom: 10px;
}

.faq-detail .accordion-body .box-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 0px;
}


.event-section {
    padding: 60px 0px;
}

.event-section .event-img {
    width: 100%;
    height: 450px;
    margin-bottom: 35px;
    position: relative;
}

.event-section .event-img .blog-badge {
    position: absolute;
    left: 20px;
    top: 20px;
    background: var(--theme-color);
    border-radius: 30px;
    padding: 5px 15px;
    color: #fff;
}

.event-section .event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

.event-section .event-title {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 35px;
    font-family: var(--marcellus-family);
}

.event-section .user-views {
    display: flex;
    margin: 15px 0px;
    padding-bottom: 25px;
    border-bottom: 1px solid #efefef;
}

.event-section .user-views li {
    margin-right: 20px;
}

.event-section .user-views li a {
    font-size: 14px;
    color: #666;
}

.event-section .user-views li a i {
    color: var(--theme-color);
    margin-right: 10px;
    font-size: 16px;
}

.event-section .event-text {
    font-size: 15px;
    line-height: 25px;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
}

.event-section .qoute-box {
    border: 2px solid var(--theme-color);
    padding: 20px;
    margin: 25px 0px;
}

.event-section .qoute-box span {
    font-size: 40px;
    float: left;
    margin-right: 15px;
    color: var(--theme-color);
}

.event-section .qoute-box h5 {
    font-size: 16px;
    font-family: var(--marcellus-family);
    line-height: 28px;
    margin-bottom: 0px;
}

.event-section .sidebar .sidebar-item {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.event-section .sidebar .sidebar-item.widget_text {
    padding: 0;
}

.event-section .sidebar {
    padding-left: 35px;
    position: sticky;
    top: 0px;
}

.event-section .sidebar .sidebar-item:last-child {
    margin: 0;
}

.event-section .sidebar .sidebar-item h4 {
    /* text-transform: capitalize; */
    color: #232323;
    margin-bottom: 25px;
    font-family: var(--marcellus-family);
}

.event-section .sidebar .sidebar-item.link li {
    display: block;
    margin-bottom: 10px;
}

.event-section .sidebar .sidebar-item.link li .sidebar-link {
    display: block;
    font-weight: 500;
    color: #666666;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    padding-left: 15px;
    font-size: 15px;
}

.event-section .sidebar .sidebar-item.link li .sidebar-link::after {
    position: absolute;
    right: 15px;
    top: 17px;
    content: "\F123";
    font-family: 'Bootstrap-icons';
}

.event-section .sidebar .sidebar-item.link li .sidebar-link:hover,
.event-section .sidebar .sidebar-item.link li.active .sidebar-link {
    background-color: var(--theme-color);
    color: #ffffff;
}

.event-section .sidebar .sidebar-item.link li.current-menu-item i {
    color: #ffffff;
}

.event-section .sidebar .sidebar-item.link li .sidebar-link:hover i {
    color: #ffffff;
}

.event-section .sidebar .sidebar-item.link li .sidebar-link i {
    color: #1A2C79;
    margin-right: 5px;
    transition: all 0.35s ease-in-out;
}

.event-section .sidebar .sidebar-item.link li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}




.event-section .blog-horizontal-card {
    border: none;
    border-radius: 0px;
    background: transparent;
}

.event-section .blog-horizontal-card .img-box {
    position: relative;
}

.event-section .blog-horizontal-card .card-img-top {
    border-radius: 8px;
}

.event-section .blog-horizontal-card .card-body {
    padding: 0px 15px;
}

.event-section .blog-horizontal-card .card-body .card-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-family: var(--marcellus-family);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-section .blog-horizontal-card .card-body .card-title a {
    color: #000;
}

.event-section .blog-horizontal-card .card-body .card-title a:hover {
    color: var(--theme-color);
}

.event-section .blog-horizontal-card .card-body .user-views-small {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0px;
    padding-bottom: 0px;
}

.event-section .blog-horizontal-card .card-body .user-views-small li {
    margin-right: 20px;
}

.event-section .blog-horizontal-card .card-body .user-views-small li a {
    font-size: 13px;
    color: #8A879F;
}

.event-section .blog-horizontal-card .card-body .user-views-small li a i {
    color: var(--theme-color);
    margin-right: 10px;
    font-size: 13px;
}

.event-section .blog-horizontal-card .card-body .card-text {
    color: #8A879F;
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


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

.service-detail .course-detail {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #efefef;
}

.service-detail .course-detail .course-title {
    font-size: 26px;
    color: #000;
    font-weight: 500;
    font-family: var(--marcellus-family);
    margin-bottom: 20px;
}

.service-detail .course-detail .box-wrapper {
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 25px;
    border-radius: 20px;
}

.service-detail .course-detail .box-wrapper p {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.service-detail .book-form {
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 25px;
    border-radius: 20px;
}

.service-detail .book-form .form-title {
    font-size: 26px;
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--marcellus-family);
    margin-bottom: 20px;
}

.service-detail .book-form .form-control,
.service-detail .book-form .form-select {
    padding: 12px 20px;
    border-radius: 50px;
}

.service-detail .course-list {
    background: var(--theme-color);
    padding: 30px;
    border-radius: 20px;
}

.service-detail .course-list .list-title {
    font-size: 26px;
    color: #fff;
    font-weight: 500;
    font-family: var(--marcellus-family);
    margin-bottom: 20px;
}

.service-detail .course-list .list-wrapper {
    margin-bottom: 0px;
}

.service-detail .course-list .list-wrapper li {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
}

.service-detail .course-list .list-wrapper li::after {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    content: " \F138";
    font-family: 'Bootstrap-icons';
}

.service-detail .course-list .list-wrapper li a {
    color: #fff;
}

.service-detail .course-list .list-wrapper li:last-child {
    margin-bottom: 0px;
}

.service-detail .service-img {
    width: 100%;
    margin-bottom: 25px;
}

.service-detail .service-img img {
    width: 100%;
    border-radius: 20px;
}

.service-detail .service-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--theme-color);
    font-family: var(--marcellus-family);
}

.service-detail .service-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
}

.service-detail .learn-box {
    background: linear-gradient(135deg, #d68a3e08 0%, #efefef38 100%);
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
}

.service-detail .learn-box .box-title {
    position: relative;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--theme-color);
    font-family: var(--marcellus-family);
}

.service-detail .learn-box .box-list li {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.service-detail .learn-box .box-list li::after {
    content: "✦";
    position: absolute;
    left: 0px;
    top: 0;
    font-size: 14px;
    color: var(--theme-color);
}

.service-detail .accordion-item {
    margin-bottom: 10px;
}

.service-detail .accordion-body .box-text {
    font-size: 16px;
    line-height: 28px;
    font-family: "Lato", sans-serif;
    color: #333;
    margin-bottom: 0px;
}


#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: var(--theme-color);
    color: #fff;
    cursor: pointer;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
}

#myBtn::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

#myBtn:hover {
    background-color: var(--theme-color);
}

@media (min-width:2000px) {}



@media (min-width: 992px) and (max-width: 1199.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 120px;
    }

    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link i {
        float: right;
    }

    .mobile-header .mobile-header-list .sub-link {
        padding: 10px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }

    .main-section {
        height: auto;
    }

    .banner {
        padding: 30px 0px;
    }

    .banner .banner-content-wrapper {
        right: 0px;
        padding: 0px;
    }

    .banner .banner-title {
        font-size: 26px;
        line-height: 40px;
    }

    .banner .img-effect img {
        bottom: -12px;
    }

    .banner .banner-content-wrapper .project-count {
        margin-right: 0px;
    }

    .border-rt:nth-child(2)::after {
        width: 0px;
    }

    .banner .banner-img-box {
        height: 300px;
    }

    .about-.banner-section.about-padd {
        padding: 0px;
    }

    .about-section .about-title,
    .blog-section .blog-title,
    .our-gallery .gallery-title,
    .serving-industry .serving-industry-bg .product-title,
    .client-service .client-title,
    .product-section .product-title {
        font-size: 30px;
    }

    .service-detail {
        padding: 20px 0px;
    }

    .main-title,
    .main-title-white {
        font-size: 30px;
        line-height: 40px;
    }

    .progress-content {
        margin-right: 0px;
    }

    .why-choose .img-box {
        height: 300px;
    }

    .milestone-detail {
        padding: 20px 0px;
    }

    .footer .footer-main-title,
    .page-banner .banner-title {
        font-size: 30px;
    }

    .footer-bottom .copyright-text {
        text-align: center !important;
    }

    .footer .footer-quick-links {
        justify-content: center;
    }

    .footer .footer-quick-links .footer-item:not(:last-child) {
        padding-right: 14px;
    }

    .footer .footer-quick-links .footer-item .footer-link {
        font-size: 14px;
    }

    .page-banner {
        height: 150px;
    }

    .about-section .img-box {
        height: 300px;
    }

    .our-motto,
    .content-detail {
        padding: 20px 0px;
    }

    .news-letter .news-letter-title {
        font-size: 25px;
    }

    .blog-detail {
        padding: 20px 0px 50px;
    }

    .contact .contact-left,
    .contact .contact-right {
        padding: 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991.98px) {
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
              width: 120px;
    }

    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link i {
        float: right;
    }

    .mobile-header .mobile-header-list .sub-link {
        padding: 10px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }

    .main-section {
        height: auto;
    }

    .banner {
        padding: 30px 0px;
    }

    .banner .banner-content-wrapper {
        right: 0px;
        padding: 0px;
    }

    .banner .banner-title {
        font-size: 26px;
        line-height: 40px;
        margin-right: -100px;
    }

    .banner .img-effect img {
        bottom: -12px;
    }

    .banner .banner-content-wrapper .project-count {
        margin-right: -350px;
    }

    .border-rt:nth-child(2)::after {
        width: 0px;
    }

    .banner .banner-img-box {
        height: 500px;
    }

    .about-section .about-padd {
        padding: 0px;
    }

    .about-section .about-title,
    .blog-section .blog-title,
    .our-gallery .gallery-title,
    .serving-industry .serving-industry-bg .product-title,
    .client-service .client-title,
    .product-section .product-title {
        font-size: 30px;
    }

    .service-detail {
        padding: 20px 0px;
    }

    .main-title,
    .main-title-white {
        font-size: 30px;
        line-height: 40px;
    }

    .progress-content {
        margin-right: -100px;
    }

    .why-choose .img-box {
        height: 400px;
    }

    .milestone-detail {
        padding: 20px 0px;
    }

    .footer .footer-main-title,
    .page-banner .banner-title {
        font-size: 30px;
    }

    .footer-bottom .copyright-text {
        text-align: center !important;
    }

    .footer .footer-quick-links {
        justify-content: center;
    }

    .page-banner {
        height: 150px;
    }

    .about-section .img-box {
        height: 300px;
    }

    .our-motto,
    .content-detail {
        padding: 20px 0px;
    }

    .news-letter .news-letter-title {
        font-size: 25px;
    }

    .blog-detail {
        padding: 20px 0px 50px;
    }

    .contact .contact-left,
    .contact .contact-right {
        padding: 0px;
    }

    .content-detail .img-box1 {
        height: 237px;
    }
}
.mobileVersion{
    display: none;
}
@media only screen and (max-width: 575.98px) {
    .mobilePadding{
    padding-top: 0;
}
.about-banner{
        padding: 30px 0px !important;
}
.testimonial-list .testimonial-box .user-text{
        display: block;
        margin-top: 10px;
}
    .mobileVersion{
               display: block;
        width: 50%;
        text-align: center;
        margin: 0 auto;
    }
    .desktopVersion{
        display: none;
    }
    .mobile_flex_direction{
        flex-direction: column-reverse;
    }
    .d_flex_mob{
        display: block !important;
    }
    .about-img-card img{
               height: 38px !important;
    }
    .about-banner-images{

    }
    .mobileTop{
        margin-top: 1.5rem;
    }
    .about-detail .about-title,.page-banner .banner-content .banner-title,.banner-section .banner-content .banner-title{
        font-size: 30px !important;
        line-height: 40px;
    }
    .why-training .img-box,.service_page .box-wrapper{
        height: auto !important;
    }
    .mt-sm-1 {
        margin-top: 10px;
    }
    .ml-sm-0{
        margin-left: 0px !important;
    }
    .web-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .mobile-header {
        padding: 10px 0px;
        background: #fff;
    }

    .mobile-header .logo img {
        width: 120px;
    }

    .mobile-header .mobile-header-list {
        list-style-type: none;
        margin-left: 0px;
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .mobile-header .mobile-header-list .nav-item {
        border-bottom: 1px solid #8A879F1c;
        opacity: 0.7;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link {
        padding: 10px 0px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item .nav-link i {
        float: right;
    }

    .mobile-header .mobile-header-list .sub-link {
        padding: 10px;
        font-size: 15px;
        color: #8A879F;
        position: relative;
        line-height: 25px;
    }

    .mobile-header .mobile-header-list .nav-item:last-child {
        border-bottom: none;
    }

    .mobile-header .offcanvas {
        width: 360px;
    }

    .mobile-header .offcanvas .logo img {
        width: 160px;
    }

    .toggler {
        color: var(--theme-color);
        font-size: 30px;
        border: none;
        text-align: center;
        padding: 0px;
    }

    .toggler:focus,
    .toggler:hover {
        color: var(--theme-color);
        background: transparent;
    }

    .mobile-header .social ul {
        justify-content: flex-start;
    }

    .mobile-header .offcanvas-body {
        line-height: initial;
    }

    .main-section {
        height: auto;
    }

    .banner {
        padding: 30px 0px;
    }

    .banner .banner-content-wrapper {
        right: 0px;
        padding: 0px;
    }

    .banner .banner-title {
        font-size: 26px;
        line-height: 40px;
    }

    .banner .img-effect img {
        bottom: -12px;
    }

    .banner .banner-content-wrapper .project-count {
        margin-right: 0px;
    }

    .border-rt:nth-child(2)::after {
        width: 0px;
    }

    .banner .banner-img-box {
        height: 300px;
    }

    .about-section .about-padd {
        padding: 0px;
    }

    .about-section .about-title,
    .blog-section .blog-title,
    .our-gallery .gallery-title,
    .serving-industry .serving-industry-bg .product-title,
    .client-service .client-title,
    .product-section .product-title {
        font-size: 30px;
    }

    .service-detail {
        padding: 20px 0px;
    }

    .main-title,
    .main-title-white {
        font-size: 30px;
        line-height: 40px;
    }

    .progress-content {
        margin-right: 0px;
    }

    .why-choose .img-box {
        height: 300px;
    }

    .milestone-detail {
        padding: 20px 0px;
    }

    .footer .footer-main-title,
    .page-banner .banner-title {
        font-size: 30px;
    }

    .footer-bottom .copyright-text {
        text-align: center !important;
    }

    .footer .footer-quick-links {
        justify-content: center;
    }

    .footer .footer-quick-links .footer-item:not(:last-child) {
        padding-right: 14px;
    }

    .footer .footer-quick-links .footer-item .footer-link {
        font-size: 14px;
    }

    .page-banner {
        height: 150px;
    }

    .about-banner {
        height: max-content;
    }

    .about-section .img-box {
        height: 300px;
    }

    .our-motto,
    .content-detail {
        padding: 20px 0px;
    }

    .news-letter .news-letter-title {
        font-size: 25px;
    }

    .blog-detail {
        padding: 20px 0px 50px;
    }

    .contact .contact-left,
    .contact .contact-right {
        padding: 0px;
    }

    .footer-bottom {
        margin-top: 15px;
    }


}

.joinCommunity {
    font-size: 12px;
    color: #333;
    padding-left: 8px;
    display: block;
    text-align: center;
}

.abtvideo {
    border: 0;
    box-shadow: none;
    border-radius: 10px;
}

.section-video {
    width: 100%;
    height: 400px;
}

.text-left {
    text-align: left !important;
}

.service_page .icon {
    margin: inherit !important;
}

.white-color {
    color: #fff !important;
}

.mt6rem {
    margin-top: 6rem !important;
}

.who-lis-home li {
    width: 100%;
}

.no_text_trans {
    text-transform: none;
}

.our_service .img-box img {
    height: 300px;
}

.our_service .img-box {
    height: auto;
}

.cusFlex h5 {
    height: auto !important;
    margin: 0 !important;
    margin-left: 20px !important;
}

.cusFlex {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cusFlex img {
    margin-right: 10px;
    background: #fff;
    width: 80px !important;
    height: 80px !important;
    padding: 17px;
    border-radius: 10px;
    border: 1px solid #b97240;
}

.cusFlex .icon {
    width: auto !important;
    height: auto !important;
}

.service_page .box-wrapper {
    border-radius: 10px;
    padding: 20px;
    border: 2px solid #b97240;
height: 314px;
}

.about-banner-images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.about-img-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.about-img-card img {
    height: 130px;
    margin: 0 10px;
}

.about-img-card h4 {
    color: #fff;
    margin-top: 5px;
    font-size: 17px;
}

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

    .about-banner-images {
        justify-content: space-evenly;
    
    }
   

}

@media screen and (max-width:992px) {
     .about .about-banner{
        height: max-content !important;
    }
}

.service_page .accordion-header button img{
    width: 35px
}

.service_page .accordion-button:not(.collapsed) img{
    filter: invert(100) brightness(100);
}

