:root {
    --thm-black: #262e39;
    --thm-black-rgb: 38, 46, 57;
    --thm-base: #0f3588;
    --thm-base-rgb: 15, 53, 136;
}


:root {
    /* --thm-font: 'Be Vietnam', sans-serif; */
    --thm-font: helvetica, arial, sans-serif;
    /* --thm-font-2: 'Inter', sans-serif; */
    --thm-font-2: helvetica, arial, sans-serif;
    --thm-gray: #757575;
    --thm-black: #1e1e2a;
    --thm-black-rgb: 30, 30, 42;
}







/*==============================================
   Base Css
===============================================*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

html,
body {
    height: 100%;
}

body {
    color: var(--thm-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
}

button:focus {
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-weight: 700;
    line-height: 1.25em;
    font-family: var(--thm-font-2);
    margin: 0;
}


a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
}

.sp {
    padding: 150px 0;
}



.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fancybox-image,
.fancybox-spaceball {
    border-radius: 10px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}


img {
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
    padding: 5px 10px 5px;
}

.map-data a {
    color: #0b59d9;
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #121212;
}



i {
    font-style: normal;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}



.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-left: 45px;
    padding-right: 45px;
    background-color: transparent;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 60px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font-2);
    z-index: 2;
}

.btn-one:before {
    position: absolute;
    top: 115px;
    left: -50px;
    right: -50px;
    height: 170px;
    content: "";
    background: var(--thm-base);
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
    border-radius: 50%;
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    z-index: 1;
}

.btn-one:hover:before {
    top: 0%;
    left: -70px;
    right: -70px;
}

.btn-one:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    border: 2px solid var(--thm-base);
    background-color: transparent;
    opacity: 1;
    transform: scaleX(1.0);
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    z-index: -1;
}

.btn-one:hover:after {
    transform: scaleX(0);
    webkit-transition-duration: 1500ms;
    transition-duration: 1500ms;
}


.btn-one.style2 {
    color: var(--thm-black);
}

.btn-one.style2:after {
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-one.style2:hover:after {
    transform: scaleX(0);
    webkit-transition-duration: 1500ms;
    transition-duration: 1500ms;
}

.btn-one.style2:before {
    background-color: var(--thm-black);
}

.btn-one .txt {
    position: relative;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
}


.btn-two {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two:before {
    font-family: Fontawesome;
    content: "\f107";
    position: absolute;
    top: -2px;
    left: 0;
    font-weight: 400;
    font-size: 22px;
    transform: rotate(-135deg);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.btn-two:hover:before {
    transform: rotate(-90deg);
    top: 0;
}

.btn-two:hover {
    color: var(--thm-base);
}




.checked-box1 {
    position: relative;
    display: block;
    min-height: 40px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #585858;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 40px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #dae5ec;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 30px;
    height: 30px;
    background: var(--thm-primary);
    border-radius: 50%;
    margin: 4px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #dae5ec;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}






.checked-box2 {
    position: relative;
    display: block;
    min-height: 30px;
}

.checked-box2 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #757575;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"] {
    display: none;
}

.checked-box2 input[type="checkbox"]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 label span:before {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    margin: 0px;
    color: var(--thm-base);
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked+label span {
    border-color: #dedede;
}

.checked-box2 input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}






.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border-radius: 50%;
    border: 2px solid var(--thm-base);
    color: #ffffff;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.thm-social-link1 ul li a:hover:before {
    transform: scaleX(1.0);
}

.thm-social-link1 ul li a:hover {
    color: #ffffff;
}





.thm-social-link2 {
    position: relative;
    display: block;
}

.thm-social-link2 ul {
    position: relative;
    overflow: hidden;
}

.thm-social-link2 ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.thm-social-link2 ul li:last-child {
    margin-right: 0;
}

.thm-social-link2 ul li a {
    position: relative;
    display: block;
    color: #909090;
    font-size: 16px;
    line-height: 30px;
    transition: all 500ms ease;
}

.thm-social-link2 ul li a:hover {
    color: var(--thm-primary);
}



.parallax-bg-one {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax-bg-one::before {
    background: rgba(18, 32, 0, 0.90) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}



/*___ owl Nav Dot Style _____*/
.owl-theme .owl-prev span,
.owl-theme .owl-next span {}

.owl-nav-style-one {}

.owl-nav-style-one .owl-controls {}

.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    margin: 0 0 0 0px;
    padding: 0;
    transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    content: "\f149";
    font-family: flaticon !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid #ffffff;
    color: var(--thm-base);
    font-size: 18px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
    border-color: var(--thm-base);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    display: none;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(-270deg);
    margin-right: 10px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
    transform: rotate(270deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--thm-base);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
    color: #ffffff
}



.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 50px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid #e0e0e0;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    border-color: var(--thm-base);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active span {}




@keyframes pulse {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, .1),
            0 0 0 20px rgba(238, 238, 238, 0.3000);
    }
}

@keyframes pulse2 {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 231, 1, .1),
            0 0 0 20px rgba(255, 231, 1, 0.3000);
    }
}



.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden !important;
    background: #ffffff none repeat scroll 0 0;
    width: 100%;
    min-width: 320px;
}




/*** 
=====================================================
	Main Slider style3 style
=====================================================
***/
.main-slider.style3 {}

.main-slider.style3 .slide .image-layer:before {
    background-color: rgba(0, 0, 0, 0.20);
}

.main-slider.style3 .content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
    background: rgb(0 0 0 / 33%);
    padding: 30px;
}

.main-slider.style3 .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider.style3 .active .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider.style3 .sub-title .border-box-left {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-right: 10px;
}

.main-slider.style3 .sub-title .border-box-right {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-left: 10px;
}

.main-slider.style3 .sub-title h6 {
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


.main-slider.style3 .content .big-title {
    margin-bottom: 36px;
}

.main-slider.style3 .content .btns-box a {
    color: #ffffff;
    padding-left: 53px;
    padding-right: 53px;
}

.main-slider.style3 .content .btns-box a.btn-one:after {
    border: 2px solid #ffffff;
}

.main-slider.style3 .banner-carousel.owl-carousel .owl-dots {
    display: none;
}






/*** Scroll To Top style ***/
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: var(--thm-base);
    border-radius: 0%;
    font-size: 20px;
    line-height: 56px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
}

.scroll-top span {}

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

.scroll-top:hover {
    color: #ffffff;
    background-color: var(--thm-black);
    border-color: var(--thm-black);
}

.scroll-top.style2 {
    position: absolute;
    left: 0;
    top: -20px;
    right: 0;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #0098ff;
    border: none;
    text-align: center;
    animation: auto;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
}



/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}





/* Update header Style */
@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -74px;
    }

    100% {
        margin-top: 0;
    }
}




/*** 
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 30px 0;
}

.nav-outer.style1 .mobile-nav-toggler {
    padding: 20px 0 20px;
}

.nav-outer.style2 .mobile-nav-toggler {
    padding: 16px 0;
}

.nav-outer.style3 .mobile-nav-toggler {
    padding: 45px 0;
}


.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 3px 5px;
    background: var(--thm-base);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 32, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .mCSB_inside>.mCSB_container {
    margin-right: 5px;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}


.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #000000;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: var(--thm-base);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}


.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid var(--thm-primary);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: var(--thm-base);
}


.mobile-menu .navigation li ul li>a {
    font-size: 15px;
    font-weight: 400;
    margin-left: 20px;
    text-transform: capitalize;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 32px;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 50px 15px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 1px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 16px;
    line-height: 41px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}



.sec-title {
    position: relative;
    display: block;
    margin-top: -3px;
    padding-bottom: 50px;
}

.sec-title.center .sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec-title .sub-title {
    position: relative;
    display: block;
    padding-bottom: 13px;
}

.sec-title .sub-title h6 {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-base);
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    font-family: var(--thm-font-2);
}

.sec-title .sub-title .border-left {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-right: 10px;
    border-left: none !important;
}

.sec-title .sub-title .border-right {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-left: 10px;
    border-right: none !important;
}

.sec-title h2 {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 600;
    text-transform: none;
}





/*** 
=============================================
  Choose Style1 Area Css
=============================================
***/
.choose-style2-area {
    position: relative;
    display: block;
    padding-bottom: 120px;
    z-index: 1;
}

.choose-style2-area.pd120-0-90 {
    padding: 120px 0 90px;
}

.choose-style2-area-bg {
    position: absolute;
    top: -55px;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    filter: grayscale(100%);
    z-index: -1;
}

.choose-style2-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f5f5f5;
    opacity: 0.90;
    z-index: -1;
}


.single-choose-box {
    position: relative;
    display: block;
    padding-top: 20px;
    padding-left: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-choose-box.mar-b-30 {
    margin-bottom: 30px;
}

.single-choose-box:hover {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.single-choose-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 20px;
    right: 20px;
    border: 1px solid var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.single-choose-box:hover:before {
    top: 20px;
    left: 20px;
    bottom: 0px;
    right: 0px;
}

.single-choose-box .inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 40px 30px 32px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.single-choose-box .inner .icon {
    position: absolute;
    top: 30px;
    right: 30px;
}

.single-choose-box .inner .icon span:before {
    color: transparent;
    font-size: 80px;
    line-height: 80px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(221 221 221 / 1.0);
    transition: all 300ms ease 100ms;
}

.single-choose-box:hover .inner .icon span:before {
    -webkit-text-stroke-color: rgba(var(--thm-base-rgb), 1.0);
}


.single-choose-box .inner .counting-box {
    position: relative;
    display: block;
    width: 110px;
    height: 50px;
    color: #ffffff;
    font-size: 20px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    font-family: var(--thm-font-2);
    z-index: 1;
}

.single-choose-box .inner .counting-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    right: 20px;
    background: var(--thm-base);
    -moz-transform: skew(-40deg, 0deg);
    -webkit-transform: skew(-40deg, 0deg);
    -o-transform: skew(-40deg, 0deg);
    -ms-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg);
    transition: all 900ms ease 100ms;
    z-index: -1;
}

.single-choose-box:hover .inner .counting-box::after {
    -moz-transform: skew(40deg, 0deg);
    -webkit-transform: skew(40deg, 0deg);
    -o-transform: skew(40deg, 0deg);
    -ms-transform: skew(40deg, 0deg);
    transform: skew(40deg, 0deg);
}

.single-choose-box .inner .text {
    position: relative;
    display: block;
    padding-top: 28px;
}

.single-choose-box .inner .text h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 9px;
}

.single-choose-box .inner .text p {
    margin: 0;
}

.single-choose-box .inner .text .btn-box {
    position: relative;
    display: block;
    margin-top: 19px;
}

.choose-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
}

.choose-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: var(--thm-base);
}

.choose-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
    color: #ffffff;
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}




/*** 
=============================================
   contact Style1 Area Css
=============================================
***/
.contact-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 1;
}

.contact-style1-area:before {
    content: "";
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 0;
    right: 0;
    background: #f5f5f5;
    z-index: -1;
}

.contact-style1-area .auto-container {
    max-width: 1320px;
}

.contact-style1_inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: 1;
}

.contact-style1_inner-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: -1;
}

.contact-style1_inner-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 18%;
    background-color: rgba(var(--thm-black-rgb), .90);
    -webkit-clip-path: polygon(0 0, 46% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 46% 0, 100% 100%, 0% 100%);
}

.contact-style1_inner .base-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0;
    width: 70%;
    background-color: var(--thm-base);
    opacity: 0.90;
    z-index: -1;
    -webkit-clip-path: polygon(11% 0, 100% 0, 100% 100%, 73% 100%);
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 73% 100%);
}

.contact-style1_inner .people1 {
    position: absolute;
    right: 300px;
    bottom: 0;
}

.contact-style1_inner .people2 {
    position: absolute;
    right: 60px;
    bottom: 0;
}

.contact-form-box1 {
    position: relative;
    display: block;
}

.contact-form-box1 .sec-title {
    padding-bottom: 30px;
}

.contact-form-box1 .sec-title h2 {
    color: #fff;
}

.contact-form-box1 form {
    position: relative;
    display: block;
}

.contact-form-box1 form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}


.contact-form-box1 form input[type="text"],
.contact-form-box1 form input[type="email"],
.contact-form-box1 form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 60px;
    border: 1px solid #ffffff;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form-box1 form input[type="text"]:focus {
    color: #171717;
    border-color: #fff;
}

.contact-form-box1 form input[type="text"]::-webkit-input-placeholder {
    color: #757575;
}

.contact-form-box1 form input[type="text"]:-moz-placeholder {
    color: #757575;
}

.contact-form-box1 form input[type="text"]::-moz-placeholder {
    color: #757575;
}

.contact-form-box1 form input[type="text"]:-ms-input-placeholder {
    color: #757575;
}





/** nice-select **/
.contact-form-box1 form .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
}

.nice-select {
    height: 60px;
    line-height: 58px;
    background: #ffffff;
    border: 1px solid #ffffff !important;
    font-family: var(--thm-font);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    padding-left: 20px;
    padding-right: 20px;
}

.nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #757575;
    border-right: 2px solid #757575;
    right: 22px;
    margin-top: 0px;
    top: 23px;
    z-index: 10;
}

.contact-form-box1 form .button-box {
    position: relative;
    display: block;
}



/*** 
=============================================
  Highlights Area Css
=============================================
***/
.highlights-area {
    position: relative;
    display: block;
}

.highlights__content {
    position: relative;
    display: block;
    background: #f5f5f5;
    border: 4px solid #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
    margin-top: -45px;
    z-index: 10;
}

.highlights__content ul {
    position: relative;
    display: flex;
    align-items: center;
    counter-reset: count;
}

.single-highlights-box {
    position: relative;
    max-width: 33.333333%;
    width: 100%;
    padding: 18px 30px 18px;
    z-index: 1;
}

.single-highlights-box:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0px;
    background: var(--thm-black);
    transform: scaleY(0.0);
    transform-origin: bottom;
    transform-style: preserve-3d;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    z-index: -1;
}

.single-highlights-box:hover:after {
    transform: scale(1.0);
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-highlights-box:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    width: 1px;
    background: #dddddd;
}

.single-highlights-box:last-child:before {
    display: none;
}


.single-highlights-box .inner {
    position: relative;
    display: flex;
    align-items: center;
}

.single-highlights-box .icon {
    width: 45px;
    line-height: 0;
}

.single-highlights-box .icon span:before {
    color: var(--thm-base);
    font-size: 45px;
    line-height: 45px;
}

.single-highlights-box .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.single-highlights-box .text h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 7px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-highlights-box:hover .text h3 {
    color: #fff;
}

.single-highlights-box .text p {
    line-height: 20px;
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-highlights-box:hover .text p {
    color: #fff;
}

.single-highlights-box .counting-box {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 55px;
    height: 40px;
    transform: translateY(-50%);
}

.single-highlights-box .counting-box:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: transparent;
    font-size: 48px;
    line-height: 30px;
    font-weight: 600;
    text-align: right;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(221 221 221 / 1.0);
    counter-increment: count;
    content: "0"counter(count);
    font-family: var(--thm-font);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.single-highlights-box:hover .counting-box:before {
    -webkit-text-stroke-color: rgb(62 70 82 / 1.0);
}




/*** 
=============================================
   Certificates Area Css
=============================================
***/
.certificates-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
}

.single-certificates-box {
    position: relative;
    display: block;
    border: 5px solid #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.single-certificates-box .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #f5f5f5;
    background-repeat: repeat;
    z-index: -1;
}

.single-certificates-box .pattern-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    transform: perspective(400px) scaleX(0);
    transform-origin: center;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-certificates-box:hover .pattern-bg:before {
    transform: perspective(400px) scaleX(1.0);
}

.single-certificates-box .img-box {
    position: relative;
    display: block;
    padding: 5px;
}

.single-certificates-box .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-certificates-box .img-box .inner:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(0, 0, 0, 0.70);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    opacity: 0;
    z-index: 5;
}

.single-certificates-box:hover .img-box .inner:before {
    opacity: 1;
}


.single-certificates-box .img-box img {
    width: 100%;
}

.single-certificates-box .text-holder {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 13px;
    padding-bottom: 17px;
}

.single-certificates-box .text-holder h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.single-certificates-box .text-holder h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-certificates-box:hover .text-holder h3 a {
    color: #ffffff;
}



.certificates-carousel_1.owl-carousel.owl-dot-style1 .owl-dots {
    display: none;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 300ms ease 100ms;
}

.certificates-carousel_1.owl-carousel .owl-stage-outer .owl-item.active {
    opacity: 1;
}



/*** 
=============================================
   Statements Area Css
=============================================
***/
.statements-area {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.statements-area .row {
    margin-left: 0px;
    margin-right: 0px;
}

.statements-area .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.statements-area-bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom right;
    filter: grayscale(0%);
    z-index: -1;
}


.statements__content-box {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, .96);
    padding: 42px;
    margin-left: 53px;
    height: 100%;
}

.statements__content-box .sec-title {
    padding-bottom: 31px;
}

.statements__content-box .inner-content {
    position: relative;
    display: block;
}

.statements__content-box .inner-content .top-text {
    position: relative;
    display: block;
    margin-bottom: 27px;
}

.statements__content-box .inner-content .top-text p {
    margin: 0;
}

.statements-main-content {
    position: relative;
    display: block;
}

.statements-main-content .single-box {
    position: relative;
    display: block;
    padding-left: 50px;
}

.statements-main-content .single-box .icon-box {
    position: absolute;
    top: 7px;
    left: 0;
    color: var(--thm-base);
    font-size: 50px;
}

.statements-main-content .single-box .icon-box span::before {}

.statements-main-content .single-box .text-box {
    position: relative;
    display: block;
    padding-left: 20px;
}

.statements-main-content .single-box .text-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 9px;
}

.statements-main-content .single-box .text-box p {
    margin: 0;
}

.statements-main-content .single-box .text-box ul {
    position: relative;
    display: block;
    margin-top: 16px;
}

.statements-main-content .single-box .text-box ul li {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.statements-main-content .single-box .text-box ul li:last-child {
    margin-bottom: 0;
}

.statements-main-content .single-box .text-box ul li span::before {
    position: relative;
    display: inline-block;
    top: 0px;
    color: var(--thm-base);
    font-size: 15px;
    transform: rotate(180deg);
    padding-left: 11px;
}

.statements-carousel.owl-nav-style-one.owl-theme .owl-nav {
    margin-top: 31px;
    margin-left: 73px;
}

.statements-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    border: 2px solid var(--thm-base);
}



.video-holder-box-style2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 670px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin-right: -53px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.video-holder-box-style2:hover {
    transform: translateX(-10px);
    transition-duration: .5s;
}

.video-holder-box-style2:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: rgba(var(--thm-black-rgb), .90);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    opacity: 0;
    z-index: -1;
}

.video-holder-box-style2:hover:before {
    opacity: 1;
}








/*** 
=============================================
    Our History css style
=============================================
***/
.our-history {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-bottom: 70px;
    z-index: 1;
}

.our-history-area-bg {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    filter: grayscale(100%);
    z-index: -1;
}

.our-history-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f5f5f5;
    opacity: 0.90;
    z-index: -1;
}



.history-tabs-carousel {
    position: relative;
    z-index: 100;
}

.history-tabs-carousel.owl-carousel .owl-stage-outer {
    margin-right: -375px;
    padding-bottom: 50px;
}

.history-tabs-carousel:before {
    position: absolute;
    content: "";
    top: 39px;
    left: 0;
    right: -100000px;
    z-index: 0;
    border-bottom: 1px solid #d5d5d5;
}





.single-history-box {
    position: relative;
    display: block;
}

.single-history-box .date-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border: 1px solid #d5d5d5;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 78px;
    font-weight: 600;
    text-align: center;
    font-family: var(--thm-font-2);
    transition: all 500ms ease;
}

.single-history-box:hover .date-box {
    color: #ffffff;
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}


.single-history-box .text-holder {
    position: relative;
    display: block;
    padding-top: 57px;
}

.single-history-box .text-holder .inner {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 36px 40px 34px;
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 7%);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-history-box:hover .text-holder .inner {
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 0%);
}

.single-history-box .text-holder .inner:before {
    content: "";
    position: absolute;
    top: -23px;
    left: 17px;
    border-bottom: 23px solid #ffffff;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
}


.single-history-box .text-holder .inner h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 11px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-history-box:hover .text-holder .inner h3 {
    color: var(--thm-base);
}

.single-history-box .text-holder .inner h3 span:before {
    position: relative;
    display: inline-block;
    font-size: 22px;
    padding-right: 10px;
}

.single-history-box .text-holder .inner p {
    margin: 0;
}





.our-history .owl-theme .owl-nav {
    position: absolute;
    top: -121px;
    right: 0;
    margin: 0;
    z-index: -1;
}

.our-history .owl-theme .owl-nav .owl-prev {}

.our-history .owl-theme .owl-nav .owl-next {}

.our-history .owl-theme .owl-nav [class*='owl-'] {
    background: transparent;
}

.our-history .owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    border: 2px solid var(--thm-base);
}







.our-history .bx-wrapper {
    position: relative;
    max-width: 1550px !important;
    width: 100%;
    margin-left: auto;
}

.our-history .bx-wrapper .bx-viewport {
    box-shadow: none;
    border: none;
    left: 0;
    background: #fff;
    transform: translatez(0);
}

.our-history .single-box {}

.our-history .single-box .img-holder {}

.our-history .single-box .img-holder img {}

.our-history .single-box .text-holder {
    display: block;
    padding: 25px 30px 22px;
    border: 1px solid #f2f2f2;
}

.our-history .single-box .text-holder p {
    margin: 0;
}

.our-history .single-box .text-holder p span {
    color: #0f1341;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.our-history .nav-link {
    display: block;
    padding: 0;
    max-width: 735px;
    margin: 0 auto;
}

.our-history .nav-link li#slider-prev {
    position: absolute;
    top: 50%;
    margin-top: -35px;
}

.our-history .nav-link li#slider-prev a i {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #46c3e8;
    font-size: 25px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 2px 4px #ededed;
    transition: all 500ms ease;
}

.our-history .nav-link li#slider-prev a:hover i {
    background: #46c3e8;
    color: #ffffff;
}

.our-history .nav-link li#slider-next {
    position: absolute;
    right: 232px;
    top: 50%;
    margin-top: -35px;
}

.our-history .nav-link li#slider-next a i {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #46c3e8;
    font-size: 25px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 2px 4px #ededed;
    transition: all 500ms ease;
}

.our-history .nav-link li#slider-next a:hover i {
    background: #46c3e8;
    color: #ffffff;
}

/*** 
=============================================
    One Page Scrool Css
=============================================
***/
.about-style1-area.one-page-scrool {
    padding-bottom: 0;
}

.call-to-us {
    position: relative;
    display: block;
    bottom: 0px;
    right: 0px;
    /* margin: 20px; */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    animation: rotating 1.5s infinite;
    background-color: #0f3588;
}

.call-to-us:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    display: block;
    border: 2px solid #0f3588;
    border-radius: 50%;
    animation: squeeze 2s infinite;
}

.call-to-us:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f3588 url(../images/icon/phone.png) center no-repeat;
    border-radius: 50%;
    background-size: 50%;
}

.call-to-us__label {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 14, 208, 0.1);
    width: 100%;
    height: 100%;
    padding-top: 20px;
    font-size: 12px;
    font-family: Tahoma, sans-serif;
    font-weight: bold;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    transition: all .5s ease
}

.call-to-us:hover {
    animation: none;
}

.call-to-us:hover .call-to-us__label {
    opacity: 1;
    z-index: 2;
}

.call-to-us:hover:before {
    border-color: rgba(0, 14, 208, 0.1);
}

@keyframes squeeze {
    0% {
        width: 10px;
        height: 10px;
        margin-top: -5px;
        margin-left: -5px;
    }

    50% {
        width: 90px;
        height: 90px;
        margin-top: -47px;
        margin-left: -47px;
    }

    100% {
        width: 10px;
        height: 10px;
        margin-top: -5px;
        margin-left: -5px;
    }
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(-45deg);
    }

    40% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-45deg);
    }

    65% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*==============================================
    Main Header Css        
===============================================*/
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    margin: 0px;
    z-index: 999;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 0px 0px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    z-index: 0;
}

.fixed-header .sticky-header {
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    opacity: 1;
    z-index: 999999;
}

.sticky-header .logo {
    position: relative;
    display: block;
    padding: 10px 0 10px;
    width: 175px;
    ;
}

.sticky-header .logo a {
    position: relative;
    display: inline-block;
    width: 175px;
}

.sticky-header .main-menu .navigation>li {
    margin-right: 35px;
}

.sticky-header .main-menu .navigation>li>a {
    padding: 55px 0px 25px;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a {
    color: var(--thm-base);
}

.sticky-header .main-menu .navigation>li>a span:before {
    display: none;
}

.sticky-header .main-menu .navigation>li>a:before {
    display: none;
}



.header-style-one {
    position: relative;
}

.header-style-one__inner {
    position: relative;
    display: block;
    padding-left: 365px;
}

.main-logo-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 375px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    overflow: hidden;
    z-index: 10;
}

.main-logo-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100000px;
    bottom: 0;
    right: 75px;
    z-index: -1;
    border-top: 130px solid var(--thm-base);
    border-right: 70px solid transparent;
}

.main-logo-box:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 40px;
    height: 50px;
    width: 70px;
    border-bottom: 50px solid rgba(var(--thm-base-rgb), .90);
    border-left: 27px solid transparent;
    border-right: 35px solid transparent;
    z-index: -1;
}

.main-logo-box a {
    position: relative;
    display: inline-block;
}


.header-style-one__header-content {
    position: relative;
    display: block;
}

.header-top {
    position: relative;
    display: block;
    padding: 10px 0;
    padding-left: 0px;
    padding-right: 30px;
    z-index: 1;
}

.header-top:before {
    content: "";
    position: absolute;
    top: 0;
    left: -10000000px;
    bottom: 0;
    right: 0;
    background: #1c1c27;
    z-index: -1;
}


.header-top .auto-container {
    max-width: 100%;
    padding: 0 0px;
}

.header-top .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top__left {
    position: relative;
    display: flex;
}

.welcome-text {
    position: relative;
    display: block;
}

.welcome-text p {
    color: #ffffff;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
}



.header-top__right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info {
    position: relative;
    display: block;
}

.header-contact-info ul {
    overflow: hidden;
}

.header-contact-info ul li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    padding-right: 21px;
    margin-right: 20px;
}

.header-contact-info ul li:last-child {
    margin-right: 0;
}

.header-contact-info ul li:before {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    bottom: 4px;
    width: 1px;
    background: #ffffff;
    opacity: 0.25;
}

.header-contact-info ul li:last-child:before {
    display: block;
}

.header-contact-info ul li .icon {
    width: 30px;
    line-height: 22px;
}

.header-contact-info ul li .icon span:before {
    position: relative;
    display: inline-block;
    top: 2px;
    color: var(--thm-base);
    font-size: 18px;
}

.header-contact-info ul li .text {
    position: relative;
    display: block;
}

.header-contact-info ul li .text h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.header-contact-info ul li .text h6 a {
    color: #fff;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.header-contact-info ul li .text h6 a:hover {
    color: var(--thm-base);
}


.header-social-link {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.header-social-link .inner-title {
    position: relative;
    display: block;
}

.header-social-link .inner-title h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.header-social-link .social-link {
    position: relative;
    display: block;
    padding-left: 10px;
}

.header-social-link .social-link ul {
    overflow: hidden;
}

.header-social-link .social-link ul li {
    position: relative;
    display: block;
    float: left;
    padding-right: 16px;
    margin-right: 15px;
    line-height: 30px;
}

.header-social-link .social-link ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.header-social-link .social-link ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: #ffffff;
    opacity: 0.25;
}

.header-social-link .social-link ul li:last-child:before {
    display: none;
}

.header-social-link .social-link ul li a {
    color: #ffffff;
    font-size: 16px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-social-link .social-link ul li a:hover {
    color: var(--thm-base);
}



.header {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 1;
}

.header .auto-container {
    max-width: 100%;
    padding: 0px;
}

.header .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.header-left {
    position: relative;
    display: block;
}

.header-left .nav-outer {
    position: relative;
    display: block;
    float: left;
    z-index: 2;
}

.main-menu.style1 {}

.main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu .navbar-collapse {
    padding: 0px;
    display: block !important;
}

.main-menu .navigation {
    position: inherit;
    display: block;
}

.main-menu .navigation>li {
    position: inherit;
    display: inline-block;
    float: left;
    margin-right: 45px;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    padding: 25px 0px 25px;
    color: #1c1c27;
    font-size: 16px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 500ms ease;
    font-family: var(--thm-font-2);
    opacity: 1;
    z-index: 1;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
    color: var(--thm-base);
}

.main-menu .navigation>li.dropdown>a {
    padding-right: 15px;
}

.main-menu .navigation>li.dropdown>a:after {
    position: absolute;
    right: 0px;
    font-family: Fontawesome;
    content: "\f107";
    font-size: 16px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .navigation>li.dropdown:hover>a:after,
.main-menu .navigation>li.dropdown.current>a:after {
    transform: rotate(180deg);
}

.main-menu .navigation>li>ul {
    position: absolute;
    top: 100%;
    left: inherit;
    width: 340px;
    padding: 0px 0;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 100ms ease;
    z-index: 100;
}

.main-menu .navigation>li>ul:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: #ffffff;
    border-radius: 0px;
    z-index: -1;
}

.main-menu .navigation>li>ul:after {
    position: absolute;
    top: -3px;
    left: 0px;
    right: 0;
    height: 3px;
    content: '';
    background: var(--thm-base);
    border-radius: 0px;
    z-index: -1;
}

.main-menu .navigation>li.dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li {
    position: relative;
    display: block;
    padding: 0 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu .navigation>li:hover>ul>li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.main-menu .navigation>li>ul>li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+7) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+8) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.main-menu .navigation>li>ul>li:nth-child(2n+9) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}


.main-menu .navigation>li>ul>li>a {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0px 5px;
    padding-left: 30px;
    padding-right: 10px;
    color: #757575;
    font-size: 14px;
    /* line-height: 24px; */
    font-weight: 400;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    letter-spacing: normal;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .navigation>li>ul>li:last-child>a {
    border: none;
}

.main-menu .navigation>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    bottom: -1px;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .navigation>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .navigation>li>ul>li>a:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    bottom: 0;
    background-image: url(../images/menu-item-arrow.png);
    width: 10px;
    height: 14px;
    transform: scaleX(0);
    transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li:hover>a:after {
    transform: scaleX(1.0);
}

.main-menu .navigation>li>ul>li:hover>a {
    color: #ffffff;
    padding-left: 50px;
}

.main-menu .navigation>li>ul>li.dropdown {}

.main-menu .navigation>li>ul>li.dropdown:after {
    position: absolute;
    top: 0px;
    right: 30px;
    bottom: 0;
    font-family: FontAwesome;
    content: "\f105";
    color: #757575;
    font-size: 18px;
    font-weight: 400;
    margin: 14px 0;
    text-align: right;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.main-menu .navigation>li>ul>li.dropdown:hover:after {
    color: #ffffff;
}




.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    top: 0%;
    left: 100%;
    width: 250px;
    padding: 0px 0;
    display: none;
    border-left: 0px solid transparent;
    padding-left: 10px;
    border-radius: 0px;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 100ms ease;
    z-index: 100;
}

.main-menu .navigation>li>ul>li>ul:before {
    position: absolute;
    top: 0px;
    left: 10px;
    right: 0;
    height: 100%;
    content: '';
    background: #ffffff;
    border-radius: 0px;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.main-menu .navigation li>ul>li.dropdown:hover ul {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    display: block;
    padding: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu .navigation>li>ul>li:hover>ul>li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.main-menu .navigation>li>ul>li>ul>li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.main-menu .navigation>li>ul>li>ul>li:nth-child(2n+2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.main-menu .navigation>li>ul>li>ul>li:nth-child(2n+3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.main-menu .navigation>li>ul>li>ul>li:nth-child(2n+4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu .navigation>li>ul>li>ul>li:nth-child(2n+5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}


.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0px 15px;
    padding-left: 30px;
    padding-right: 10px;
    color: #757575;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    letter-spacing: normal;
    font-family: var(--thm-font);
    z-index: 1;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
    border: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0px;
    right: 0;
    bottom: -1px;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.main-menu .navigation>li>ul>li>ul>li>a:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    bottom: 0;
    background-image: url(../images/menu-item-arrow.png);
    width: 10px;
    height: 14px;
    transform: scaleX(0);
    transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:after {
    transform: scaleX(1.0);
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
    color: #ffffff;
    padding-left: 50px;
}






/** Megamenu Style **/
.main-menu .navigation>li>.megamenu {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    padding-right: 40px;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    -moz-transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 100ms ease;
    z-index: 100;
}

.main-menu .navigation>li>.megamenu .row {
    margin-right: 0px;
    margin-left: 0px;
}

.main-menu .navigation>li>.megamenu .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.main-menu .navigation>li>.megamenu:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    content: '';
    background: var(--thm-base);
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.main-menu .navigation>li.dropdown:hover .megamenu {
    opacity: 1;
    visibility: visible;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}

.main-menu .navigation>li>.megamenu li {
    position: relative;
    display: block;
    padding: 0 40px;
    padding-right: 0;
    width: 100%;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.main-menu .navigation>li:hover .megamenu li {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}


/*****
.main-menu .navigation> li> .megamenu li:nth-child(2n+1) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+3) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+4) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+5) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.main-menu .navigation> li> .megamenu li:nth-child(2n+6) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+7) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+8) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+9) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.main-menu .navigation> li> .megamenu li:nth-child(2n+10) {
    -webkit-transition-delay: 0.10s;
    transition-delay: 0.10s;
}
****/

.main-menu .navigation>li>.megamenu li>a {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding: 13px 0px 13px;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    transition: all 500ms ease;
    letter-spacing: 0.03em;
    font-family: var(--thm-font);
}

.main-menu .navigation>li>.megamenu li:last-child a {
    border: none;
}

.main-menu .navigation>li>.megamenu li>a:hover {
    color: #f0ebeb;
    padding-left: 15px;
}

.main-menu .navigation>li>.megamenu li>a:before {
    font-family: FontAwesome;
    content: "\f105";
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 48px;
    color: #f0ebeb;
    transform: scaleX(0);
    transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu li:hover>a:before {
    transform: scaleX(1.0);
}



.main-menu .navigation li.dropdown .megamenu li h4 {
    font-weight: 500;
    padding: 3px 0px;
    color: #fff;
}

.main-menu .navbar-collapse>ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0;
    width: 50px;
    height: 42px;
    border-left: 1px solid #04102a;
    text-align: center;
    font-size: 16px;
    line-height: 42px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    z-index: 5;
}



.header-right {
    position: relative;
    display: flex;
    align-items: center;
}

.shopping-cart-box {
    position: relative;
    display: block;
}

.shopping-cart-box a {
    position: relative;
    display: block;
    width: 45px;
    height: 25px;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 45px;
    text-align: left;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.shopping-cart-box a i {
    position: relative;
    display: block;
    line-height: 25px;
}

.shopping-cart-box a:hover {
    color: var(--thm-base);
}

.shopping-cart-box a .count {
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 18px;
    height: 18px;
    background: var(--thm-base);
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    font-family: var(--thm-font-2);
}

.space-box1 {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}

.space-box1:before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    background: #e5e5e5;
}


.serach-button-style2 {
    position: relative;
    display: block;
    width: 200px;
}

.serach-button-style2 input[type="search"] {
    position: relative;
    display: block;
    box-shadow: none;
    width: 100%;
    height: 40px;
    padding-left: 30px;
    padding-right: 10px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 0px;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    border: none;
    font-family: var(--thm-font-2);
}

.serach-button-style2 input[type="search"]:focus {
    outline: none;
}

.serach-button-style2 input[type="search"]::-webkit-input-placeholder {
    color: #757575;
}

.serach-button-style2 input[type="search"]:-moz-placeholder {
    color: #757575;
}

.serach-button-style2 input[type="search"]::-moz-placeholder {
    color: #757575;
}

.serach-button-style2 input[type="search"]:-ms-input-placeholder {
    color: #757575;
}

.serach-button-style2 button {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 30px;
    color: #757575;
    font-size: 16px;
    line-height: 40px;
}


.header-right_buttom {
    position: relative;
    display: block;
}

.header-right_buttom .btns-box {
    position: relative;
    display: block;
    line-height: 0;
}

.header-right_buttom .btns-box a {
    color: #ffffff;
    line-height: 80px;
    border-radius: 0;
    padding: 0 35px;
}

.header-right_buttom .btns-box a.btn-one:after {
    border: 2px solid var(--thm-base);
    background-color: var(--thm-base);
}

.header-right_buttom .btns-box a i::before {
    position: relative;
    display: inline-block;
    padding-right: 5px;
    font-size: 18px;
    top: 0px;
    z-index: 1;
}

.header-right_buttom .btns-box a.btn-one:after {
    border-radius: 0px;
}

.header-right_buttom .btns-box a.btn-one:before {
    top: 135px;
    border-radius: 0%;
}

.header-right_buttom .btns-box a.btn-one:hover:before {
    top: 0%;
}


.side-content-button {
    position: relative;
    width: 80px;
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-content-button a {
    color: var(--thm-base);
    font-size: 30px;
    line-height: 30px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.side-content-button a:hover {
    color: var(--thm-black);
}



/*** 
=====================================================
	Main Header style Two Css
=====================================================
***/
.header-style-two {}

.header-top-style2 {
    position: relative;
    display: block;
    padding: 10px 0;
    z-index: 1;
}

.header-top-style2 .pattern-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0px;
    background-color: #ffffff;
    background-repeat: repeat;
    background-position: bottom;
    z-index: -1;
}

.header-top-style2 .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-top-style2__left {
    position: relative;
    display: flex;
}

.top-menu {
    position: relative;
    display: block;
}

.top-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.top-menu ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
}

.top-menu ul li:last-child {
    margin-right: 0;
}

.top-menu ul li a {
    color: #213140;
}

.top-menu ul li a:hover {
    color: var(--thm-base);
}

.header-top-style2__middle {
    position: relative;
    display: block;
}

.welcome-text--style p {
    color: #213140;
}



.header-top-style2__right {
    position: relative;
    display: block;
}

.header-social-link--style2 .inner-title h4 {
    color: #213140;
}

.header-social-link--style2 .social-link ul li {}

.header-social-link--style2 .social-link ul li:before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    bottom: 5px;
    width: 1px;
    background: #dddddd;
    opacity: 1;
}

.header-social-link--style2 .social-link ul li a {
    color: #213140;
}



.header-style2 {
    position: relative;
    display: block;
    background: #213140;
    padding-bottom: 36px;
    z-index: 1;
}

.header-style2 .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-style2__left {
    position: relative;
    display: block;
    padding: 31px 0;
    padding-right: 20px;
    z-index: 1;
}

.header-style2__left .bg-color {
    content: "";
    position: absolute;
    left: -90000px;
    bottom: -36px;
    right: 0;
    height: 36px;
    background: var(--thm-base);
    z-index: -1;
}

.header-style2__left:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100000px;
    bottom: 0;
    right: -70px;
    border-top: 120px solid var(--thm-base);
    border-right: 70px solid transparent;
    z-index: -1;
}

.header-style2__left:after {
    content: "";
    position: absolute;
    top: 0px;
    right: -153px;
    width: 155px;
    height: 120px;
    border-bottom: 120px solid rgba(var(--thm-base-rgb), .90);
    border-left: 70px solid transparent;
    border-right: 83px solid transparent;
    z-index: -1;
}

.main-logo-box-2 {
    position: relative;
    display: block;
}

.main-logo-box-2 a {
    position: relative;
    display: inline-block;
}



.header-style2__right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info-style2 {
    position: relative;
    display: block;
}

.header-contact-info-style2 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.header-contact-info-style2 ul li {
    position: relative;
    display: block;
    float: left;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid #374d62;
}

.header-contact-info-style2 ul li:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}

.header-contact-info-style2 ul li .inner {
    position: relative;
    display: block;
    padding-left: 50px;
}

.header-contact-info-style2 ul li .inner .icon {
    position: absolute;
    top: 7px;
    left: 0px;
    color: var(--thm-base);
    font-size: 35px;
}

.header-contact-info-style2 ul li .inner .icon span {
    position: relative;
    display: inline-block;
    line-height: 35px;
}

.header-contact-info-style2 ul li .inner .text {
    position: relative;
    display: block;
}

.header-contact-info-style2 ul li .inner .text p {
    color: #b4bdc5;
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 11px;
}

.header-contact-info-style2 ul li .inner .text h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
}

.header-contact-info-style2 ul li .inner .text h4 a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info-style2 ul li .inner .text h4 a:hover {
    color: var(--thm-base);
}

.quote-button-box {
    position: relative;
    display: block;
    padding-left: 100px;
}

.quote-button-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--thm-base);
    text-align: center;
}



.header-bottom {
    position: relative;
    display: block;
}

.header-bottom .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -36px;
    background: #fff;
    padding-left: 40px;
    z-index: 10;
}

.header-bottom__left {
    position: relative;
    display: block;
}

.header-bottom__left .nav-outer {
    position: relative;
    display: block;
}

.main-menu.style2 .navigation>li>a {
    padding-top: 21px;
    padding-bottom: 21px;
    color: #213140;
}

.main-menu.style2 .navigation>li:hover>a,
.main-menu.style2 .navigation>li.current>a {
    color: var(--thm-base);
}


.header-bottom__right {
    position: relative;
    display: flex;
    align-items: center;
}

.serach-button-style2--instyle2 {
    position: relative;
    display: block;
    width: 140px;
}




/*** 
=====================================================
	Main Header style Two Css
=====================================================
***/
.header-style-three {
    position: relative;
    background: #ebebeb;
}

.header-style-three__inner {
    position: relative;
    display: block;
    padding-left: 310px;
    padding-right: 310px;
}


.main-logo-box-three {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.main-logo-box-three:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -115px;
    z-index: -1;
    border-bottom: 130px solid var(--thm-base);
    border-right: 115px solid transparent;
}

.main-logo-box-three a {
    position: relative;
    display: inline-block;
}


.header-style-three__header-content {
    position: relative;
    display: block;
}


.header-top-style3 {
    position: relative;
    display: block;
    padding: 13px 0;
    /* background: #262e39; */
    z-index: 1;
}

.header-top-style3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 0;
    right: 50px;
    z-index: -1;
    border-top: 50px solid var(--thm-base);
    border-left: 44px solid transparent;
    border-right: 44px solid transparent;
}

.header-top-style3 .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 50px;
}

.header-top-style3__left {
    position: relative;
    display: flex;
}

.welcome-text p a {
    color: #ffffff;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.welcome-text p a i {
    position: relative;
    display: inline-block;
    padding-left: 6px;
}

.welcome-text p a:hover {
    color: var(--thm-black);
}




.header-top-style3__right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-contact-info--style2 {
    position: relative;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1;
}

.header-contact-info--style2:before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    bottom: -13px;
    right: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.header-contact-info--style2 ul li {
    padding-right: 0;
    margin-right: 0;
}

.header-contact-info--style2 ul li:before {
    display: none;
}

.header-contact-info--style2 ul li:last-child:before {
    display: none;
}

.header-contact-info--style2 ul li .icon span:before {
    color: #ffffff;
}

.header-contact-info--style2 ul li .text h6 a:hover {
    color: var(--thm-black);
}


.header-social-link-style2 {
    position: relative;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 20px;
}

.header-social-link-style2:before {
    content: "";
    position: absolute;
    top: -25px;
    right: 0;
    bottom: -16px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.header-social-link-style2 ul {
    overflow: hidden;
}

.header-social-link-style2 ul li {
    position: relative;
    display: block;
    float: left;
    line-height: 16px;
    padding-right: 16px;
    margin-right: 15px;
}

.header-social-link-style2 ul li:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    bottom: 0px;
    width: 1px;
    background: #000000;
    opacity: 0.15;
}

.header-social-link-style2 ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.header-social-link-style2 ul li:last-child:before {
    display: none;
}

.header-social-link-style2 ul li a {
    color: #ffffff;
    font-size: 16px;
}


.header-style3 {
    position: relative;
    display: block;
    /* background: #262e39; */
    z-index: 1;
}

.header-style3 .outer-box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}



.main-menu.style3 .navigation>li>a {
    color: var(--thm-base);
    padding-top: 25px;
    padding-bottom: 25px;
}

.main-menu.style3 .navigation>li:hover>a,
.main-menu.style3 .navigation>li.current>a {
    color: #db0e1b;
}




.header-contact-info3 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 310px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    z-index: 10;
}

.header-contact-info3:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -115px;
    z-index: -1;
    border-bottom: 130px solid var(--thm-base);
    border-left: 115px solid transparent;
}

.header-contact-info3 .icon {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 45px;
    text-align: center;
}

.header-contact-info3 .text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.header-contact-info3 .text p {
    position: relative;
    top: -3px;
    color: var(--thm-base);
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 9px;
}

.header-contact-info3 .text h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--thm-base);
}

.header-contact-info3 .text h3 a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.header-contact-info3 .text h3 a:hover {
    color: var(--thm-black);
}

/*** 
=====================================================
	Main Slider style
=====================================================
***/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider.style1 {
    position: relative;
    display: block;
}

.main-slider .slide {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider .slide .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 6000ms linear;
    -moz-transition: all 6000ms linear;
    -ms-transition: all 6000ms linear;
    -o-transition: all 6000ms linear;
    transition: all 6000ms linear;
    z-index: 1;
}

.main-slider.style1 .slide .image-layer {
    filter: grayscale(0);
}


.main-slider .active .slide .image-layer {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.main-slider .slide .image-layer:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.main-slider.style1 .slide .image-layer:before {
    display: none;
}


.main-slider .content {
    position: relative;
    z-index: 11;
}



.main-slider.style1 .slide {
    position: relative;
    display: block;
    overflow: hidden;
}

.main-slider.style1 .content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 166px;
    padding-bottom: 180px;
}

.main-slider .auto-container {
    position: relative;
}

.main-slider .content .big-title {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 28px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .active .content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider .content .big-title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.20em;
    font-weight: 800;
    text-transform: capitalize;
}

.main-slider .content .text {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 29px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(120px);
    transform: perspective(400px) rotateY(0deg) translateY(120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider .active .content .text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.main-slider .content .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    text-transform: none;
}


.main-slider .content .btns-box {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    line-height: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    z-index: 10;
}

.main-slider.style1 .content .btns-box a.btn-one {
    padding-left: 50px;
    padding-right: 50px;
    color: #ffffff;
}

.main-slider.style1 .content .btns-box a.btn-one:after {
    border: 2px solid var(--thm-base);
    background-color: var(--thm-base);
}


.main-slider .active .content .btns-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}




.main-slider .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    line-height: 0;
    height: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: scaleX(1.0) translateX(0px);
    z-index: 3;
}

.main-slider:hover .owl-theme .owl-nav {
    opacity: 1;
    left: 40px;
    right: 40px;
    transform: scaleX(1.0) translateX(0px);
}

.main-slider .owl-theme .owl-prev span,
.main-slider .owl-theme .owl-next span {
    display: block;
}

.main-slider .owl-theme .owl-nav .owl-prev,
.main-slider .owl-theme .owl-nav .owl-next {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.10);
    border: 0px solid rgba(17, 14, 14, 0.3);
    height: 80px;
    width: 80px;
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 25px;
    line-height: 80px;
    font-weight: 400;
    opacity: 1;
    margin: 0;
    padding: 0;
    transform: translateY(0px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider .owl-theme .owl-prev span:before {}

.main-slider .owl-theme .owl-nav .owl-next {
    transform: rotate(180deg);
}

.main-slider .owl-theme .owl-next span:before {}

.main-slider .owl-theme .owl-nav .owl-prev:hover,
.main-slider .owl-theme .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--thm-base);
}

.banner-carousel .owl-dots {
    display: block;
}



.main-slider .banner-carousel.owl-carousel .owl-dots {
    position: absolute;
    left: 0px;
    bottom: 40px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scaleX(1.0) translateY(40px);
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider:hover .banner-carousel.owl-carousel .owl-dots {
    opacity: 1;
    transform: scaleX(1.0) translateY(0px);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot {
    position: relative;
    display: block;
    width: 40px;
    height: 4px;
    float: none;
    background: #ffffff;
    border-radius: 0%;
    margin: 0 5px;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
}

.main-slider .banner-carousel.owl-carousel button.owl-dot:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-base);
    transition: all 100ms linear;
    transition-delay: 0.1s;
    transform: scaleX(0);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active:before {
    transform: scaleX(1.0);
}

.main-slider .banner-carousel.owl-carousel button.owl-dot.active {}



/*** 
=====================================================
	Main Slider style2 style
=====================================================
***/
.main-slider.style2 {
    margin-top: 206px;
}


.main-slider.style2 .content {
    position: relative;
    overflow: initial;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 179px;
    padding-bottom: 160px;
}

.main-slider.style2 .content:before {
    content: "";
    position: absolute;
    top: 0;
    left: -1000000px;
    bottom: 0;
    right: -2000px;
    border-bottom: 700px solid rgba(var(--thm-base-rgb), .50);
    border-right: 520px solid transparent;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.main-slider.style2 .active .content:before {
    right: 250px;
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider.style2 .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 21px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider.style2 .active .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
}

.main-slider.style2 .sub-title .border-box {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: #ffffff;
    margin-right: 8px;
}

.main-slider.style2 .sub-title h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-slider.style2 .content .big-title {
    margin-bottom: 18px;
}

.main-slider.style2 .content .big-title h2 {
    font-size: 72px;
    line-height: 1.20em;
}

.main-slider.style2 .content .btn-one {
    padding-left: 55px;
    padding-right: 55px;
    color: #ffffff;
}

.main-slider.style2 .content .btn-one:after {
    border: 2px solid #ffffff;
}



/*** 
=====================================================
	Main Slider style3 style
=====================================================
***/
.main-slider.style3 {}

.main-slider.style3 .slide .image-layer:before {
    background-color: rgba(0, 0, 0, 0.50);
}

.main-slider.style3 .content {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 196px;
    margin-bottom: 245px;
}

.main-slider.style3 .sub-title {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateX(90deg) translateY(-120px);
    transform: perspective(400px) rotateX(90deg) translateY(-120px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 10;
}

.main-slider.style3 .active .sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider.style3 .sub-title .border-box-left {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-right: 10px;
}

.main-slider.style3 .sub-title .border-box-right {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--thm-base);
    margin-left: 10px;
}

.main-slider.style3 .sub-title h6 {
    color: var(--thm-base);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}


.main-slider.style3 .content .big-title {
    margin-bottom: 36px;
}

.main-slider.style3 .content .btns-box a {
    color: #ffffff;
    padding-left: 53px;
    padding-right: 53px;
}

.main-slider.style3 .content .btns-box a.btn-one:after {
    border: 2px solid #ffffff;
}

.main-slider.style3 .banner-carousel.owl-carousel .owl-dots {
    display: none;
}



/*** 
=============================================
    About Style2 Area Css   
=============================================
***/
.about-style2-area {
    position: relative;
    display: block;
    padding: 60px 0 60px;
    background: #ffffff;
}

.about-style2__content {
    position: relative;
    display: block;
}

.about-style2__content .sec-title {
    padding-bottom: 31px;
}

.about-style2__content .inner-content {
    position: relative;
    display: block;
}

.about-style2__content .inner-content .text {
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.about-style2__content .inner-content .text p {
    margin: 0;
}

.about-style2__content .inner-content h5 {
    color: #213140;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-style2__content .inner-content ul {
    position: relative;
    display: block;
    padding: 23px 0 44px;
}

.about-style2__content .inner-content ul li {
    position: relative;
    display: block;
    padding-left: 40px;
    margin-bottom: 21px;
}

.about-style2__content .inner-content ul li:last-child {
    margin-bottom: 0;
}

.about-style2__content .inner-content ul li .icon {
    position: absolute;
    top: 3px;
    left: 0;
}

.about-style2__content .inner-content ul li .icon span:before {
    color: var(--thm-base);
    font-size: 20px;
    line-height: 20px;
}

.about-style2__content .inner-content ul li .inner-text {
    position: relative;
    display: block;
}

.about-style2__content .inner-content ul li .inner-text h3 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    margin: 0 0 3px;
}

.about-style2__content .inner-content ul li .inner-text p {
    margin: 0;
}

.authorised-person-info {
    position: relative;
    display: flex;
    align-items: center;
}

.authorised-person-info .signature {
    position: relative;
    display: block;
    width: 190px;
    border-right: 1px solid #e5e5e5;
}

.authorised-person-info .name {
    position: relative;
    display: block;
    padding-left: 20px;
}

.authorised-person-info .name h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    margin: 0 0 4px;
}

.authorised-person-info .name span {
    color: var(--thm-base);
    text-transform: uppercase;
}




.about-style2__image-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    min-height: 595px;
    z-index: 1;
}

.about-style2__image-box:before {
    content: "";
    position: absolute;
    top: -120px;
    left: 110px;
    bottom: -120px;
    right: -100000px;
    background: #f5f5f5;
    z-index: -1;
}

.about-style2__image-box .big-title {
    position: absolute;
    top: -10px;
    right: -110px;
    transform: rotate(90deg) translateX(90%);
    transform-origin: right;
    color: #ffffff;
    font-size: 155px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    line-height: 130px;
}

.about-style2__image-box .img-box1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 340px;
    width: 100%;
    z-index: 1;
}

.about-style2__image-box .img-box1:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: -10px;
    right: -10px;
    border: 1px solid var(--thm-base);
    z-index: -1;
}


.about-style2__image-box .img-box2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 350px;
    width: 100%;
    padding-bottom: 10px;
    padding-right: 10px;
    overflow: hidden;
    z-index: 1;
}

.about-style2__image-box .img-box2::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(var(--thm-base-rgb), .50);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
}

.about-style2__image-box .img-box2:hover::after {
    -webkit-animation: circle .95s;
    animation: circle .95s;
}

.about-style2__image-box .img-box2:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 0px;
    right: 0;
    border: 1px solid var(--thm-base);
    z-index: -1;
}

.about-style2__image-box .img-box2 .inner {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-style2__image-box .img-box2 .inner img {
    width: 100%;
    -webkit-transition: all 3500ms ease;
    -moz-transition: all 3500ms ease;
    -ms-transition: all 3500ms ease;
    -o-transition: all 3500ms ease;
    transition: all 3500ms ease;
}

.about-style2__image-box .img-box2:hover .inner img {
    transform: scale(1.2) rotate(2deg);
    transition-delay: .2s;
}

.about-style2__image-box .icon-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    text-align: center;
}

.about-style2__image-box .icon-box span:before {
    position: relative;
    display: block;
    color: #e8e8e8;
    font-size: 160px;
    line-height: 160px;
}


.about-style2__image-box .overlay-box {
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
}

.about-style2__image-box .overlay-box h2 {
    color: var(--thm-base);
    font-size: 110px;
    line-height: 85px;
    font-weight: 900;
}

.about-style2__image-box .overlay-box h2 span {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    font-size: 35px;
    line-height: 0;
    top: -40px;
}

.about-style2__image-box .overlay-box h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 16px 0 0;
}



/*** 
=============================================
    Fact Counter Area style
=============================================
***/
.fact-counter-area {
    position: relative;
    display: block;
    padding: 60px 0px 60px;
    z-index: 1;
}

.fact-counter-area_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.fact-counter-area_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #213140;
    opacity: 0.95;
}

.fact-counter-area .sec-title h2 {
    color: #ffffff;
}

.fact-counter-box {
    position: relative;
    display: block;
    padding-top: 120px;
}

.fact-counter-box .sec-title h2 {
    color: #ffffff;
}

.single-fact-counter {
    position: relative;
    display: block;
    margin-bottom: 34px;
}

.single-fact-counter .inner {
    position: relative;
    display: block;
    background: #ffffff;
    text-align: center;
    padding: 40px 0 33px;
    z-index: 1;
}

.single-fact-counter .inner:before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -4px;
    right: 30px;
    height: 4px;
    background: var(--thm-base);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.single-fact-counter:hover .inner:before {
    left: 0px;
    right: 0px;
}

.single-fact-counter .inner .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    background-repeat: repeat;
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;

}

.single-fact-counter:hover .inner .pattern-bg {
    background-color: #000;
    background-image: inherit;
}

.single-fact-counter .inner .icon {
    position: relative;
    display: block;
    padding-bottom: 11px;
}

.single-fact-counter .inner .icon span:before {
    color: var(--thm-base);
    font-size: 50px;
    line-height: 50px;
}

.single-fact-counter .count-box {
    position: relative;
    display: block;
    color: #213140;
    font-size: 60px;
    font-weight: 600;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-fact-counter:hover .count-box {
    color: #ffffff;
}

.single-fact-counter .count-box span {
    position: relative;
    display: inline-block;
    line-height: 60px;
}

.single-fact-counter .count-box .k {
    position: relative;
    display: inline-block;
    margin-left: -15px;
}

.single-fact-counter .count-box .plus {
    position: relative;
    display: inline-block;
    margin-left: -25px;
    font-size: 50px;
    font-weight: 700;
    line-height: 40px;
}


.single-fact-counter .title {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-fact-counter .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

/*** 
=============================================
    Partner Area Css
=============================================
***/
.partner-area {
    position: relative;
    display: block;
    background: var(--thm-base);
    padding: 60px 0 60px;
    z-index: 2;
}

.partner-box {
    position: relative;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, 0.30);
}

.partner-box li {
    border-right: 1px solid rgba(255, 255, 255, 0.30);
}

.single-partner-logo-box {
    position: relative;
    display: block;
    text-align: center;
    z-index: 1;
}

.single-partner-logo-box a {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.single-partner-logo-box a img {
    opacity: 1;
    width: auto;
    transition: all 0.2s ease-in-out 0.1s;
    filter: grayscale(0%);
}

.single-partner-logo-box:hover a img {
    opacity: 0.40;
    filter: grayscale(0%);
    transition: all 0.8s ease-in-out 0.1s;
}

.partner-carousel.owl-carousel.owl-dot-style1 .owl-dots {
    display: none;
}





/*** 
=============================================
    Footer area style2 Css
=============================================
***/
.footer-area--style3 {
    background: #213140;
}

.footer-top-style3 {
    position: relative;
    display: block;
    padding-top: 51px;
    z-index: 10;
}

.footer-top-style3 .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-base);
    background-repeat: repeat;
    background-position: center;
    z-index: -1;
}

.footer-top-style3__content {
    position: relative;
    display: block;
    margin-bottom: -70px;
    z-index: 10;
}

.footer-top-style3__content .top-title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.footer-top-style3__content .top-title h2 {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin: 0 0 2px;
}

.footer-top-style3__content .top-title p {
    color: #ffffff;
    margin: 0;
}




.footer-style3 {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-bottom: 0px;
    z-index: 1;
}

.footer-style3-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.footer-style3-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    opacity: 0.95;
}

.single-footer-widget--style3 {}

.single-footer-widget--style3 .footer-logo {
    position: relative;
    display: block;
    padding-bottom: 31px;
}

.single-footer-widget--style3 .footer-logo a {
    position: relative;
    display: inline-block;
}

.single-footer-widget--style3 .our-company-info .text-box {
    padding-bottom: 32px;
}

.single-footer-widget--style3 .our-company-info .text-box p {
    color: #acb0b5;
}

.single-footer-widget--style3 .our-company-info .text-box .btn-box2 {
    position: relative;
    display: block;
    padding-top: 15px;
}

.single-footer-widget--style3 .text-box .btn-box2 a {
    color: #ffffff;
}

.single-footer-widget--style3 .text-box .btn-box2 a:hover {
    color: var(--thm-base);
}


.footer-social-link.style2 ul li a {
    background: transparent;
    border: 1px solid #3d4857;
    color: #ffffff;
    line-height: 43px;
}

.footer-social-link.style2 ul li a:hover {
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}


.single-footer-widget--style3 .footer-widget-links-2 .left {
    /* width: 190px; */
}

.single-footer-widget--style3 .footer-widget-links-2 ul li a {
    color: #acb0b5;
    /* text-transform: uppercase; */
}

.single-footer-widget--style3 .footer-widget-links-2 ul li a:hover {
    color: var(--thm-base);
}



.footer-widget-contact-info--style2 ul li {
    position: relative;
    display: block;
    padding-left: 45px;
    margin-bottom: 21px;
}

.footer-widget-contact-info--style2 ul li .inner-icon {
    position: absolute;
    top: 3px;
    left: 0;
    width: 45px;
    height: 45px;
    background: var(--thm-base);
}

.footer-widget-contact-info--style2 ul li .inner-icon span:before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
}

.footer-widget-contact-info--style2 ul li .inner-text {
    position: relative;
    display: block;
    padding-left: 20px;
}

.footer-widget-contact-info--style2 ul li p {
    color: #b0b0bd;
}


.footer-social-link.style2 ul li a {
    background: transparent;
    border: 1px solid #3d4857;
    color: #ffffff;
    line-height: 43px;
}

.footer-social-link.style2 ul li a:hover {
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}




.footer-bottom-style3 {
    position: relative;
    display: block;
    padding-top: 90px;
}

.footer-bottom-style3__content {
    position: relative;
    display: block;
    padding: 22px 0;
    z-index: 1;
}

.footer-bottom-style3__content:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    border-left: 65px solid transparent;
    border-bottom: 70px solid var(--thm-base);
    border-right: 65px solid transparent;
}

.footer-bottom-style3__content .copyright {
    position: relative;
    display: block;
}

.footer-bottom-style3__content .copyright p {
    color: #ffffff;
    margin: 0;
}

.footer-bottom-style3__content .copyright p a {
    color: #d7101a;
    font-weight: 500;
}

.footer-area {
    position: relative;
    display: block;
    background: #1c1c27;
}

.footer-top {
    position: relative;
    display: block;
    background: #232331;
    border-bottom: 1px solid #333347;
    padding: 30px 0;
}

.footer-top__content {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-top__content .left-box {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-top__content .left-box .footer-logo {
    position: relative;
    display: block;
    width: 250px;
}

.footer-top__content .left-box .footer-logo::before {
    content: "";
    position: absolute;
    top: 3px;
    right: 0;
    bottom: 3px;
    width: 1px;
    background: #3a3a52;
}

.footer-top__content .left-box .footer-logo a {
    position: relative;
    display: inline-block;
}

.footer-top__content .left-box .title {
    position: relative;
    display: block;
    padding-left: 50px;
}

.footer-top__content .left-box .title h3 {
    color: #f6f6f6;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin: 0 0 4px;
}

.footer-top__content .left-box .title p {
    color: #b0b0bd;
    margin: 0;
}


.footer-top__content .right-box {
    position: relative;
    display: block;
    line-height: 0;
}

.footer-top__content .right-box a {
    padding-left: 30px;
    padding-right: 30px;
}

.footer-top__content .right-box a.one {}

.footer-top__content .right-box a.two {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.footer-top__content .right-box a.two span {
    position: relative;
    display: inline;
    padding-right: 10px;
    line-height: 0;
    font-size: 16px;
    font-weight: 400;
    top: 1px;
}

.footer-top__content .right-box a.two:after {
    border: 2px solid var(--thm-base);
    background-color: var(--thm-base);
}

.footer-top__content .right-box a+a {
    margin-left: 6px;
}



.footer {
    position: relative;
    display: block;
    padding-top: 120px;
    padding-bottom: 120px;
    z-index: 1;
}

.single-footer-widget {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-footer-widget .title {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: -6px;
    margin-bottom: 32px;
    padding-bottom: 14px;
}

.single-footer-widget .title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
}

.single-footer-widget .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
}


.single-footer-widget .our-company-info {
    position: relative;
    display: block;
    max-width: 370px;
    width: 100%;
}

.single-footer-widget .our-company-info .text-box {
    position: relative;
    display: block;
    padding-bottom: 21px;
}

.single-footer-widget .our-company-info .text-box p {
    color: #b0b0bd;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0;
}

.single-footer-widget .our-company-info ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-footer-widget .our-company-info ul li {
    position: relative;
    display: block;
}

.single-footer-widget .our-company-info ul li h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.single-footer-widget .our-company-info ul li p {
    color: #b0b0bd;
    margin: 0;
}

.single-footer-widget .our-company-info .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 34px;
}

.single-footer-widget .our-company-info .btn-box a {
    color: #ffffff;
    padding: 0 35px;
}

.single-footer-widget .our-company-info .btn-box a:hover {
    color: var(--thm-base);
}

.single-footer-widget .our-company-info .btn-box a.btn-one:before {
    background: #ffffff;
}

.single-footer-widget .our-company-info .btn-box a.btn-one:after {
    border: 2px solid var(--thm-base);
    background-color: var(--thm-base);
}



.footer-widget-links {
    position: relative;
    display: block;
    margin-top: -2px;
    overflow: hidden;
}

.footer-widget-links .left {
    width: 140px;
}

.footer-widget-links ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-widget-links ul li {
    position: relative;
    display: block;
    line-height: 30px;
    margin-bottom: 10px;
}

.footer-widget-links ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-block;
    padding-right: 15px;
    color: #b0b0bd;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-links ul li a:before {
    font-family: flaticon !important;
    content: "\f149" !important;
    position: absolute;
    top: 1px;
    right: -4px;
    transition: .5s;
    transform: perspective(400px) scaleX(0) rotate(270deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    font-size: 12px;
}

.footer-widget-links ul li a:hover:before {
    transform: perspective(400px) scaleX(1.0) rotate(-90deg);
}

.footer-widget-links ul li a:hover {
    color: var(--thm-base);
}




.footer-widget-contact-info {
    position: relative;
    display: block;
    padding-top: 5px;
}

.footer-widget-contact-info ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-widget-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.footer-widget-contact-info ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-contact-info ul li h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.footer-widget-contact-info ul li p {
    color: #b0b0bd;
    margin: 0;
}

.footer-widget-contact-info ul li p a {
    color: #b0b0bd;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-contact-info ul li p a:hover {
    color: var(--thm-base);
}


.footer-social-link {
    position: relative;
    display: block;
    padding-top: 24px;
}

.footer-social-link ul {}

.footer-social-link ul li {
    position: relative;
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    margin-right: 10px !important;
}

.footer-social-link ul li:last-child {
    margin-right: 0 !important;
}

.footer-social-link ul li a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    background: #2d2d3f;
    color: #ffffff;
    font-size: 16px;
    line-height: 45px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-social-link ul li:hover a {
    background: var(--thm-base);
}

.footer-menu {
    position: relative;
    display: block;
}

.footer-menu .footer-nav {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-menu .footer-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 25px;
}

.footer-menu .footer-nav li:last-child {
    margin-right: 0;
}

.footer-menu .footer-nav li a {
    color: #b0b0bd;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.footer-menu .footer-nav li a:hover {
    color: #ffffff;
}


.footer-widget-links-2 {
    position: relative;
    display: block;
    margin-top: -2px;
    overflow: hidden;
}

.footer-widget-links-2 ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.footer-widget-links-2 ul li {
    position: relative;
    display: block;
    line-height: 30px;
    margin-bottom: 10px;
}

.footer-widget-links-2 ul li:last-child {
    margin-bottom: 0;
}

.footer-widget-links-2 ul li a {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    padding-right: 15px;
    color: #b4bdc5;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-links-2 ul li a:hover {
    padding-left: 25px;
}

.footer-widget-links-2 ul li a:before {
    font-family: flaticon !important;
    content: "\f164" !important;
    position: absolute;
    top: 1px;
    left: 0px;
    transition: .5s;
    transform: perspective(400px) scaleX(1.0) rotate(180deg);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    font-size: 14px;
}

.footer-widget-links-2 ul li a:hover:before {
    transform: perspective(400px) scaleX(1.0) rotate(-180deg);
}

.footer-widget-links-2 ul li a:hover {
    color: var(--thm-base);
}
/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.breadcrumb-area-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    opacity: 0.40;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
    padding: 60px 0 60px;
    z-index: 10;
}

.breadcrumb-area.style2 .inner-content {
    padding: 128px 0 128px;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
    text-align: center;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: capitalize;
}


.breadcrumb-menu {
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 0;
    height: 72px;
    display: flex;
    align-items: center;
}

.breadcrumb-menu ul {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-menu ul li {
    position: relative;
    float: left;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 10px;
    font-family: var(--thm-font-2);
}

.breadcrumb-menu ul li i:before {
    position: relative;
    top: 0px;
    display: inline-block;
    font-size: 18px;
}

.breadcrumb-menu ul li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color:#db0e1b;
}




.breadcrumb-area .title.blog-single h2 {
    font-size: 48px;
}

/*** 
=============================================
    Contact Info Area style
=============================================
***/

.contact-info-area {
    position: relative;
    display: block;
    padding-top: 60px;
    padding-bottom: 30px;
    z-index: 10;
}

.single-contact-info-box {
    position: relative;
    display: flex;
    padding-top: 20px;
    margin-bottom: 30px;
    z-index: 1;
    height: 100%;
}

.single-contact-info-box .icon {
    position: absolute;
    top: 0;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--thm-base);
    border-radius: 0%;
    z-index: 2;
}

.single-contact-info-box .icon::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -16px;
    z-index: -1;
    border-bottom: 20px solid rgba(var(--thm-base-rgb), .80);
    border-right: 16px solid transparent;
}

.single-contact-info-box .icon span::before {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 25px;
    line-height: 60px;
    text-align: center;
}


.single-contact-info-box .text-holder {
    position: relative;
    display: block;
    padding: 71px 30px 34px;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.single-contact-info-box .text-holder .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    background-repeat: repeat;
    z-index: -1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-box:hover .text-holder .pattern-bg {
    background-color: #1c1c27;
}


.single-contact-info-box .text-holder .top {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.single-contact-info-box .text-holder h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 2px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-box:hover .text-holder h3 {
    color: #ffffff;
}

.single-contact-info-box .text-holder span {
    font-style: italic;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-box:hover .text-holder span {
    color: #b0b0bd;
}

.single-contact-info-box .text-holder p {
    margin: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-box:hover .text-holder p {
    color: #b0b0bd;
}

.single-contact-info-box .text-holder p a {
    color: var(--thm-gray);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-info-box:hover .text-holder p a {
    color: #b0b0bd;
}

.single-contact-info-box .text-holder p a:hover {
    color: var(--thm-base);
}








/*** 
=============================================
    Contact Form Area Css
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 60px;
}

.contact-style1_form {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
    padding: 54px 40px 60px;
    z-index: 1;
}

.contact-style1_form .top-title {
    position: relative;
    display: block;
    padding-bottom: 34px;
}

.contact-style1_form .top-title h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    margin: 0 0 10px;
}

.contact-style1_form .top-title p {
    margin: 0;
}

.contact-form {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--thm-font);
}

.contact-form form textarea {
    height: 110px;
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #757575;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #757575;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #757575;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #757575;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #757575;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #757575;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #757575;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #757575;
}

.contact-form form textarea::-webkit-input-placeholder {
    color: #757575;
}

.contact-form form textarea:-moz-placeholder {
    color: #757575;
}

.contact-form form textarea::-moz-placeholder {
    color: #757575;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #757575;
}




.contact-form form .select-box {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
}

.contact-form .nice-select {
    height: 55px;
    line-height: 53px;
    background: #ffffff;
    border: 1px solid #e5e5e5 !important;
    font-family: var(--thm-font);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    padding-left: 20px;
    padding-right: 20px;
}

.contact-form .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #757575;
    border-right: 2px solid #757575;
    right: 22px;
    margin-top: 0px;
    top: 21px;
    z-index: 10;
}



.contact-form form .button-box {
    position: relative;
    display: block;
}

.contact-form form .button-box button {
    position: relative;
    display: block;
    width: 100%;
}


.contact-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.contact-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 665px;
}
.product-area{position: relative;
padding: 60px 0px;
}

.product-area .col-lg-3{margin:10px 0px;}
.product-area h4{display: block;width: 100%;}
.product-box{border:1px solid #ddd;
box-shadow:5px 5px 5px #ddd;

margin: 0px 5px;
/* height: 100%; */
}
.product-box h6{padding: 15px;
background: #0f3588;
color: #fff;

}

.product-box p{    margin: 10px 10px;
    padding-bottom: 10px;}