/*========================================================================
    Index
    ------------------------------------------------------------------------
    # - PreLoader
    # - Header
    # - MainMenu
    # - Breadcrumb Section
    # - Home v2 header slider
    # - Feature Service
    # - Service
    # - About
    # - Call To Action
    # - Team
    # - Blog
    # - Contact form
    # - Footer
*/
/*basic content*/
* {
    margin: 0;
    padding: 0;
}
a {
    color: var(--theme-color);
    text-decoration: none !important;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
:root{
    --theme-color : #ea1b29;
    --second-color : #17293e;
    --body-font:"Saira Semi Condensed", sans-serif;
    --title-font: "Plus Jakarta Sans", sans-serif;
}
:root {
  --thm-font: 'Saira Semi Condensed', sans-serif;
  --thm-font-2: 'Poppins', sans-serif;
  --thm-reey-font: 'FontAwesome';
  --thm-gray: #6e7478;
  --thm-gray-rgb: 110, 116, 120;
  --thm-base: #ea1b29;
  --thm-base-rgb: 234, 27, 41;
  --thm-black: #17293e;
  --thm-black-rgb: 23, 41, 62;
  --thm-gray-bg: #f2f3f5;
  --thm-gray-bg-rgb: 242, 243, 245;
}
::-moz-selection {
    background-color: #38adb6;
    color: #ffffff;
}
::selection {
    background-color: #38adb6;
    color: #ffffff;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    -o-text-overflow: '';
    text-overflow: '';
    position: relative;
    cursor: pointer;
}
.select_icon {
    width: 100%;
    position: relative;
    display: block;
}
.select_icon:before {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    z-index: 1;
    right: 20px;
    color: #87868a;
    top: 15px;
    display: inline-block;
}
input:focus,
button:focus,
textarea:focus,
select:focus,
a:focus {
    outline: none;
}
button {
    border: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    opacity: 1;
}
input::placeholder, textarea::placeholder {
    opacity: 1;
}
input,
select {
    width: 100%;
    background-color: #ffffff;
    border: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 400;
    margin: 0;
    font-family: var(--title-font);
    padding: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #222;
    font-weight: 400;
    margin: 0;
    font-family: var(--title-font);
    padding: 0;
}
p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #87868a;
}
body {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
    font-family: var(--body-font);
}
.mb-30 {
    margin-bottom: 30px;
}
.section_padding {
    padding: 30px 0;
}
.section_border {
    border-bottom: 2px solid #f1f1f1;
}
.hero-section-title {margin-bottom: 35px;}
.hero-section-title h1 {
    font-size: 40px;
    font-weight: 600;
    color: #38373c;
    position: relative;
    line-height: 54px;
}
.hero-section-title p{
    margin-top: 12px;
}
.hero-section-title h1:before{
    width: 35%;
    height: 2px;
    position: absolute;
    content: '';
    bottom: -3px;
    background-color: var(--second-color);
    box-shadow: 0px 2px 4px var(--theme-color);
}
.hero-section-title.text-center h1:before{
    left: 50%;
    transform: translateX(-50%);
}
.hero-title-with-shape .heading_with_border {
    position: relative;
    padding-top: 25px;
    margin: 0;
    font-weight: 400;
    font-size: 20px;
}
.hero-title-with-shape .heading_with_border:before {
    content: '';
    background: #38adb6;
    width: 25px;
    height: 3px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
}
.heading-title-with-shape h1 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-title-with-shape {
    margin-bottom: 40px;
}

.btn-yellow {
    font-weight: 500;
    font-size: 20px;
    padding: 20px 30px;
    border-radius: 999px;
    transition: all 0.3s;
    display: inline-block;
    color: #fff;
    border: 1px solid transparent;
    background-color: var(--theme-color);
    .icon-box{
        display: inline-block;
    }
}
.btn-yellow:hover {
    color: #191b1a;
    background-color: #fff;
    border-color: var(--theme-color);
}
.btn-yellow i {
    margin-left: 10px;
    transform: translateY(1px);
}
.btn-yellow.btn-two{
   color: #191b1a;
    background-color: transparent;
    border-color: var(--theme-color);
}
.btn-yellow.btn-two:hover{
    background-color: var(--theme-color);
    border: 1px solid transparent;
    color: #fff;
}

/*------------------------------------
# .0 PreLoader
------------------------------------*/
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 99999999999;
    overflow: hidden;
}
.preloader .loader {
    position: absolute;
    left: 50%;
    width: 80px;
    height: 80px;
    top: 50%;
    margin-top: -40px;
    margin-left: -40px;
    border-radius: 50%;
}
.preloader .loader:before {
    content: '';
    width: 5px;
    height: 5px;
    background: -webkit-linear-gradient(left, var(--theme-color), var(--second-color));
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -2.5px;
    margin-left: -2.5px;
    border-radius: 50%;
}
.preloader .loader span {
    width: 80px;
    height: 80px;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
}
.preloader .loader span:before,
.preloader .loader span:after {
    content: '';
    width: 35px;
    height: 3px;
    background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color), var(--second-color));
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1.5px;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}
.preloader .loader span:after {
    width: 25px;
    background: -webkit-linear-gradient(left, var(--theme-color), var(--theme-color), var(--second-color));
    -webkit-animation: rotate_to 1s linear infinite;
    animation: rotate_to 1s linear infinite;
}


/*------------------------------------
# .0 Header
------------------------------------*/
.menu_style_2.main_menu_area .container-fluid {
    padding: 0 40px;
}
.logo {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
}
.logo h3{
    color: var(--theme-color);
    font-weight: 800;
    font-size: 22px;
    span{
        color: var(--second-color);
    }
}
.header_area {
    padding: 15px 0;
}
.header_social .hd_social_icons {
    margin: 0;
    padding: 0;
}
.header_social .hd_social_icons li {
    display: inline-block;
}
.header_social .hd_social_icons li a {
    background-color: #f1f1f1;
    color: #87868a;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.header_area {
    background-color: #ffffff;
    border-bottom: 2px solid #F1F1F1;
}
.header_contact .hd_contact {
    margin: 0;
    padding: 7px 0;
}
.header_contact .hd_contact li {
    display: inline-block;
    margin-left: 14px;
    color: #38373c;
    font-weight: 600;
}
.header_contact .hd_contact li i {
    font-size: 20px;
    display: inline-block;
    color: var(--theme-color);
}
.header_contact .hd_contact li a {
    color: #87868a;
    font-size: 14px;
    font-weight: 400;
}
.header_contact .hd_contact li a:hover {
    color: var(--theme-color);
}
.main_menu_area .nav.navbar-nav li a {
    color: #222;
    font-family: var(--title-font);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 26px;
}
.main_menu_area .nav.navbar-nav li a:hover {
    background: none;
    color: var(--second-color);
}
.navbar-nav {
    float: none;
    display: flex;
    justify-content: flex-start;
}
.main_menu_area .nav.navbar-nav.col-md-10 {
    padding: 0;
}
.main_menu_area .navbar-nav .header_right_btn {
    float: none;
    position: relative;
    z-index: 1;
    margin-left: 20px;
}
.main_menu_area .navbar-nav li.header_right_btn a:hover {
    background: var(--theme-color);
    color: #ffffff;
}
.main_menu_area .navbar-toggles {
    border-radius: 0;
    border-left: 2px solid #f0ad4e;
    border-right: 2px solid var(--second-color);
    border-top: 2px solid #f0ad4e;
    border-bottom: 2px solid var(--second-color);
    display: none;
    width: 40px;
    height: 35px;
    padding: 6px;
    right: 15px;
    position: absolute;
    right: 8px;
    top: 60px;
    z-index: 1111;
    display: flex
;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    border-radius: 5px;
    border: 0;
    color: #fff !important;
}
.main_menu_area .navbar-toggles i {
    color: #fff;
    font-size: 24px;
}
.responsive_menu {
    position: relative;
    right: 0;
    background: var(--second-color);
    width: 8%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    z-index: 99;
    top: 0;
    display: none;
    float: right;
    cursor: pointer;
    font-size: 18px;
    border: 1px solid #f1f1f1;
    color: #fff;
}


/*------------------------------------
# .0 MainMenu
------------------------------------*/

.menu_style_2 .header_social {
    text-align: right;
    margin-top: 10px;
}
.menu_style_2 .container-fluid {
    padding: 0 25px;
}
.main_menu_area {
    background: #fff;
    padding: 13px 0;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
    position: fixed;
    z-index: 100;
    width: 100%;
}
.fixed-scroll-nav .main_menu_area {
    position: fixed;
    width: 100%;
    top: 0;
/*    background: #ffffff;*/
-webkit-box-shadow: 0 0 6px rgba(0,0,0,0.1);
box-shadow: 0 0 6px rgba(0,0,0,0.1);
}
.menu_style_2.main_menu_area {
    background: #ffffff;
}
.main_menu_area .navbar-nav li {
    float: initial;
    display: inline-block;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu li {
    display: block;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu {
    background: none;
    border: none;
    border-radius: 0;
    width: 200px;
    padding: 20px 30px;
    top: 100%;
    -webkit-box-shadow: none;
    z-index: 9999999999;
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    opacity: 0;
    visibility: hidden;
    background: #38373c;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    box-shadow: 0 5px 10px rgba(69, 69, 74, 0.20);
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu li a {
    padding: 10px 0;
    background: #38373c;
    color: #ffffff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: .1s;
    -o-transition: .1s;
    transition: .1s;
    font-size: 16px;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu li a:hover{
    color: var(--theme-color);
}
.main_menu_area .nav.navbar-nav li:hover ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.main_menu_area .nav.navbar-nav li:hover ul.dropdown-menu li:nth-child(2) a {
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}
.main_menu_area .main_nav_2 {
    width: 100%;
}
.main_menu_area .nav.navbar-nav.navbar-right.btn-right {
    text-align: right;
    padding-right: 0;
}
.main_menu_area .remove_padding {
    padding-right: 0;
}
.main_menu_area .navbar-right.btn-right li a {
    color: #87868a;
    padding: 16px 25px;
    text-align: center;
}
.main_menu_area .navbar-right.btn-right li a:hover {
    background-color: #87868a;
    color: #ffffff;
}


/*------------------------------------
# .0 Breadcrumb Section
------------------------------------*/
.breadcrumb_section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/banner__img.jpg) top left no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 85px;
    padding-bottom: 85px;
}
.breadcrumb_section h1{
    color: #fff;
}
.breadcrumb_section .breadcrumb {
    background: none;
    margin: 0 0 15px 0;
    padding: 0;
    justify-content: center;
}
.breadcrumb_section .breadcrumb li a:first-child{
    color: var(--theme-color);
}
.breadcrumb > li + li:before {
    content: '-';
    color: #fff;
    position: relative;
    left: 3px;
}
.breadcrumb_section .breadcrumb li a:hover {
    color: var(--theme-color);
}
.breadcrumb_section .breadcrumb li a, .breadcrumb_section .breadcrumb li {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
}
.breadcrumb_section h1 {
    font-size: 54px;
    font-weight: 300;
}


/*------------------------------------
# .0 Home v2 header slider
------------------------------------*/
.header_slider_area{
    position: relative;
    overflow: hidden;
    background-color: var(--second-color);
    z-index: 1;
    padding: 0;
}
.header_slider_area::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 3%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(5px);
}
.header_slider_area::after {
    content: '';
    position: absolute;
    top: 6%;
    left: 50%;
    width: 445px;
    height: 445px;
    background: linear-gradient(to right, #feebd8 0%, #e3a569 50%, #e87c12 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(1px);
}
.header_slider_area .main_part{
    position: absolute;
    right: 0;
    top: auto;
    bottom: 0;
    height: 100%;
    width: 53%;
}

.header_slider_area.owl-carousel .owl-stage-outer {
    overflow: inherit;
    height: 100% !important;
    overflow: hidden;
}

.header_slider_area .owl-item .header_slider_bg p {
    margin-left: -200px;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    opacity: 0;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    z-index: 1;
    color: #38373c;
}
.header_slider_bg{
    height: 520px;
}
.slider_main_img{
    width: 100%;
    max-width: 518px;
    height: 100%;
    max-height: 100%;
    position: relative;
    left: -190px;
    bottom: -60px;
    img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
}
.slider_main_img.second{
    left: -100px;
    bottom: -30px;
}
.slider_main_img.third{
    left: -100px;
}
.header_slider_area .owl-item.active .header_slider_bg p {
    margin-left: 0;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    opacity: 1;
    position: relative;
}
.header_slider_area .header_slider_bg h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
}
.home_v2_header_slider .header_slider_bg .col-md-6 {
    padding: 0;
}
.header_slider_area .owl-item .header_slider_bg h1 {
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    position: relative;
    display: inline-block;
    margin-left: -90px;
    opacity: 0;
    visibility: hidden;
    padding-right: 10px;
}
.header_slider_area .owl-item.active .header_slider_bg h1 {
    margin-left: 0;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    opacity: 1;
    visibility: visible;
}
.header_slider_area .header_slider_bg p span {
    display: inline-block;
    position: relative;
    margin-right: 60px;
    z-index: 1;
}
.slider__caption{
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    margin-bottom: 25px;
    position: absolute;
    top: 17%;
    right: 36px;
    max-width: 380px;

}
.slider__caption h1 span{
  display: inline-block;
  position: relative;
  width: max-content;
  margin: auto;
  z-index: 2;
}
.slider__caption h1{
    position: relative;
}
.slider__caption h1 span:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 14px;
    width: 100%;
    height: 16px;
    background: var(--theme-color);
    z-index: -1;
}
.header_slider_area .owl-item .header_slider_bg .slide_button a {
    display: inline-block;
    margin-top: 100px;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
}
.header_slider_area .header_slider_bg .slide_button {
    position: relative;
    overflow: visible;
    height: 68px;
}
.header_slider_area .owl-item.active .header_slider_bg .slide_button a{
    margin-top: 0;
    -webkit-transition: 2s;
    -o-transition: 2s;
    transition: 2s;
    box-shadow: 4px 6px 0px 0px var(--second-color);
}
.header_slider_area .header_slider_bg p span:before {
    content: '';
    width: 75px;
    height: 3px;
    position: absolute;
    left: 0;
    top: 42%;
    background: var(--theme-color);
    margin-top: -1px;
    z-index: -1;
}
.header_slider_area .owl-dots {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 999999;
    text-align: center;
}
.header_slider_area .owl-dots button {
    width: 10px;
    height: 10px;
    background: #38373c;
    border-radius: 50%;
    margin: 0 3px;
    opacity: .20;
}
.header_slider_area .owl-dots button.active {
    opacity: 1;
}
.header_slider_area.home_v2_header_slider {
    padding-top: 100px;
}
.fixed-scroll-nav .header_slider_area.home_v2_header_slider {
    padding-top: 0;
    margin-top: 101px;
}
.home_v2_header_slider .header_slider_bg {
    background-image: url(../images/slider/slider-5.jpg);
    padding: 258px 0 258px 0;
}
.home_v2_header_slider .slider_bg2 {
    background-image: url(../images/slider/slider-4.jpg);
}
.home_v2_header_slider .slider_bg3 {
    background-image: url(../images/slider/slider-5.jpg);
}
.home_v2_header_slider .owl-item .header_slider_bg h1 {
    color: #ffffff;
    margin-top: 0;
    line-height: 70px;
    margin-bottom: 35px;
}
.home_v2_header_slider .owl-dots button {
    background: #ffffff;
    opacity: .3;
}
.home_v2_header_slider .owl-dots button.active {
    background: #ffffff;
    opacity: 1;
}
.home_v2_header_slider .header_slider_bg:before {
    content: '';
    background: url(../images/shape/service-shape.png) no-repeat;
    background-size: 100%;
    width: 475px;
    height: 475px;
    position: absolute;
    right: 135px;
    bottom: -50px;
    opacity: .30;
}


/*------------------------------------
# .0 Feature Service
------------------------------------*/
.feature_service_area {
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1170px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.feature_service_box_width {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1 0 20%;
    background-color: var(--theme-color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding: 60px 40px;
    transform: translateY(0px);
}
.feature_service_box_width + .feature_service_box_width {
    border-left: 2px solid #fff;
}
.feature_service_box_width:hover {
    background-color: var(--second-color);
    transform: translateY(-10px);
}
.feature_service_box_width i {
    font-size: 65px;
    margin-bottom: 25px;
    display: block;
    transition: all .4s ease;
}
.feature_service_box_width p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2em;
    transition: all .4s ease;
}
.feature_service_box_width:hover i,
.feature_service_box_width:hover p {
    color: #fff;
}


/*------------------------------------
# .0 About Style 3
------------------------------------*/
.about_image_box {
    background: #aaaaaa url(../images/about-1.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
    padding: 125px 0 125px 0;
    z-index:1;
    width: 100%;
    height: 365px;
}
.about_image_box2 {
    background-image: url(../images/about-2.jpg);
}
.about_image_box3 {
    background-image: url(../images/about-3.jpg);
}
.about_style_3_details {
    margin-top: 60px;
    position: relative;
}
.about_style_3_details > img.about_us_shape {
    position: absolute;
    z-index: -1;
    width: 152px;
    height: 152px;
    margin-left: -50px;
    top: -19px;
}
.about_style_3_details p {
    color: #87868a;
    font-weight: 400;
}
.about_style_3_details h1 span {
    font-weight: 300;
    color: var(--theme-color);
}
.about_style_3_details h1 {
    font-weight: 600;
    font-size: 40px;
}
.about_style_4_details i {
    font-size: 76px;
    color: #fadb81;
}



/*------------------------------------
# .0 About Style 4
------------------------------------*/
.about_style_4_area {
    background: #38373c url(../images/breather-easy-bg.jpg) center center fixed no-repeat;
    background-size: cover;
    color: #ffffff;
    z-index: 1;
    position: relative;
}
.about_style_4_area:before {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #38373c;
    z-index: -1;
    opacity: .70;
    position: absolute;
}
.about_style_4_details h1 {
    margin: 60px 0 40px 0;
    font-weight: 600;
    color: #ffffff;
    font-size: 50px;
}
.about_style_4_details p {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 55px;
    color: #ffffff;
    font-weight: 300;
}




/*------------------------------------
# .0 About
------------------------------------*/
.about_gray {
    background-color: #f1f1f1;
    padding: 70px 100px;
}
.about_image,
.about_image.about_style_2_img .about_2_img {
    position: relative;
    height: 435px;
    width: 95%;
    background: url(../images/about-2-1.jpg) center center no-repeat;
    background-size: cover;
}
.about_image .about_service_box_1 {
    width: 50%;
    float: left;
    background-color: var(--theme-color);
    color: #ffffff;
    margin-top: 5%;
    padding: 38px;
    border: 10px solid #fff;
    border-top: none;
    border-bottom: none;
}
.about_image .about_service_box_1:nth-child(2){
    border-left:none;
}
.about_image .about_service_box_1:last-child {
    border-right: none;
}
.about_image .about_service_box_1 h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
    line-height: 34px;
}
.about_image .about_service_box_1.about_service_box_2_bg h2 {
    color: #38373c;
}
.about_image .about_service_box_2_bg {
    background-color: var(--second-color);
    color: #38373c;
    margin-right: 0;
}
.about_image.about_style_2_img .about_2_img {
    height: 348px;
    width: 100%;
}
.about_image.about_style_2_img {
    height: 100%;
    width: 100%;
    background-image: none;
}
.about_image.about_style_2_img .about_service_box_1 i {
    font-size: 65px;
    display: block;
    text-align: left;
    margin-left: -15px;
    margin-bottom: 20px;
}
.hero-title-with-shape h1 {
    margin-top: 25px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
}
.about_details {
    padding-left: 20px;
}
.about_details p {
    margin: 45px 0 45px 0;
    font-size: 18px;
    line-height: 34px;
    padding-right: 45px;
    font-weight: 400;
}
.about_details.about_gray.responsive_no_pading {
    padding: 100px 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.about_details.about_gray.responsive_no_pading img.about_gray_shape {
    position: absolute;
    right: -100px;
    bottom: -142px;
    width: 382px;
    height: 382px;
    z-index: -1;
    opacity: .5;
}
.about_details.about_gray.responsive_no_pading p {
    padding-right: 0;
}
.about_details.about_gray.responsive_no_pading .hero-title-with-shape h1 {
    font-weight: 300;
}
.about_details .btn-yellow {
    padding: 17px 40px;
}
.about_area {
    overflow: hidden;
}
section.about_area img.about_shape {
    position: absolute;
    left: 50%;
    margin-left: -180px;
    margin-top: 25px;
    width: 382px;
    height: 382px;
}

.about-image__updated {
    position: relative;
}
.about-image__updated:before,
.about-image__updated:after {
    content: '';
    position: absolute;
    width: 47px;
    height: 47px;
    z-index: -1;
}
.about-image__updated:before {
    top: -10px;
    left: -10px;
    background-color: var(--second-color);
}
.about-image__updated:after {
    bottom: -10px;
    right: -10px;
    background-color: var(--theme-color);
}

/*------------------------------------
# .0 Service Area
------------------------------------*/
.service_box {
    margin: 0 0 30px;
    background: #fdf8f4;
    border-radius: 25px;
    padding: 0;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}
.service_box:hover{
    background-color: #fff;
}
.service_box .service_img{
    width: 100%;
    overflow: hidden;
    border-radius: inherit;
    height: 230px;
}
.service_box .service_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.8s all ease;
    border-radius: 6px;
}
.service_box:hover .service_img img{
    transform: scale(1.07) rotate(5deg);
}
.service_box .service_img {
    position: relative;
}
.service_box .service_img .icon-box {
    text-align: center;
    width: 77px;
    height: 75px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
}
.service_box .service_img .icon-box i {
    line-height: 75px;
    font-size: 38px;
    color: #38373C;
}

.service_box .btn-yellow {
    width: 100%;
    display: block;
    padding: 7px 10px;
    font-size: 14px;
    text-align: center;
}
.service_box .btn-yellow:hover {
    color: #38373c;
}
.service_box .service_details {
    padding: 20px 27px;
}
.service_details a h2 {
    display: block;
    transition: 0.4s;
}
.service_details a h2:hover{
    color: var(--theme-color);
}
.service_details h2 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.service_details p {
    color: #1d1d1d;
    font-size: 17px;
    margin-bottom: 20px;
    font-weight: 400;
    margin-left: auto;
    line-height: 1.4;
    margin-right: auto;
}

.service_center_left i {
    font-size: 50px;
}
.service_box_btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}


/*------------------------------------
# .0 Service Style 2
------------------------------------*/
.service_img_info_box {
    position: relative;
    margin-bottom: 130px;
    width: 100%;
    height: 400px;
    background: url(../images/services/service-info-bg.jpg) center center no-repeat;
    background-size: cover;
}
.service_style_2_area p {
    font-size: 24px;
    color: #87868a;
    line-height: 40px;
    padding: 0 50px;
    font-weight: 400;
}
.service_img_info_box .service_info_color_shape {
    width: 152px;
    height: 152px;
    position: absolute;
    bottom: -76px;
    left: 50%;
    margin-left: -76px;
}



/*------------------------------------
# .0 Service Benefits
------------------------------------*/
.service_benefits_box {
    border: 1px solid #f1f1f1;
    padding: 50px 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.service_benefits_box:hover {
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}
.service_benefits_box h3 {
    margin: 28px 0 40px 0;
    font-size: 20px;
    padding-left: 25px;
    padding-right: 25px;
    line-height: 28px;
    font-weight: 600;
}
.service_benefits_box p {
    color: #87868a;
}
.service_benefits_box > i {
    font-size: 65px;
    color: var(--theme-color);
}


/*------------------------------------
# .0 Service Details
------------------------------------*/

.service_details_left h1 {
    font-size: 34px;
    font-weight: 600;
    margin: 40px 0 10px 0;
}
.service_details_left p {
    line-height: 30px;
    margin: 30px 0 40px 0;
    font-weight: 400;
    color: #87868a;
}
.service_details_left p.extra_mr {
    margin-top: 40px;
    margin-bottom: 36px;
}
.service_details_left p.info_mr {
    margin-top: 38px;
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 0;
}
.service_details_left h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
    float: left;
    width: 100%;
    display: block;
}
.service_details_left p a:hover {
    color: var(--second-color);
}
.service_details_left ul {
    display: inline-block;
    width: 100%;
}
.service_details_left ol{
    padding-left: 20px;
}

.service_details_left ul li,.service_details_left ol li {
    line-height: 25px;
    color: #87868a;
    font-weight: 400;
    padding: 10px 0;
}
.service_details_left ul li > i {
    margin-right: 10px;
    color: var(--theme-color);
}
.service_details_left ul.service_details_ac {
    float: left;
    width: 100%;
    position: relative;
}
.service_details_left ul.service_details_ac li {
    margin-bottom: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 30px;
}
.service_details_left ul.service_details_ac li:last-child {
    margin-bottom: 0;
}
.service_details_left ul.service_details_ac li i {
    margin-top: 5px;
}
.service_details_left img {
    width: 100%;
    border-radius: 20px;
}
.service_details_contact h2 {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
}
.service_details_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--theme-color);
    padding: 50px 40px;
    color: #ffffff;
}
.service_details_contact span.fa {
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.service_details_contact h2 span {
    font-size: 18px;
    display: block;
    font-weight: 400;
}
.service_details_sv_cnt .service_center_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #f1f1f1;
    padding: 40px 50px;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.service_details_sv_cnt .service_center_left:first-child {
    border-left: none;
}
.service_details_sv_cnt .service_center_left:last-child {
    border-right: none;
}
.service_details_sv_cnt .service_center_left i.fa ,
.service_details_sv_cnt .service_center_left span{
    display: block;
}
.service_details_sv_cnt .service_center_left span {
    color: #38373c;
    font-weight: 600;
    line-height: 20px;
    margin-top: 15px;
}
.service_details_sv_cnt .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    border: none;
}
.service_details_sv_cnt .nav > * {
    flex: 1;
}
.service_details_sv_cnt .nav a > .service_center_left {
    color: #38373c;
}
.service_details_sv_cnt .nav .active > .service_center_left {
    color: #38373c;
}
.service_details_sv_cnt .nav.nav-tabs li a {
    padding: 0;
    border: none;
}
.service_details_sv_cnt .nav.nav-tabs li:last-child a {
    margin-right: 0;
}
.service_category {
    padding: 38px 50px;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
}
.service_category ul li {
    display: block;
    line-height: 45px;
}
.service_category ul li a {
    color: #87868a;
    font-weight: 600;
    display: block;
}
.service_category ul li a > i {
    float: right;
    line-height: 38px;
}
.service_category ul li a:hover {
    color: var(--theme-color);
}
.service_details_right h1 {
    font-size: 20px;
    font-weight: 600;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    padding: 30px 0;
    border-top: 1px solid #f1f1f1;
}
.service_cool_head {
    margin-bottom: 0;
}
.service_center_left:hover,
.service_details_sv_cnt .nav.nav-tabs li.active > a > .service_center_left {
    background-color: var(--second-color);
}
.service_details_contact > span {
    font-size: 65px;
    margin-right: 5px;
}
.service_style_2_area img {
    width: 100%;
}




/*------------------------------------
# .0 Call to action style 1
------------------------------------*/
.call_to_action {
    background-color: #f5d974;
    padding: 85px 0;
}
.call_to_action h1 {
    font-size: 40px;
    padding-top: 12px;
}
.btn-gray {
    background-color: #38373c;
    color: #ffffff;
    padding: 17px 47px;
    display: inline-block;
    font-weight: 700;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 12px;
    letter-spacing: 1px;
}
.btn-gray:hover {
    background: #38adb6;
    color: #ffffff;
}

/*------------------------------------
# .0 Call to action style 3
------------------------------------*/
.cta_style_3_area {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 115px 0;
    overflow: hidden;
}
.cta_style_3_area:after,
.cta_style_3_area:before {
    content: '';
    background: #fbdc89;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
}
.cta_style_3_area:after {
    left: auto;
    right: 0;
    background: var(--theme-color);
}
.cta_style_3_width span {
    color: #3b3a3d;
    font-weight: 700;
    font-size: 54px;
    display: block;
    margin-top: 70px;
}
.cta_style_3_width {
    padding-right: 105px;
}
.cta_style_3_right {
    padding-right: 0;
    padding-left: 105px;
}
.cta_style_3_width h2 {
    font-weight: 300;
    font-size: 40px;
}
.cta_style_3_right h2 {
    color: #ffffff;
}
.cta_style_3_right span {
    color: #ffffff;
}
.cta_style_3_area > i {
    position: absolute;
    left: 0;
    font-size: 255px;
    opacity: .2;
    bottom: -40px;
    color: #ffffff;
}
.cta_style_3_area > i.icon_right {
    left: auto;
    right: 0;
}


/*------------------------------------
# .0 Team Member
------------------------------------*/
.team_member {
    border: 1px solid #f1f1f1;
    padding: 10px;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow: hidden;
    height: 360px;
}
.team_member:hover {
    -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
}
.team_member img {
    width: 100%;
}
.team_details h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}
.team_details h3 span {
    color: #87868a;
    font-weight: 600;
    font-size: 16px;
}
.team_details .team_socials li {
    display: inline-block;
}
.team_details .team_socials li a {
    color: #87868a;
    display: inline-block;
    margin: 0 5px;
}
.team_details {
    padding: 30px 0 20px 0;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.team_member .team_socials {
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.team_details .team_socials li a:hover {
    color: var(--theme-color);
}
.team_member:hover .team_socials {
    opacity: 1;
    /*height: 100%;*/
    /*visibility: visible;*/
}
.team_member:hover .team_details {
    bottom: 34px;
}




/*------------------------------------
# .0 CounterUp
------------------------------------*/
.counter_box .counter {
    display: inline-block;
    color: var(--theme-color);
    font-size: 100px;
    position: relative;
    font-weight: 300;
}
.counterup_area .counter_box {
    border-right: 1px solid #f1f1f1;
    padding: 86px 70px 40px 70px;
    position: relative;
}
.counterup_area .col-md-4:last-child .counter_box{
    border-right: none;
}
.counter_box img.number_img_shape {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -70px;
    width: 152px;
    height: 152px;
}
.counterup_area .counter_box p {
    color: #87868a;
    margin-top: 45px;
    font-size: 18px;
    font-weight: 400;
}

/*------------------------------------
# .0 Gallery
------------------------------------*/
.gallery_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.gallery_area > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    -webkit-box-shadow: 0 0 25px rgba(0,0,0,0.1);
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.gallery_area .gallery_width:first-child .gallery_fixed_height img {
    width: 100%;
}
.gallery_width img {
    position: relative;
}
.gallery_fixed_height {
    position: relative;
}
.gallery_overlay {
    position: absolute;
    left: 0;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    padding: 40px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4);
    transform: scale(.4);
    opacity: 0;
    visibility: hidden;
}
.gallery_width:hover .gallery_overlay {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: .9;
    visibility: visible;
}
.gallery_overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding-right: 40px;
}
.gallery_overlay a {
    background-color: #f5d974;
    color: #38373c;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 45px;
}


/*------------------------------------
# .0 Client Logos
------------------------------------*/
.clients_logo_area {
    position: relative;
    width: 100%;
    display: inline-block;
}
.clients_logo img {
    width: 123px !important;
    text-align: center;
    margin: auto;
    height: auto;
    opacity: .3;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.clients_logo img:hover {
    opacity: 1;
}



/*------------------------------------
# .0 About Service Section
------------------------------------*/
.about_service_area {
    position: relative;
    width: 100%;
    display: inline-block;
    overflow: hidden;
}
.about_service_left {
    position: relative;
    width: 95%;
    background: url(../images/why_choose_us.jpg) center no-repeat;
    background-size: cover;
    height: 675px;
}
.about_service_left img {
    width: 105%;
    position: relative;
}
.about_service_right {
    padding-left: 50px;
}
.about_service_right h1 {
    font-size: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}
.about_service_right ul li {
    display: block;
    line-height: 44px;
    color: #87868a;
    font-size: 18px;
    font-weight: 400;
}
.about_service_right ul li > i {
    margin-right: 10px;
    color: var(--theme-color);
}
.about_service_left .about_service_year {
    background-color: #f5d974;
    color: #38373c;
    position: absolute;
    right: -50px;
    bottom: 0;
    margin: 0;
    font-size: 54px;
    padding: 50px 25px 40px 25px;
    width: 190px;
    height: 177px;
    font-weight: 300;
}
.about_service_left .about_service_year span {
    font-size: 24px;
    display: inline-block;
    line-height: 26px;
    margin-top: 10px;
    color: #38373c;
    font-weight: 300;
}
.about_service_right .about_service_discount p {
    font-size: 24px;
    color: #38373c;
    margin: 0;
    font-weight: 300;
}
.about_service_right .about_service_discount {
    padding: 50px 35px;
    border: 1px solid #f1f1f1;
    margin-top: 45px;
}
.about_service_right .about_service_discount h1 {
    margin: 0;
    color: var(--theme-color);
    font-size: 54px;
    font-weight: 300;
    line-height: initial;
}



/*------------------------------------
# .0 Video Promotion
------------------------------------*/
.video_promotion_area {
    background: #aaaaaa url(../images/video-promotion.jpg) center center fixed no-repeat;
    background-size: cover;
    position: relative;
    padding: 180px 0;
    z-index:1;
}
.video_promotion_area:before {
    content: '';
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .60;
}
#videostore iframe {
    margin: auto;
    width: 100%;
    height: 500px;
}
.overlay .video-img {
    width: 127px;
    height: 127px;
    background: #f5d974;
    display: inline-block;
    line-height: 135px;
    border-radius: 50%;
    color: #38373c;
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
}
.video_promotion_area .overlay > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f5d974;
    left: 0;
    top: 0;
    border-radius: 50%;
    z-index: -1;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-animation: scale 1s infinite linear;
    animation: scale 1s infinite linear;
}
.overlay h1 {
    color: #fff;
    font-size: 54px;
    margin: 25px 0 0 0;
    font-weight: 300;
}
.mfp-close-btn-in .mfp-close {
    color: #fff;
    font-size: 50px;
    top: 5%;
    right: 2%;
}


/*------------------------------------
# .0 Call to action style 2
------------------------------------*/
.cta_style_2_area {
    z-index: 1;
    padding: 237px 0;
    overflow-x: hidden;
    position: relative;
    background: #38373c url(../images/ac-skew-1.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100px;
}
.cta_style_2_area:before {
    content: '';
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
}
.cta_style_2_area:after {
    content: '';
    background-image: url(../images/shape/service-shape.png);
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    width: 474px;
    height: 474px;
    background-size: cover;
    border-radius: 50%;
    margin-left: -236px;
}
.cta_style_2_area .cta_style_2_left {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 999;
    margin-top: -60px;
    background-color: #f5d974;
    text-align: right;
    padding: 40px 60px 22px 0;
    width: 337px;
    min-height: 147px;
    vertical-align: middle;
}
.cta_style_2_area .cta_style_2_right {
    left: auto;
    text-align: left;
    right: 0;
    padding: 40px 0 22px 60px;
}
.cta_style_2_img_left {
    position: absolute;
    left: 0;
    width: 70%;
    background-color: #999;
    background-size: cover;
    height: 100%;
    top: 0;
    z-index: -1;
    -webkit-transform: skew(45deg);
    -ms-transform: skew(45deg);
    transform: skew(45deg);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    overflow: hidden;
}
.cta_style_2_img_right {
    left: auto;
    right: 0;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}
.cta_style_2_img_left:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    width: 170%;
    height: 100%;
    -webkit-transform: skew(-45deg);
    -ms-transform: skew(-45deg);
    transform: skew(-45deg);
}
.cta_style_2_img_right:before {
    left: auto;
    right: 0;
    background-image: url(../images/ac-skew-2.jpg);
}
.cta_style_2_left p {
    font-weight: 600;
    font-size: 16px;
    line-height: initial;
    color: #38373c;
}
.cta_style_2_left h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}

/*------------------------------------
# .0 Latest Blog
------------------------------------*/
.blog_share_box{
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #f1f1f1;
    padding: 10px;
}
.blog_share_box:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}
.blog_share_box .bl_share_img {
    position: relative;
    width: 100%;
}
.blog_share_box .bl_share_img img {
    width: 100%;
}
.bl_share_img .blog_date {
    width: 57px;
    height: 55px;
    display: inline-block;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
    font-size: 16px;
    padding: 14px 10px 10px 10px;
    line-height: 16px;
    font-weight: 600;
}
.blog_share_details {
    padding: 35px 20px 20px 30px;
}
.blog_share_details .comment_author a {
    text-decoration: none;
}
.blog_share_details .comment_author a:hover {
    color: #38373c;
}
.blog_share_details .comment_author {
    display: block;
    color: #38adb6;
    font-weight: 600;
    margin-bottom: 15px;
}
.blog_share_details h1 a {
    color: #38373c;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    display: block;
}
.blog_share_details h1 a:hover {
    color: var(--theme-color);
}
.blog_share_details h1 {
    font-size: 34px;
    margin-bottom: 35px;
    font-weight: 500;
    line-height: 34px;
}
.blog_share_details p {
    font-size: 16px;
    color: #87868a;
    font-weight: 400;
}



/*------------------------------------
# .0 Blog Details
------------------------------------*/
.widget_search input {
    background-color: var(--theme-color);
    color: #ffffff;
    font-weight: 600;
    padding: 25px 35px;
}
.widget_search input::-webkit-input-placeholder {
    color: #ffffff;
}
.widget_search input:-ms-input-placeholder {
    color: #ffffff;
}
.widget_search input::-ms-input-placeholder {
    color: #ffffff;
}
.widget_search input::placeholder {
    color: #ffffff;
}
.latest_post, .widget_categories, .tagcloud {
    padding: 40px;
    border: 1px solid #f1f1f1;
}
.blog_right_box h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.latest_post ul li {
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f1f1f1;
}
.latest_post ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.latest_post ul li a {
    color: #38373c;
    font-weight: 600;
    display: block;
    font-size: 16px;
    padding-right: 30px;
    line-height: 26px;
}
.latest_post ul li a:hover {
    color: #87868a;
}
.latest_post ul li a img {
    margin-right: 20px;
    float: left;
    width: 60px;
    height: 60px;
}
.widget_categories ul li {
    display: block;
    line-height: 40px;
}
.widget_categories ul li a {
    display: block;
    color: #87868a;
    font-weight: 600;
}
.widget_categories ul li a > i {
    float: right;
    line-height: 38px;
}
.widget_categories ul li a:hover {
    color: var(--theme-color);
}
.tagcloud ul li {
    display: inline-block;
}
.tagcloud ul li a {
    display: block;
    color: #87868a;
    font-weight: 400;
    position: relative;
    margin-bottom: 5px;
    margin-right: 5px;
}
.tagcloud ul li a:hover {
    color: var(--theme-color);
}
.tagcloud ul li:last-child a {
    margin-right: 0;
    margin-bottom: 0;
}
.tagcloud ul li a::before {
    content: ',';
    position: absolute;
    right: -4px;
}
.blog_left_box .bl_share_img {
    position: relative;
}
.blog_details_left .blog_share_details {
    padding-left: 0;
    padding-right: 0;
}
.blog_left_box .bl_share_img {
    background: url(../images/blog/blog-details.jpg) center center no-repeat;
    position: relative;
    width: 100%;
    height: 428px;
    background-size: cover;
}
.blog_left_box .blog_share_details p {
    margin-bottom: 30px;
}
.blog_social_share_box .share_box_left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.blog_social_share_box {
    border-top: 1px solid #f1f1f1;
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog_social_share_box .share_box_left ul li a {
    display: block;
    margin-left: 30px;
    color: #87868a;
}
.blog_social_share_box .share_box_left ul li a:hover {
    color: var(--theme-color);
}
.blog_social_share_box .share_box_left ul li {
    display: inline-block;
}
.blog_social_share_box .share_box_left p a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.blog_social_share_box .share_box_left p a:hover {
    color: #38373c;
}
.blog_social_share_box .share_box_left p {
    font-weight: 600;
    color: #38373c;
    font-size: 20px;
}
.blog_author_box {
    padding: 60px;
    border: 1px solid #f1f1f1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.blog_author_box .author_img img {
    margin-right: 40px;
}
.blog_author_box .author_bio h2 {
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
}
.blog_author_box .author_bio p {
    padding: 30px 0 30px 0;
    line-height: 30px;
    font-weight: 400;
}
.blog_author_box .author_bio .author_profile {
    font-weight: 600;
}
.blog_author_box .author_bio .author_profile:hover {
    color: #38373c;
}
.blog_comment_box .title-box {
    padding: 60px 0;
}
.blog_comment_box .title-box h3 {
    font-size: 30px;
    font-weight: 400;
}
.blog_comment_box .text-box h3 {
    font-size: 18px;
    font-weight: 600;
}
.blog_comment_box .comment-respond .title-box {
    padding: 60px 0 55px 0;
}
.blog_comment_box .comment-list .depth-2 {
    padding-left: 50px;
}
.blog_comment_box .comment-list li {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 55px;
    margin-bottom: 55px;
    position: relative;
}
.blog_comment_box .comment-list li:last-child{
    margin-bottom: 0;
}
.blog_comment_box .text-box .comment_date_time {
    display: block;
    color: var(--theme-color);
    font-weight: 400;
    margin-top: 3px;
}
.blog_comment_box .text-box .comment-title p {
    padding-top: 26px;
    font-weight: 400;
    padding-right: 85px;
}
.blog_comment_box .reply.comment-title .btn-gray {
    padding: 10px 25px;
    position: absolute;
    right: 0;
    top: 0;
}
.blog_comment_box .reply.comment-title .btn-gray:hover {
    color: #38373c;
    background-color: var(--second-color);
}
.blog_comment_box form input,
.blog_comment_box form textarea {
    background-color: #f1f1f1;
    padding: 15px 20px;
    border: none;
    margin-bottom: 20px;
    font-weight: 400;
}
.blog_comment_box form textarea {
    width: 100%;
    height: 230px;
    resize: none;
}
.blog_comment_box form textarea {
    margin-bottom: 10px;
}
.blog_comment_box form input.input_m_right {
    margin-right: 3%;
}
.blog_comment_box form input::-webkit-input-placeholder,
.blog_comment_box form textarea::-webkit-input-placeholder {
    color: #87868a;
}
.blog_comment_box form input:-ms-input-placeholder,
.blog_comment_box form textarea:-ms-input-placeholder {
    color: #87868a;
}
.blog_comment_box form input::-ms-input-placeholder,
.blog_comment_box form textarea::-ms-input-placeholder {
    color: #87868a;
}
.blog_comment_box form input::placeholder,
.blog_comment_box form textarea::placeholder {
    color: #87868a;
}
.blog_comment_box form input.half_width {
    width: 48.5%;
}
.single-comment-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.comment_image img {
    width: 110px;
    margin-right: 30px;
}



/*------------------------------------
# .0 Contact form
------------------------------------*/
.contact_form_area{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact_form_area .contact_form_width {
    -ms-flex: 169px;
    -webkit-flex: 169px;
    flex: 169px;
}
.contact_form_area .contact_form_width:nth-child(1) {
    -webkit-box-flex: 1.3;
    -ms-flex: 1.3;
    flex: 1.3;
}
.contact_map_title {
    background-color: var(--theme-color);
    color: #ffffff;
    padding: 30px 155px;
    font-size: 30px;
    line-height: 34px;
    font-weight: 400;
}
input.half_width {
    width: 48%;
    float: left;
}
.contact_form_width.contact-right {
    padding: 120px 380px 120px 117px;
}
.contact-right-style-2 input.input_m_right,
.contact_form_width input.input_m_right {
    margin-right: 4%;
}
.contact-right-style-2.extra_mr_30 input.half_width {
    width: 47.5%;
}
.contact-right-style-2.extra_mr_30 select,
.contact-right-style-2.extra_mr_30 input {
    margin-bottom: 30px;
}
.contact-right-style-2.extra_mr_30 input.input_m_right {
    margin-right: 5%;
}
.contact_form_width .hero-title-with-shape h1 {
    margin-top: 25px;
    font-size: 30px;
    line-height: 36px;
    padding-right: 0;
    font-weight: 300;
}
#map {
    width: 100%;
    height: 612px;
}
#map .gmnoprint,
#map button.gm-control-active.gm-fullscreen-control {
    display: none;
}
.contact-right #select {
    color: #87868a;
    padding: 17px 15px !important;
    height: 64px;
    border-radius: 0 !important;
}
.contact-right {
    background-color: #f1f1f1;
}
.contact-right h4 {
    margin-bottom: 20px;
}
.ctf_gray {
    background-color: #f1f1f1;
}
.contact-right input::-webkit-input-placeholder {
    color: #87868a;
}
.contact-right input:-ms-input-placeholder {
    color: #87868a;
}
.contact-right input::-ms-input-placeholder {
    color: #87868a;
}
.contact-right input::placeholder {
    color: #87868a;
}
.contact-right input,
.contact-right select,
.newslatter input {
    padding: 17px 20px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #87868a;
}
.contact_details {
    padding-right: 50px;
}
.contact-right p,
.contact_details p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
}
.ctf_gray .contact-right p {
    font-size: 18px;
    line-height: 34px;
    color: #87868a;
    font-weight: 400;
}
.contact-right.contact_details .hero-title-with-shape h1 {
    font-weight: 300;
}
.ctf_gray .contact-right.contact_details .hero-title-with-shape h1 {
    font-size: 27px;
}


.map_section #map {
    height: 540px;
}
.contact_form_area .contact_with_us,
.contact_form_area .contact_details {
    background: none;
}
.contact_form_area .contact_with_us input,
.contact_form_area .contact_with_us select,
.contact_form_area .contact_with_us textarea {
    background-color: #f1f1f1;
}
.contact_form_area .contact_with_us textarea {
    width: 100%;
    resize: none;
    border: none;
    padding: 20px 20px;
    font-weight: 600;
    height: 120px;
    margin-bottom: 15px;
}
.contact_us > p {
    margin-bottom: 40px;
}
.contact_location_box .contact_location_map {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 40px 40px;
    border: 1px solid #F1F1F1;
    margin-right: 20px;
}
.contact_location_map > span {
    font-size: 45px;
    display: block;
    margin-bottom: 20px;
    color: var(--theme-color);
}
.contact_location_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact_location_box .contact_location_map p {
    margin-bottom: 0!important;
    color: #87868a;
    font-size: 20px;
}
.contact_location_box .contact_location_map:last-child {
    margin-right: 0;
}
.contact_us .contact-right {
    background: none;
}
.contact_us .contact-right input,
.contact_us .contact-right textarea {
    background: #F1F1F1;
    color: #87868a;
    font-weight: 400;
}
.contact_us .contact-right textarea {
    width: 100%;
    border: none;
    padding: 17px 20px;
    resize: none;
    margin-bottom: 10px;
}
.contact_us .contact-right .hero-title-with-shape .heading_with_border {
    font-weight: 400;
}
.contact_us .contact-right p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 55px;
    color: #87868a;
}



/*------------------------------------
# .0 Footer
------------------------------------*/
.footer_content.section_padding {
    padding-bottom: 0;
}
.footer_area {
    background-color: #fff;
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 2px solid var(--theme-color);
}
.footer_content {
    position: relative;
    width: 100%;
    display: inline-block;
    padding-top: 50px;
    padding-bottom: 20px;
}
.footer_content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}
.footer_textwidget p {
    color: #777;
    padding-right: 60px;
    margin-bottom: 37px;
    font-weight: 400;
}
.footer_textwidget h4 {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.footer_textwidget .number {
    font-size: 24px;
    margin-top: 5px;
    font-weight: 400;
}
.footer_link li a {
    color: #777;
    font-size: 16px;
    line-height: 40px;
    display: block;
    font-weight: 600;
}
.footer_link li a:hover {
    color: var(--theme-color);
}
.footer_link.extra_mt {
    margin-top: 57px;
}
.footer_contact {
    position:relative;
    width: 100%;
    border-bottom: 1px solid #535356;
}
.footer_contact .footer_contact_width {
    border-right: 1px solid #535356;
    padding: 46px 0;
}
.footer_contact .col-md-4:last-child .footer_contact_width {
    border: none;
}
.footer_contact .col-md-4 {
    padding: 0;
}
.footer_contact_width p {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}
.footer_contact .footer_contact_width p > i {
    display: inline-block;
    color: #fadb81;
    font-size: 20px;
}
.footer_contact_width p span,
.footer_contact_width p span a {
    color: #a9a7ad;
    font-weight: 400;
}
.footer_contact_width p span a:hover {
    color: var(--theme-color);
}
.footer_area h2 {
    color: var(--second-color);
}
.footer_textwidget.textwidget span.number {
    display: block;
    color: #474646;
}
.footer_area img.footer_shape {
    opacity: .2;
    position: absolute;
    bottom: -17%;
    text-align: center;
    width: 440px;
    margin: auto auto auto -220px;
    height: 440px;
    z-index: -1;
    left: 50%;
}


/* copyright */
.copyright_social ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.copyright_social ul li {
    display: inline-block;
}
.copyright_social ul li a i,
.header_social .hd_social_icons li a i {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 50%;
    line-height: 45px;
}
.copyright_social ul li a,
.header_social .hd_social_icons li a {
    color: #38373c;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    position: relative;
}
.copyright_social ul li a {
    background-color: #ffffff;
    margin: 0 1px;
}
.header_social .hd_social_icons li a:before,
.copyright_social ul li a:before {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--second-color);
    position: absolute;
    border-radius: 50%;
    left: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.copyright_social ul li a:hover:before,
.header_social .hd_social_icons li a:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.newslatter input {
    margin-bottom: 10px;
}
.newslatter input::-webkit-input-placeholder {
    color: #87868a;
}
.newslatter input:-ms-input-placeholder {
    color: #87868a;
}
.newslatter input::-ms-input-placeholder {
    color: #87868a;
}
.newslatter input::placeholder {
    color: #87868a;
}
.copyright_area {
    border-top: 1px solid #535356;
/*    text-align: center;*/
padding: 5px 0;
}
.copyright_text p {
    color: #b5b4b9;
    font-weight: 400;
}
.copyright_text a{
    color: var(--second-color);
}
.footer_link li a:hover{
    color: var(--second-color);
}


@-webkit-keyframes rotate {
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



@keyframes rotate {
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate_to {
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate_to {
    0%{
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes scale {
    0%{
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .7;
    }
    100%{
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes scale {
    0%{
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .7;
    }
    100%{
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

/*===============================*/
.py-5 {
    padding: 50px 0;
}
.bg-light {
    background-color: #f8f9fa;
}
/*------------------------------------------------------------------------------*/
/*  booking form
/*------------------------------------------------------------------------------*/  
.form-section{
    background-color: #fff;
    padding: 25px 7px;
    border-radius: 20px;
}
.form-section .h4 {
    text-align: center;
    color: #222;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: capitalize;
}
.form-section .form-control, .form-section .input, .form-section textarea{
    
    width: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
    line-height: 60px;
    border-radius: 999px;
    color: #222;
    background-color: #fdf8f4;
    border: 1px solid transparent;
    transition: 0.4s;
    padding-right: 50px;
}
.form-section textarea{
    height: 100px;
    border-radius: 20px;
}
.form-section .form-control:focus, .form-section .input:focus, .form-section textarea:focus{
    border: 1px solid var(--theme-color);
    box-shadow: none;
}
.form-group{
    margin-bottom: 15px;
    position: relative;
}
.form-group i{
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 21px;
    color: var(--second-color);
}
.form-group.textarea_group i{
    top: 12px;
    transform: none;
}

.form-section .btn-yellow{
    padding: 7px 30px;
    font-size: 16px;
}
.bookingForm .form-section .btn-yellow{
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
}
.bookingForm .form-section .btn-yellow{
    color: #fff;
}

/*footer*/
.footer_area h2:before {
    content: '';
    height: 3px;
    width: 100px;
    background-color: var(--second-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

/*float buttons*/

.whatsapp-button {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
    background-color: #3fd0d4;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call-button i {
    font-size: 24px;
}
.text-white{
    color: #fff;
}
.copyright_area a:hover{
    color: var(--second-color);
}
.whatsapp-btn{
    background-color: #25d366;
    margin-left: 30px;
}
.privacy_policy h3{
    margin-top: 20px;
}

/*===============about us==============*/
.about-box{
    box-shadow: 0 0 8px #dddddd;
    padding: 20px;
    border-radius: 20px;
}
.about-box img{
    width: 100%;
    border-radius: 20px;
}
.about-box .about_detail .subtitle{
    font-size: 20px;
    margin-bottom: 10px;
}
.about-box .about_detail .title{
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.about-box .about_detail p{
    margin-bottom: 15px;
}

/********Why Choose Us*********/

.about-item {
    padding: 20px;
    box-shadow: 1px 0px 12px -5px rgba(0,0,0,.3);
    display: flex;
    align-items: center;
background-color: #fff;
border-radius: 15px;
transition: 0.4s;
text-align: left;
}
.about-item:hover{
    background-color: var(--theme-color);
    p{
        color: #fff;
    }
    .icon i{
        color: #fff;
    }
    .about-title a{
        color: #fff;
    }
}
.about-item .icon{
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    color: var(--theme-color);
    font-size: 24px;
    display: flex
;
    align-items: center;
    justify-content: center;
    position: relative;
    left: -10px;
}
.about-item.first{
    top: 30px;
}

.about-item.item-2 {
    margin-top: 20px
}

@media(max-width: 767px) {
    .about-item.item-2 {
        margin-top:0
    }
}

@media(max-width: 767px) {
    .about-item {
        margin-bottom:20px;
        width: 90%;
        margin-inline: auto;
    }
}

.about-item .about-title {
    font-size: 22px;
    margin-bottom: 10px
}

.about-item .about-title a {
    color: #222;
    font-weight: 600;
    font-family: var(--title-font);
}
.about-seven__right .text-center a.btn-theme{
    margin-top: 0;
}

.about-item p:last-child {
    margin-bottom: 0
}
.about-item p{
    line-height: 21px;
    font-size: 14px;
    font-weight: 500;
}
.phone_res_header-btn{
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    background: var(--theme-color);
    text-align: center;
    padding: 0px;
    z-index: 9;
    border-bottom: 1px solid #000;
}
.phone_res_header-btn a.btn-yellow{
    width: 100%;
    height: 100%;
}
.header_slider_area .owl-nav.disabled{
    display: block;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 100%;
}
.header_slider_area .owl-nav.disabled .owl-prev{
    left: 10px;
    position: absolute;
    font-size: 70px;
    color: #fff;
    font-weight: 200;
}
.header_slider_area .owl-nav.disabled .owl-next{
    right: 10px;
    position: absolute;
    font-size: 70px;
    color: #fff;
    font-weight: 200;
}
.fade:not(.show){
    opacity: 1;
}
.page-form #desktop-form{
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    border: 2px solid var(--second-color);
    border-radius: 20px;
}
/*******contact Page*****/

.contact-page-div{
    position: absolute;
    padding: 20px 58px;
    width: 100%;
    top: 0;
    z-index: 1;
}
.contact-page-wrap .title_bar, .contact_content{
    display: inline-block;
}
.contact_section .contact-page-img .naini-img{
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
}
.contact_section .contact-page-img .naini-img img{
    width: 100%;
    height: 313px;
    border-radius: 20px;
}
.contact_section .contact-page-img .naini-img:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
}

.contact_section .contact-page-img{
    width: 100%;
    border-radius: 15px;
    margin-top: 20px;
    max-height: 100%;
    position: relative;
}
.contact_section .contact-page-img:before{
    background-image: url("../images/services/nainital.jpg");
}
.contact_section .title-area .sec-title{

    color: #262B37;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
} 
.contact_section .contact-page-wrap .title_bar {
    color: var(--theme-color);
    text-align: center;
    font-size: 35px;
    width: 60px;
    display: inline-block;
    height: 60px;
    background-color: #E6EFFF;
    border-radius: 50%;
    line-height: 60px;
    margin: auto;
}

.contact_section .contact-page-wrap .contact_content {
    padding: 10px 18px;
    width: 83%;
    color: #fff;
    display: inline-block;
}
.contact-page-wrap .contact_content h4{
    color: #fff;
    font-family: var(--second-font);
    font-weight: 700;
}
.contact_section .contact-page-wrap .contact_content p a{
    margin-bottom: 0;
    color: #fff;
}
.contact_section .contact-page-wrap .title_bar h4 {
    margin-bottom: 0;
    margin-left: 10px;
    text-transform: capitalize;
    color: var(--theme-color);
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
}
.contact-page-form .get-in-touch{
    height: 100%;
    margin-top: 15px;
}

/*--------------------------------------------------------------
# Contact Info
--------------------------------------------------------------*/
.contact-info__single {
    position: relative;
    display: block;
    border-radius: 8px;
    background-color: #f6f6f6;
    text-align: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border: 1px solid var(--tedlife-bdr-color);
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;
}

.contact-info__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: #121212;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-info__single:hover .contact-info__icon:before {
    transform: scaleX(1);
}

.contact-info__icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: #121212;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.contact-info__single:hover .contact-info__icon span {
    transform: scale(0.9);
    color: #ffffff;
}


.contact-info__single p {
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-info__single h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #121212;
}

.contact-info__single h3 a {
    color: #121212;
}

.contact-info__single h3 a:hover {
    color: var(--theme-color)
}
.contact-page form .form-control{
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgb(97 99 104 / 20%);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #616368;
    display: block;
    border-radius: 8px;
    box-shadow: none!important;
}
.contact-page form textarea{
    height: auto!important;
}
.contact-page form ::placeholder{
    text-transform: capitalize;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-left {
    margin-bottom: 80px;
  }
}
.tr-about-text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-text p {
    font-size: 16px;
  }
}
.tr-about-content {
  padding-left: 35px;
  margin-bottom: 35px;
}
.tr-about-content i {
  position: absolute;
  top: -4px;
  left: 0;
  font-weight: 400;
  font-size: 25px;
  color: var(--theme-color);
}
.tr-about-content span {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
  color: #222;
}
.tr-about-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-content p {
    font-size: 16px;
  }
  .tr-about-content p br {
    display: none;
  }
}
.tr-about-thumb-wrap {
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-thumb-wrap {
    margin-left: 0;
  }
}
.tr-about-thumb-1 img, .tr-about-thumb-2 img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .tr-about-thumb-2 {
    margin-top: 20px;
  }
}
.tr-about-thumb-2 > img {
  margin-bottom: 45px;
}
.tr-about-client img {
  margin-right: 20px;
}
.tr-about-client-content h4 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 0;
  text-transform: capitalize;
  color: #222;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-client-content h4 {
    font-size: 30px;
  }
}
.tr-about-client-content > span {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #242625;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-client-content > span {
    font-size: 16px;
  }
}
.tr-about-circle-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--second-color);
  z-index: -1;
}
.tr-about-list ul li {
  list-style-type: none;
}
.tr-about-list ul li:not(:last-child) {
  margin-bottom: 20px;
}
.tr-about-list ul li > span {
  position: relative;
  padding-left: 23px;
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  color: #222;
}
.tr-about-list ul li > span i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25px;
  color: var(--theme-color);
}
.tr-about-list-content {
  padding-left: 45px;
}
.tr-about-list-content span {
  font-weight: 700;
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
  color: #222;
}
.bg-theme-light{
    background-color: #fdf8f4;
}
.tr-about-list-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: var(--theme-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-2-area .tr-about-left {
    margin-bottom: 0px;
  }
}
.tr-about-2-thumb-wrap {
  padding-top: 55px;
  margin-right: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-2-thumb-wrap {
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.p-relative{
    position: relative;
}
.tr-about-2-thumb-wrap .tr-about-client {
    position: absolute;
    bottom: 14%;
    left: 0%;
    padding: 32px 34px;
    border-radius: 0 20px 20px 0;
    background-color: #fdf8f4;
    display: inline-block;
}
.tr-about-2-thumb-1 img {
  border-radius: 37px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.tr-about-2-thumb-2 {
  position: absolute;
  top: 0;
  right: -50px;
  border: 10px solid #fff;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tr-about-2-thumb-2 {
    right: 0;
  }
}
.tr-about-2-thumb-2 img {    
    border-radius: 10px;
    width: 265px;
    height: 294px;
    object-fit: cover;
    object-position: right;
}
.tr-section-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    display: inline-block;
    color: var(--theme-color);
}
.tr-section-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    display: block;
    text-transform: capitalize;
    color: #222;
    font-family: var(--title-font);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tr-section-title {
        font-size: 34px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-3-area .tr-about-left {
    margin-bottom: 0;
  }
}
.tr-about-3-thumb-wrap {
  margin-right: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-3-thumb-wrap {
    margin-right: 0;
  }
}
.tr-about-3-thumb-wrap .tr-about-client {
  position: absolute;
  bottom: 7%;
  left: 13%;
}
.tr-about-3-thumb-wrap .tr-about-client-content {
  border-radius: 20px;
  padding: 19px 40px;
  text-align: center;
  background-color: var(--theme-color);
}
.tr-about-3-thumb-wrap .tr-about-client-content h4 {
  margin-bottom: 7px;
  color: #fff;
}
.tr-about-3-thumb-wrap .tr-about-client-content span {
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-3-thumb-main {
    margin-bottom: 40px;
  }
}
.tr-about-3-thumb-main img {
  border-radius: 38px;
  border: 8px solid var(--second-color);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-about-3-thumb-main img {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  22. testimonial css start
/*----------------------------------------*/

.tr-testimonial-mlr {
  margin: 0px 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-testimonial-mlr {
    margin: 0;
  }
}
.tr-testimonial-quote {
  margin-bottom: 47px;
  display: block;
}
.tr-testimonial-quote svg {
  color: var(--theme-color);
}
.tr-testimonial-content p {
  font-size: 30px;
  margin-right: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tr-testimonial-content p {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tr-testimonial-content p {
    font-size: 27px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tr-testimonial-content p {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tr-testimonial-content p {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .tr-testimonial-content p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .tr-testimonial-title-box {
    margin-bottom: 30px;
  }
}
.tr-testimonial-author-wrap {
  padding: 20px;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s;
  margin-bottom: 20px;
  background-color: #fdf8f4;
}
.tr-testimonial-author-thumb {
  flex: 0 0 auto;
  margin-right: 30px;
}
.tr-testimonial-author-thumb img {
  border-radius: 50%;
  height: 80px;
  width: 80px;
  object-fit: cover;
}
.tr-testimonial-author-title {
  font-size: 24px;
  margin-bottom: 12px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tr-testimonial-author-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tr-testimonial-author-title {
    font-size: 17px;
  }
}
.tr-testimonial-author-info span {
  font-size: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tr-testimonial-author-info span {
    font-size: 16px;
  }
}

.tr-testimonial-2-item {
  margin-top: 51px;
  margin-bottom: 20px;
  padding: 90px 40px 40px 48px;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}
.tr-testimonial-2-item .tr-testimonial-content p {
  font-size: 20px;
  margin-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tr-testimonial-2-item .tr-testimonial-content p {
    font-size: 18px;
  }
}
.tr-testimonial-2-item .tr-testimonial-author-wrap {
  padding: 0;
  border-radius: 0;
  background: none;
}
.tr-testimonial-2-item .tr-testimonial-quote {
  position: absolute;
  top: -51px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100px;
  width: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  color: var(--theme-color);
  background-color: #fdf8f4;
}
.tr-testimonial-2-item .tr-testimonial-author-thumb img {
  border-radius: 20px;
}
.tr-testimonial-2-item .tr-testimonial-author-title {
  font-size: 18px;
}
.tr-testimonial-2-item .tr-testimonial-author-info span {
  font-size: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .tr-testimonial-2-item .tr-testimonial-author-info span {
    font-size: 16px;
  }
}
.tr-testimonial-2-active {
  margin: -30px -125px;
  padding: 30px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), (max-width: 767px) {
  .tr-testimonial-2-active {
    margin: 0;
  }
}
.tr-testimonial-2-active .swiper-wrapper .swiper-slide-active .tr-testimonial-2-item {
  transform: translateY(-30px);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tr-slider-nav {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .tr-slider-nav {
    margin-bottom: 30px;
  }
}
.tr-slider-nav .slick-center .tr-testimonial-author-wrap {
  background-color: #fff;
  box-shadow: 0 4px 20px -1px rgba(19, 16, 34, 0.05);
}

.tr-slider-dots {
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
}
.tr-slider-dots .swiper-pagination-bullet {
  width: 100px;
  height: 10px;
  display: inline-block;
  border-radius: 5px;
  background-color: #fdf8f4;
  opacity: 1;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 767px) {
  .tr-slider-dots .swiper-pagination-bullet {
    width: 50px;
  }
}
.tr-slider-dots .swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}
.tr-slider-dots .swiper-pagination-bullet-active.swiper-pagination-bullet::after {
  opacity: 1;
  visibility: visible;
}

.tr-testimonial-inner-style.tr-testimonial-bg {
  padding: 120px 0;
  padding-bottom: 190px;
  background-color: #fdf8f4;
}
main{
    position: relative;
}
@media(max-width:992px){
/* Base styles for responsive menu */
.navbar-toggles {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    padding: 10px;
    cursor: pointer;
}

.navbar-collapse {
    display: none;
}

.navbar-collapse.active {
    display: block;
    background: transparent;
    padding: 15px 0;
    margin-top: 10px;
}

.dropdown-menu-responsive2 {
    display: none;
    padding-left: 15px;
}

li.open > .dropdown-menu-responsive2 {
    display: block;
}

.phone_res_header-btn {
    text-align: center;
    margin-bottom: 15px;
}

.btn-yellow {
    background: #ffc107;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}

/* Optional: Smooth dropdown icon rotation */
.responsive_menu.rotate {
    transform: rotate(180deg);
}
.main_menu_area{
    padding-top: 60px;
    padding-bottom: 0;
}
.main_menu_area .navbar-toggles{
    display: flex;
}
.main_menu_area .navbar-nav li{
    position: relative;
    text-align: left;
    border-bottom: 1px solid rgb(255, 255, 255, 0.3);
    a{

    padding: 12px 26px;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    }
    .main_menu_area .navbar-nav li li{
        border-bottom: 0;
    }
}
.responsive_menu{
    position: absolute;
    top: 0;
    height: 100%;
    max-height: 60px;
}
.collapse_responsive {
    background-color: var(--theme-color);
    margin-top: 0;
}

.main_menu_area .nav.navbar-nav li ul.dropdown-menu{
    background-color: #f1f1f1;
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu li a{
    background-color: transparent;
    color: #fff;
}
.main_menu_area .nav.navbar-nav li a{
    color: #fff;
}
.main_menu_area .nav.navbar-nav li:hover ul.dropdown-menu{
    display: block;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu{
    opacity: 1;
    visibility: visible;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu{
    transform:  none !important;
}
.main_menu_area .nav.navbar-nav li.open ul.dropdown-menu{
    display: block !important;
    padding: 0 32px;
}
.main_menu_area .nav.navbar-nav li ul.dropdown-menu{
    background-color:var(--second-color);
}
.logo{
    top: 6px;
}
.mb--10{
    margin-bottom: 16px;
}
.collapse_responsive.collapse_active{
    margin-top: 10px;
}
}

@media(max-width:768px){
    
    .main_menu_area .phone_res_header-btn .btn-yellow{
        padding: 7px 30px;
    }
    
    .header_slider_area .main_part{
        width: 100%;
        height: 100%;
        padding: 10px;
        left: 0;
        top: 0;

    }
    .slider__caption{
        left: 50%;
        position: absolute;
        right: auto;
        top: 8%;
        z-index: 11;
        transform: translateX(-50%);
    }
    .slider_main_img{
        left: 50%;
        transform: translateX(-50%);
    }
    .slider_main_img.third{
         left: 50%;
        transform: translateX(-50%);
    }
    .slider_main_img.second{
         left: 50%;
        transform: translateX(-50%);
    }
    .header_slider_bg {
        height: 300px;
    }
    
#desktop-form .form-section {
    background-color: #fff;
    padding: 25px 7px;
    border-radius: 20px;
    margin-top: -100px;
    position: relative;
    z-index: 1;
    width: 95%;
    margin-inline: auto;}
}

.main-slider-one {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}

.main-slider-one .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 1;
  background-position: center center;
  background-attachment: scroll;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.main-slider-one .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.main-slider-one .image-layer::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.3;
  content: "";
  z-index: -1;
}

.main-slider-one__img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider-one__img {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.main-slider-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-slider-one__content {
  position: relative;
  display: block;
  padding: 100px 0px 100px;
  z-index: 5;
}

.main-slider-one__content .title {
  position: relative;
  display: block;
  margin-bottom: 51px;
  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: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -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 .swiper-slide-active .main-slider-one__content .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: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .title h2 {
  color: #ffffff;
  font-size: 68px;
  line-height: 1.1em;
  font-weight: 700;
}

.main-slider-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(80px);
  transform: perspective(400px) rotateY(0deg) translateX(80px);
  -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 .swiper-slide-active .main-slider-one__content .btn-box {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateX(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateX(0px);
  transform: perspective(400px) rotateY(0deg) translateX(0px);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.main-slider-one__content .btn-box .thm-btn {
  padding-right: 90px;
  padding-left: 40px;
}

.main-slider-one__content .btn-box .thm-btn .icon-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.main-slider-one__content .btn-box .thm-btn .icon-box i:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
}

.main-slider-one__outer-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0px;
  left: 0px;
  bottom: 200px;
  background: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg) translateX(0%);
  width: max-content;
  text-align: center;
  line-height: 0;
  z-index: 5;
  padding-top: 80px;
  padding-left: 25px;
  padding-right: 25px;
}

.main-slider-one__outer-content .social-links {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul {
  position: relative;
  display: block;
}

.main-slider-one__outer-content .social-links ul li {
  position: relative;
  display: inline-block;
  margin-bottom: 21px;
  padding-top: 33px;
}

.main-slider-one__outer-content .social-links ul li::before {
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 10px;
  background: #17293e;
  content: "";
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-bottom: 0px;
}

.main-slider-one__outer-content .social-links ul li:first-child:before {
  display: none;
}

.main-slider-one__outer-content .social-links ul li:last-child {
  margin-right: 0;
}

.main-slider-one__outer-content .social-links ul li:first-child {
  padding-top: 0px;
}

.main-slider-one__outer-content .social-links ul li a {
  color: #17293e;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__outer-content .social-links ul li a:hover {
  color: #ea1b29;
}

.main-slider-one__video {
  position: absolute;
  left: 575px;
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
  opacity: 0;
  transform: translateY(10%);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.main-slider .swiper-slide-active .main-slider-one__video {
  opacity: 1;
  transform: translateY(0);
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.main-slider-one__video a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  text-align: center;
  color: #ffffff;
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider-one__video a:hover {
  color: #ffffff;
  background: #ea1b29;
}

.main-slider-one__video a::before,
.main-slider-one__video a::after {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.main-slider-one__video a::after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.main-slider__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  line-height: 0;
  z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0px;
  color: #ffffff;
  font-size: 30px;
  line-height: 70px;
  text-align: center;
  opacity: 1;
  margin: 0;
  transition: all 500ms ease;
  z-index: 100;
}

.main-slider__nav .swiper-button-prev {
  float: left;
  left: 0;
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-next {
  float: right;
  right: 0;
}

.main-slider__nav .swiper-button-next::before,
.main-slider__nav .swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0%;
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-slider__nav .swiper-button-next:hover::before,
.main-slider__nav .swiper-button-prev:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev i::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-next i::before {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 400;
  transform: rotate(90deg);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.main-slider__nav .swiper-button-prev:hover i::before,
.main-slider__nav .swiper-button-next:hover i::before {
  color: #17293e;
}


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

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

.thm-social-link1 ul li {
  position: relative;
  display: inline-block;
  margin-right: 6px;
}

.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%;
  color: #ffffff;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: #ffffff;
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.thm-social-link1 ul li a:hover:before {
  transform: scale(1);
  opacity: 1;
}

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



/*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--thm-black);
  opacity: 0.7;
  cursor: pointer;
}

.mobile-nav__content {
  position: relative;
  width: 300px;
  background-color: #000000;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  z-index: 10;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.mobile-nav__close:hover {
  background-color: var(--thm-black);
}

.mobile-nav__close i:before {
  position: relative;
  display: inline-block;
  transform: rotate(45deg);
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-nav__content .logo-box img{
    
    width: 150px;
    background: #Fff;
    border-radius: 10px;
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 20px;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  color: #ffffff;
  font-size: 15px;
  font-family: var(--thm-font);
  font-weight: 500;
  height: 46px;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
  font-size: 14px;
  font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--thm-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--thm-base);
  border: none;
  outline: none;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--thm-base);
}


.mobile-nav__content .home-showcase__title {
  background-color: rgba(255, 255, 255, 0.1);
  margin-top: 0px;
}

.mobile-nav__contact {
  position: relative;
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
}

.mobile-nav__contact li {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--thm-base);
}

.mobile-nav__contact li>i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 0%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  margin-right: 10px;
}


.mobile-nav__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 10px;
}

.mobile-nav__social a:hover {
  color: var(--thm-black);
  background-color: #ffffff;
}



/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}



/*--------------------------------------------------------------
# Main Header Css
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 99;
}

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

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-box {
  display: block;
  float: right;
  margin-left: auto;
}


/****
  .main-menu__right {
    position: relative;
    display: block;
    float: right;
  }
  
  .main-menu__search-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 23px 0;
  }
  
  .main-menu__search-box:before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: -30px;
    content: "";
    width: 1px;
    background-color: var(--brote-white);
    opacity: .10;
  }
  
  .main-menu__search {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    color: var(--brote-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--brote-primary);
  }
  ***/


.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 60px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  position: relative;
  color: var(--thm-black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  font-family: var(--thm-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.dropdown>a:before {
  position: absolute;
  top: 2px;
  right: 5px;
  font-family: 'FontAwesome';
  content: "\f107";
  color: var(--thm-black);
  font-size: 11px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

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

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
  padding-right: 20px;
}


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

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  transform-origin: top;
  transform-style: preserve-3d;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 99;
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  transition: all 700ms ease;
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--thm-black-rgb, 53, 84, 209), 0.07);
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  font-size: 17px;
  line-height: 30px;
  color: var(--thm-black);
  letter-spacing: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 10px 25px;
  -webkit-transition: 500ms;
  transition: 500ms;
  font-family: var(--thm-font);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: #ffffff;
  background-color: var(--thm-base);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}


/*-------------------------------------
    Stricky Header Css
  ---------------------------------------*/
.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}


/***
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--brote-base);
  }
  **/

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  color: var(--thm-black);
  font-size: 25px;
  cursor: pointer;
  line-height: 0;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--thm-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

.stricky-header.main-menu {
  background-color: #ffffff;
}

.stricky-header .main-menu-box {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.stricky-header .main-menu__wrapper {
  background-color: #ffffff;
}

.stricky-header .main-menu__wrapper-inner {
  justify-content: space-between;
}

.stricky-header .phone-number-box-style1 {
  display: none;
}

.stricky-header .main-menu__list>li {
  padding-top: 48px;
  padding-bottom: 49px;
}

.stricky-header .main-menu__list>li+li {
  margin-left: 45px;
}

.stricky-header .main-menu-style1-right {
  margin-left: 30px;
}


/***
=============================================
Main Header One
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  z-index: 99;
}

.main-header-one__top {
  position: relative;
  display: block;
  background: #010101;
  padding: 0px 0px 0px;
}

.main-header-one__top .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header-one__top-left {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header-one__top-left p {
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

.main-header-one__top-middle {
  position: relative;
  display: block;
}

.main-header-one__top-middle .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.main-header-one__top-middle .btn-box .thm-btn {
  line-height: 50px;
}

.main-header-one__top-right {
  position: relative;
  display: block;
}

.main-header-one__top-right-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-social-links {
  position: relative;
  display: block;
  margin-top: -8px;
}

.header-social-links ul {
  position: relative;
  display: block;
}

.header-social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 21px;
}

.header-social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.header-social-links ul li a::before {
  position: absolute;
  top: 7px;
  left: -7px;
  bottom: -7px;
  right: 7px;
  background: rgba(255, 255, 255, 0.15);
  content: "";
  z-index: -1;
}

.header-social-links ul li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.header-social-links ul li a:hover:after {
  transform: scale(1.0);
  opacity: 1;
}

.header-social-links ul li a span::before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

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

.side-content-button-box {
  position: relative;
  display: block;
  padding-left: 120px;
}

.side-content-button-box .side-content-button {
  position: relative;
  display: block;
  line-height: 0;
}

.side-content-button-box .side-content-button a.navSidebar-button {
  position: relative;
  display: inline-block;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor {
  position: relative;
  display: block;
  width: 35px;
  height: 2px;
  background: #ffffff;
  margin: 8px 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.side-content-button-box .side-content-button a.navSidebar-button .decor.style2 {
  width: 30px;
  margin-left: 5px;
}

.side-content-button-box .side-content-button a.navSidebar-button:hover .decor {
  background: var(--thm-base);
}


.main-header-one__bottom {
  position: relative;
  display: block;
}

.main-header-one__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.main-header-one__bottom-inner {
  position: relative;
  display: block;
}

.main-header-one__bottom .main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

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

.main-header-one__bottom-left .logo-box {
  position: relative;
  display: block;
}
.main-header-one__bottom-left .logo-box img{

    width: 118px;
    margin: 5px 0;
}

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

.main-header-one__bottom-middle {
  position: relative;
  display: block;
}

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

.header-search-box {
  position: relative;
  display: block;
  line-height: 0;
  margin-right: 45px;
}

.header-search-box a {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 25px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-search-box a:hover {
  color: var(--thm-base);
}

.header-contact-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 45px;
}

.header-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: #dcdfe2;
  content: "";
}

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

.header-contact-box .icon-box span:before {
  color: var(--thm-base);
  font-size: 35px;
}

.header-contact-box .text-box {
  position: relative;
  display: block;
  margin-left: 25px;
}

.header-contact-box .text-box p {
  color: #334d6b;
  font-size: 17px;
  line-height: 30px;
  font-weight: 600;
  font-family: var(--thm-font-2);
}

.header-contact-box .text-box a {
  color: var(--thm-black);
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.011em;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.header-contact-box .text-box a:hover {
  color: var(--thm-base);
}

.thm-btn {
  position: relative;
  display: inline-block;
  border-radius: 0px;
  padding: 0px 55px 0px;
  line-height: 65px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 600;
  background: var(--thm-base);
  overflow: hidden;
  font-family: var(--thm-font);
  text-transform: capitalize;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:before {
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--thm-black);
}

.thm-btn:hover:before {
  top: -40%;
}

.thm-btn .txt {
  position: relative;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

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

.services-one__content-single {
  position: relative;
  display: block;
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgb(135, 140, 143, 0.06);
  padding: 0px 10px 32px;
  margin-bottom: 30px;
}

.services-one__content-single-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 110px;
  background: #f9fafa;
  margin: 0 auto 29px;
  z-index: 1;
}

.services-one__content-single-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: var(--thm-base);
  transition-delay: 0.6s;
  transition: .7s;
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: -1;
}

.services-one__content-single:hover .services-one__content-single-icon:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.services-one__content-single-icon span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 60px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__content-single:hover .services-one__content-single-icon span:before {
  color: #ffffff;
}

.services-one__content-single-content {
  position: relative;
  display: block;
}

.services-one__content-single-content h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.services-one__content-single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__content-single-content h2 a:hover {
  color: var(--thm-base);
}

.services-one__content-single-content .border-box {
  position: relative;
  display: block;
  width: 60px;
  height: 3px;
  background: #f2f3f5;
  margin: 0 auto;
  margin-top: 13px;
}

.services-one__content-single-content p {
  margin: 0;
  margin-top: 11px;
}

.services-one__img {
  position: relative;
  display: block;
  margin-left: 136px;
  z-index: 1;
}

.services-one__img-inner {
  position: relative;
  display: block;
}

.services-one__img-inner::before {
  position: absolute;
  top: 275px;
  left: -20px;
  bottom: 75px;
  width: 20px;
  background: var(--thm-base);
  content: "";
}

.services-one__img-inner img {
  max-width: none;
  float: left;
}

.services-one__img .icon-box {
  position: absolute;
  top: 0;
  left: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: var(--thm-base);
}

.services-one__img .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 100px;
}

.services-one__img-bottom {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 515px;
  width: 100%;
  background: #ffffff;
  padding: 27px 35px 31px;
  margin-top: 50px;
}

.services-one__img-bottom .left-text {
  position: relative;
  display: block;
  margin-right: 40px;
}

.services-one__img-bottom .left-text h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.services-one__img-bottom .right-text {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.services-one__img-bottom .right-text::before {
  position: absolute;
  top: -12px;
  left: 0;
  bottom: -11px;
  width: 2px;
  background: #daf3f4;
  content: "";
}

.services-one__img-bottom .right-text .icon-holder {
  position: relative;
  display: block;
}

.services-one__img-bottom .right-text .icon-holder span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 40px;
}

.services-one__img-bottom .right-text .text-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.services-one__img-bottom .right-text .text-box p {
  font-size: 17px;
  line-height: 28px;
  font-weight: 500;
}

.services-one__img-bottom .right-text .text-box h3 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

.services-one__img-bottom .right-text .text-box h3 a {
  color: var(--thm-gray);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.services-one__img-bottom .right-text .text-box h3 a:hover {
  color: var(--thm-base);
}
.faq-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 25px;
}

.faq-one__left-img {
  position: relative;
  display: block;
}

.faq-one__left-img img {
  max-width: none;
  float: right;
}

.faq-one__left-inner {
    position: relative;
    right: 0;
    background: #ffffff;
    padding: 20px;
}

.faq-one__form {
  position: relative;
  display: block;
  padding: 20px;
  z-index: 1;
}

.faq-one__form::before {
  position: absolute;
  top: -6px;
  left: 0;
  right: 110px;
  height: 6px;
  background: var(--thm-base);
  content: "";
}

.faq-one__form-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.faq-one__form-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #1a1a1a;
  opacity: 0.96;
  content: "";
  z-index: -2;
}

.faq-one__form .title-box {
  position: relative;
  display: block;
}

.faq-one__form .title-box h2 {
  color: #ffffff;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  text-transform: capitalize;
}

.faq-one__form .form-box {
  position: relative;
  margin-top: 19px;
}

.faq-one__form .form-box form {
  position: relative;
}

.faq-one__form .form-box form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.faq-one__form .form-box form .form-group input[type="text"],
.faq-one__form .form-box form .form-group input[type="email"],
.faq-one__form .form-box form .form-group input[type="tel"],
.faq-one__form .form-box form .form-group input[type="url"],
.faq-one__form .form-box form .form-group textarea,
.faq-one__form .form-box form .form-group select {
  position: relative;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.faq-one__form .form-box form .form-group textarea {
  height: 135px;
  resize: none;
  padding-top: 10px;
}

.faq-one__form .form-box form .form-group .select-box {
  position: relative;
  display: block;
  width: 100%;
  height: 65px;
}

.faq-one__form .form-box form .form-group .nice-select {
  position: relative;
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  text-transform: none;
  padding: 0px 20px 0px;
  width: 100%;
  height: 65px;
  line-height: 65px;
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 0px;
  outline: none;
  font-family: var(--thm-font);
}

.faq-one__form .form-box form .form-group .nice-select:after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, .7);
  border-right: 2px solid rgba(255, 255, 255, .7);
  right: 23px;
  margin-top: 0px;
  top: 25px;
  z-index: 10;
}

.faq-one__form .form-box form .form-group .nice-select .list {
  background-color: var(--thm-black);
}

.faq-one__form .form-box form .button-box {
  position: relative;
  display: block;
}

.faq-one__form .form-box form .button-box button {
  position: relative;
  z-index: 5;
}

.faq-one__form .form-box form .button-box button.thm-btn {
  width: 100%;
}


.faq-one__accordion {
  position: relative;
  display: block;
}

.faq-one__accordion .sec-title {
  padding-bottom: 53px;
}

.accordion-box {
  position: relative;
  display: block;
}

.accordion-box .block {
  position: relative;
  display: block;
  margin-bottom: 10px;
  transition: all 500ms ease;
  background: rgba(255, 255, 255);
  padding-bottom: 32px;
  margin-top: 35px;
}

.accordion-box .block::before {
  position: absolute;
  left: 105px;
  bottom: 0;
  right: 0;
  height: 2px;
  background: #edeeee;
  content: "";
}

.accordion-box .block.mb20 {
  margin-bottom: 0px;
}

.accordion-box .block:first-child {
  margin-top: 0;
}

.accordion-box .block:last-child {
  margin-bottom: 0;
  padding-bottom: 0px;
}

.accordion-box .block.bdrn::before {
  display: none;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: #f2f3f5;
  border-radius: 25px;
  border-top-right-radius: 0px;
  color: var(--thm-gray);
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.accordion-box .block .acc-btn.active .number-box {
  color: #ffffff;
}

.accordion-box .block .acc-btn .number-box::before {
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 0;
  right: 0px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f2f3f5;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -1;
}

.accordion-box .block .acc-btn.active .number-box::before {
  background: var(--thm-base);
}

.accordion-box .block .acc-btn .number-box::after {
  position: absolute;
  top: -5px;
  left: 0;
  bottom: 0;
  right: -5px;
  border-radius: 25px;
  border-top-right-radius: 0px;
  background: #f8f9fa;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: -2;
}

.accordion-box .block .acc-btn.active .number-box::after {
  background: rgba(var(--thm-base-rgb), 0.8);
}

.accordion-box .block .acc-btn .text {
  position: relative;
  display: block;
  margin-left: 30px;
}

.accordion-box .block .acc-btn .text h3 {
  color: var(--thm-black);
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  transition: all 500ms ease;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding-top: 7px;
  padding-left: 105px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block .acc-content p {
  margin: 0;
}

.faq-one__accordion-bottom {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f8fa;
  padding: 35px 60px 35px;
  margin-top: 75px;
}

.faq-one__accordion-bottom .icon-box {
  position: relative;
  display: inline-block;
}

.faq-one__accordion-bottom .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-gray);
  font-size: 70px;
}

.faq-one__accordion-bottom .text-box {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__accordion-bottom .text-box h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
}

.features-one {
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: -65px;
  z-index: 5;
}

.features-one .auto-container {
  max-width: 1530px;
  width: 100%;
}

.features-one__inner {
  position: relative;
  display: block;
  background: #ffffff;
  padding-bottom: 60px;
}

.features-one__single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.features-one__single.style2 {
  padding-left: 54px;
}

.features-one__single::before {
  position: absolute;
  top: 25px;
  right: -30px;
  bottom: 25px;
  width: 2px;
  background: #edeeee;
  content: "";
}

.features-one__single.style2::before {
  display: none;
}

.features-one__single-img {
  position: relative;
  display: block;
}

.features-one__single-img .inner {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  border: 10px solid #edeeee;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.features-one__single-img .inner::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  opacity: 0.5;
  content: "";
  z-index: 1;
}

.features-one__single-img .inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1.0);
  height: 100%;
  object-fit: cover;
}

.features-one__single:hover .features-one__single-img .inner img {
  transform: scale(1.1);
}

.features-one__single-img .inner .icon-box {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.features-one__single-img .inner .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 75px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.features-one__single:hover .features-one__single-img .inner .icon-box span:before {
  transform: scale(0.9);
}

.features-one__single-content {
  position: relative;
  display: block;
  margin-left: 40px;
  flex: 1;
}

.features-one__single-content h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.features-one__single-content h2 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 11px;
}

.features-one__single-content h2 a {
  color: var(--thm-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.features-one__single-content h2 a:hover {
  color: var(--thm-base);
}

.features-one__single-content p {
  font-size: 17px;
  line-height: 26px;
  margin: 0;
}
.service_box_btn{
    margin-top: 8px;
    .btn-yellow{
        padding: 14px 25px;
    }
}

.about-one {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.about-one::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 49%;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -1;
}

.about-one__img {
  position: relative;
  display: block;
  margin-left: 15px;
  max-width: 530px;
  width: 100%;
  z-index: 1;
}

.about-one__img::before {
  position: absolute;
  top: 100px;
  left: -15px;
  bottom: -15px;
  right: 15px;
  background-image: -moz-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  background-image: -webkit-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  background-image: -ms-linear-gradient(90deg, rgb(234, 27, 41) 0%, rgb(245, 141, 148) 18%, rgb(255, 255, 255) 99%);
  content: "";
  z-index: -1;
}

.about-one__img-inner {
  position: relative;
  display: block;
  overflow: hidden;
}

.about-one__img-inner::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .1) 100%);
  transform: skewX(5deg);
  z-index: 1;
}

.about-one__img:hover .about-one__img-inner::before {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one__img-inner .experience-box {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .8);
  padding: 30px 40px 29px;
  z-index: 5;
}

.about-one__img-inner .experience-box h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-one__img-inner .experience-box h2 span {
  color: var(--thm-base);
  font-size: 44px;
}

.about-one__img-inner .experience-box h2 .plus {
  position: relative;
  display: inline-block;
  top: 3px;
  right: 7px;
}

.about-one__img-inner img {
  width: 100%;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-one__img:hover .about-one__img-inner img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-one .odometer.odometer-auto-theme,
.about-one .odometer.odometer-theme-default {
  font-family: var(--thm-font);
  line-height: 45px;
}

.about-one__content {
  position: relative;
  display: block;
  margin-left: 70px;
  z-index: 1;
}

.about-one__content .big-title {
  position: absolute;
  top: -42px;
  left: -175px;
  z-index: -1;
}

.about-one__content .big-title h2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--thm-black-rgb), 0.09);
  font-size: 150px;
  line-height: 150px;
  font-weight: 700;
  text-transform: capitalize;
}

.about-one__content .sec-title {
  padding-bottom: 42px;
}

.about-one__content-text1 {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__content-text1 .text-box {
  position: relative;
  display: block;
  margin-right: 50px;
}

.about-one__content-text1 .text-box p {
  margin: 0;
}

.about-one__content-text1 .icon-box {
  position: relative;
  display: block;
  padding-left: 37px;
}

.about-one__content-text1 .icon-box::before {
  position: absolute;
  top: -15px;
  left: 0;
  bottom: -15px;
  width: 2px;
  background: #e7e8e9;
  content: "";
}

.about-one__content-text1 .icon-box span:before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 65px;
}

.about-one__content-text2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
}

.about-one__content-text2 .contant-box {
  position: relative;
  display: block;
  flex: 1;
}

.about-one__content-text2 .contant-box-single {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.about-one__content-text2 .contant-box-single.mb0 {
  margin-bottom: 0;
}

.about-one__content-text2 .contant-box-single .number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thm-black);
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  width: 70px;
  height: 70px;
  background: var(--thm-gray-bg);
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 1;
}

.about-one__content-text2 .contant-box-single .number-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.about-one__content-text2 .contant-box-single:hover .number-box::before {
  transform: scale(1.0);
  opacity: 1;
}

.about-one__content-text2 .contant-box-single:hover .number-box {
  color: #ffffff;
}

.about-one__content-text2 .contant-box-single .title-box {
  position: relative;
  display: block;
  margin-left: 30px;
  flex: 1;
}

.about-one__content-text2 .contant-box-single .title-box h2 {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

.about-one__content-text2 .img-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__content-text2 .img-box img {
  width: auto;
}

.about-one__content-text3 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.about-one__content-text3 .signature {
  position: relative;
  display: block;
  margin-right: 45px;
}

.about-one__content-text3 .signature h3 {
  color: var(--thm-gray);
  font-size: 30px;
  line-height: 100px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--thm-reey-font);
}

.about-one__content-text3 .text-box {
  position: relative;
  display: block;
  padding-left: 45px;
}

.about-one__content-text3 .text-box::before {
  position: absolute;
  top: -8px;
  left: 0;
  bottom: -7px;
  width: 2px;
  background: #d1d4d8;
  content: "";
}

.about-one__content-text3 .text-box h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

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

.sec-title__tagline {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sec-title__tagline h6 {
  color: var(--thm-base);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: var(--thm-font);
}

.sec-title__title {
  color: var(--thm-black);
  font-size: 45px;
  line-height: 1.1em;
  font-weight: 600;
  text-transform: capitalize;
}
.testimonial-one {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
  z-index: 1;
}

.testimonial-one__img-two {
  position: absolute;
  right: 0;
  bottom: 0;
}

.testimonial-one::before {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-gray-bg);
  content: "";
  z-index: -3;
}

.testimonial-one::after {
  position: absolute;
  top: 55px;
  left: 0;
  bottom: 0;
  right: 41.8%;
  background: var(--thm-base);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__pattern {
  position: absolute;
  top: 55px;
  left: 0;
  right: 42%;
  bottom: 0;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.testimonial-one__pattern::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  content: "";
  z-index: -2;
}

.testimonial-one__left {
  position: relative;
  display: block;
  max-width: 545px;
  width: 100%;
}

.testimonial-one__carousel-box {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
}

.testimonial-one__single-img {
  position: relative;
  display: block;
  margin-bottom: 37px;
}

.testimonial-one__single-img .inner {
  position: relative;
  display: block;
  width: 170px;
  margin: 0 auto;
  z-index: 1;
}

.testimonial-one__single-img .inner .shape1 {
  position: absolute;
  top: 25px;
  left: -20px;
  z-index: -1;
}

.testimonial-one__single-img .inner img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 5px;
}

.testimonial-one__single-img .border-box {
  position: relative;
  display: block;
  width: 450px;
  height: 2px;
  background: rgba(255, 255, 255, .25);
  margin: 0 auto;
  margin-top: 45px;
}

.testimonial-one__single-img .border-box::before {
  position: absolute;
  top: 0;
  left: 100px;
  bottom: 0;
  right: 100px;
  background: #ffffff;
  content: "";
}

.testimonial-one__single-img .border-box:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #010101;
  width: 26px;
  margin: 0 auto;
  content: "";
}

.testimonial-one__single-img .border-box .icon {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.testimonial-one__single-img .border-box .icon img {
  width: auto;
}

.testimonial-one__single-content {
  position: relative;
  display: block;
}

.testimonial-one__single-content .author-info {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.testimonial-one__single-content .author-info h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-one__single-content .author-info h3 {
  color: var(--thm-base);
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-one__single-content .text-box {
  position: relative;
  display: block;
}

.testimonial-one__single-content .text-box p {
  color: #d5c9c9;
  margin: 0;
  font-style: italic;
}

.testimonial-one__single-content .icon-box {
  position: relative;
  display: block;
  margin-top: 33px;
}

.testimonial-one__single-content .icon-box span:before {
  position: relative;
  display: inline-block;
  color: #676767;
  font-size: 40px;
}


.dot-style1.owl-theme .owl-dots {
  position: relative;
  display: block;
  margin-top: 45px !important;
  z-index: 10;
}

.dot-style1.owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0px 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  opacity: 1;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span {
  background: #ffffff;
}

.dot-style1.owl-theme .owl-dots .owl-dot span::before {
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  content: "";
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.dot-style1.owl-theme .owl-dots .owl-dot.active span::before {
  border-color: #ffffff;
  transform: scale(1.0);
  opacity: 1;
}



.testimonial-one__right {
  position: relative;
  display: block;
  padding-top: 135px;
  max-width: 470px;
  width: 100%;
}

.testimonial-one__right .sec-title {
  position: relative;
  display: block;
  margin-top: -8px;
  padding-bottom: 38px;
}

.testimonial-one__right-list {
  position: relative;
  display: block;
}

.testimonial-one__right-list li {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.testimonial-one__right-list li:last-child {
  margin-bottom: 0;
}

.testimonial-one__right-list li .inner {
  position: relative;
  display: block;
  padding-left: 30px;
}

.testimonial-one__right-list li .inner .round-box {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--thm-base);
  border-radius: 50%;
}

.testimonial-one__right-list li .inner .round-box::before {
  position: absolute;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  border: 1px solid var(--thm-base);
  border-radius: 50%;
  content: "";
}

.testimonial-one__right-list li .inner .text-box {
  position: relative;
  display: block;
}

.testimonial-one__right-list li .inner .text-box p {
  position: relative;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.testimonial-one__right-text {
  position: relative;
  display: block;
  padding: 22px 70px 22px;
  padding-right: 20px;
  margin-top: 36px;
  z-index: 1;
}

.testimonial-one__right-text::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  content: "";
  z-index: -1;
}

.testimonial-one__right-text::after {
  position: absolute;
  top: 1px;
  left: -3px;
  bottom: 1px;
  right: 1px;
  background: var(--thm-base);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  content: "";
  z-index: -2;
}

.testimonial-one__right-text p {
  color: var(--thm-black);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
.contact-page {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 120px;
  z-index: 1;
}

.contact-page__top {
  position: relative;
  display: block;
}

.contact-page__top-map {
  position: relative;
  display: block;
  height: 100%;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 600px;
  width: 100%;
}

.contact-page__top-content {
  position: relative;
  display: block;
  margin-left: 60px;
}

.contact-page__top-content .title-box {
  position: relative;
  display: block;
  margin-top: -12px;
  margin-bottom: 49px;
}

.contact-page__top-content .title-box h2 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 18px;
}

.contact-page__top-content .title-box p {
  margin: 0;
}


.contact-page__top-content-single {
  position: relative;
  display: block;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 26px;
  margin-bottom: 21px;
}

.contact-page__top-content-single.mb0 {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border: none;
}

.contact-page__top-content-single .inner {
  position: relative;
  display: block;
  padding-left: 70px;
}

.contact-page__top-content-single .inner .icon-box {
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--thm-base);
  font-size: 45px;
}

.contact-page__top-content-single .inner .icon-box.style2 {
  top: 3px;
}

.contact-page__top-content-single .inner .content-box {
  position: relative;
  display: block;
}

.contact-page__top-content-single .inner .content-box h2 {
  font-size: 27px;
  line-height: 37px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-page__top-content-single .inner .content-box p {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: var(--thm-font-2);
}

.contact-page__top-content-single .inner .content-box .number1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__top-content-single .inner .content-box .number1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .number2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .number2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .number2 a:hover {
  color: var(--thm-base);
}

.contact-page__top-content-single .inner .content-box .email1 {
  margin: 0px;
  margin-bottom: 1px;
}

.contact-page__top-content-single .inner .content-box .email1 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email1 a:hover {
  color: var(--thm-base);
}


.contact-page__top-content-single .inner .content-box .email2 {
  margin: 0px;
}

.contact-page__top-content-single .inner .content-box .email2 a {
  color: #878c8f;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.contact-page__top-content-single .inner .content-box .email2 a:hover {
  color: var(--thm-base);
}


.contact-page__bottom {
  position: relative;
  display: block;
  padding-top: 120px;
}

.contact-page__bottom-content {
  position: relative;
  display: block;
}

.contact-page__bottom-content .sec-title.style2 {
  position: relative;
  display: block;
  padding-bottom: 30px;
}

.contact-page__bottom .text-box {
  position: relative;
  display: block;
  max-width: 410px;
  width: 100%;
}

.contact-page__bottom .text-box p {
  margin: 0;
}


.contact-one__form--contact {
  position: relative;
  display: block;
  padding: 0;
}

.contact-one__form--contact.contact-one__form::before {
  display: none;
}

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

.contact-one__form--contact.contact-one__form .input-box input[type="text"],
.contact-one__form--contact.contact-one__form .input-box input[type="email"],
.contact-one__form--contact.contact-one__form .input-box textarea {
  position: relative;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="text"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form input[type="email"]:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-webkit-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea::-moz-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form form textarea:-ms-input-placeholder {
  color: #878c8f;
}

.contact-one__form--contact.contact-one__form .input-box textarea {
  width: 100%;
  height: 200px;
  background-color: #ffffff;
  border: 1px solid #dfe0e5;
  color: #878c8f;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 20px;
  border-radius: 15px;
  transition: all 500ms ease;
  font-family: var(--thm-font);
  outline: none;
  resize: none;
}

.contact-one__form--contact.contact-one__form button.thm-btn {
  border-radius: 33px;
}


.footer-one {
  position: relative;
  display: block;
  padding: 40px 0px 20px;
  overflow: hidden;
  z-index: 1;
  border-top: 2px solid #Fff;
}

.footer-one .shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.08;
  z-index: 1;
}

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

.footer-one__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(1, 1, 1, 0.97);
  content: "";
  z-index: -2;
}

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

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

.footer-one__single .title {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-bottom: 33px;
}

.footer-one__single .title h2 {
  color: #ffffff;
  font-size: 26px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.footer-one__single-contact {
  position: relative;
  display: block;
}

.footer-one__single-contact-inner {
  position: relative;
  display: block;
}

.footer-one__single-contact-inner p {
  color: #b3b0b0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.footer-one__single-contact-inner h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.footer-one__single-contact-inner h4 a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__single-contact-inner h4 a:hover {
  color: var(--thm-base);
}

.footer-one__single-contact-inner h4 span::before {
  position: relative;
  display: inline-block;
  color: var(--thm-base);
  font-size: 15px;
  padding-right: 8px;
  top: 1px;
}

.footer-one__single-link {
  position: relative;
  display: block;
}

.footer-one__single-list {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__single-list li {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.footer-one__single-list li:last-child {
  margin-bottom: 0;
}

.footer-one__single-list li a {
  position: relative;
  display: inline-block;
  color: #b3b0b0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__single-list li a:hover {
  color: var(--thm-base);
}

.footer-one__single-departments {
  position: relative;
  display: block;
  margin-left: 35px;
}

.footer-one__single-explore {
  position: relative;
  display: block;
  margin-left: 68px;
}

.footer-one__single-gallery {
  position: relative;
  display: block;
  margin-left: 110px;
}

.footer-one__single-gallery-box {
  position: relative;
  display: block;
  margin-left: -5px;
  margin-right: -5px;
  padding-top: 8px;
  overflow: hidden;
}

.footer-one__single-gallery-box li {
  position: relative;
  display: block;
  float: left;
  padding: 0px 5px 0px;
  margin-bottom: 10px;
}

.footer-one__single-gallery-box li .img-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__single-gallery-box li .img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background: rgba(var(--thm-black-rgb), 0.8);
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scale(.5);
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
  z-index: 1;
}

.footer-one__single-gallery-box li:hover .img-box::before {
  opacity: 1;
  left: 0%;
  transform: scaleY(1) skew(0deg, 0deg);
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.22);
}

.footer-one__single-gallery-box li .img-box img {
  width: auto;
}

.footer-one__single-gallery-box li .img-box .icon-box {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: perspective(400px) translateY(20px);
  transform-origin: top;
  transition: all 0.1s ease-in-out 0s;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.footer-one__single-gallery-box li:hover .img-box .icon-box {
  opacity: 1;
  transform: perspective(400px) translateY(0);
  transition: all 0.5s ease-in-out 0.5s;
}

.footer-one__single-gallery-box li .img-box .icon-box a {
  position: relative;
  display: inline-block;
}

.footer-one__single-gallery-box li .img-box .icon-box a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}


.footer-one__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.footer-one__bottom .auto-container {
  max-width: 1530px;
  width: 100%;
}

.footer-one__bottom .bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  padding:5px 110px;
}

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

.footer-one__bottom-left .logo-box {
  position: relative;
  display: block;
  margin-right: 90px;
}

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

.footer-one__bottom-left .logo-box img {
  width: 100%; 
    background: #fff;
    border-radius: 5px;
    width: 100px;
}

.footer-one__bottom-left .social-links {
  position: relative;
  display: block;
  padding-left: 90px;
}

.footer-one__bottom-left .social-links::before {
  position: absolute;
  top: -12px;
  left: 0;
  bottom: -12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.footer-one__bottom-left .social-links ul {
  position: relative;
  display: block;
  overflow: hidden;
}

.footer-one__bottom-left .social-links ul li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.footer-one__bottom-left .social-links ul li:last-child {
  margin-right: 0;
}

.footer-one__bottom-left .social-links ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
}


.footer-one__bottom-left .social-links ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--thm-base);
  border-radius: 0%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.footer-one__bottom-left .social-links ul li a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.footer-one__bottom-left .social-links ul li a span:before {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 17px;
  z-index: 2;
}

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

.footer-one__bottom .bottom-inner .copyright p {
  color: #b3b0b0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer-one__bottom .bottom-inner .copyright p a {
  color: #b3b0b0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.footer-one__bottom .bottom-inner .copyright p a:hover {
  color: var(--thm-base);
}