@import url('animate.min.css');
@import url('aos.css');
@import url('bootstrap.min.css');
@import url('custom-animate.css');
@import url('fancybox.min.css');
@import url('jquery.bootstrap-touchspin.css');
@import url('jquery.magnific-popup.css');
@import url('jquery-ui.css');
@import url('nice-select.css');
@import url('owl.carousel.min.css');
@import url('owl.theme.default.min.css');
@import url('swiper.min.css');

:root {
    --thm-primary-color: #ff6b49;
    --thm-primary-color-rgb: 255, 107, 73;
    --thm-body-font-color: #5e5b5a;
    --thm-heading-font-color: #1a2b3f;
    --thm-black: #1a2b3f;
    --thm-black-bg: #20354b;
    --thm-gray-bg: #f7f4f3;
    --thm-border-color: #efe4e2;
}

:root {
    --thm-primary-color: #f02129;
    --thm-primary-color-rgb: 240, 33, 41;
    --thm-body-font-color: #5e5a5a;
    --thm-heading-font-color: #101015;
    --thm-black: #101015;
    --thm-black-bg: #101015;
    --thm-gray-bg: #f5f0f0;
    --thm-border-color: #eae4e4;
}

:root {
    --thm-primary-color: #224af5;
    --thm-primary-color-rgb: 34, 74, 245;
    --thm-body-font-color: #5b5c5f;
    --thm-heading-font-color: #101015;
    --thm-black: #101015;
    --thm-black-bg: #1a1c28;
    --thm-gray-bg: #eeeff3;
    --thm-border-color: #e2e3e9;
}



.jarallax {
    position: relative;
    z-index: 0;
}
.jarallax > .jarallax-img {
    position: absolute;
    object-fit: cover;
    /* support for plugin https://github.com/bfred-it/object-fit-images */
    font-family: 'object-fit: cover;';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/*** 
=============================================
    Breadcrumb style1
=============================================
***/
.breadcrumb-style1 {
    position: relative;
    display: block;
    z-index: 10;
}

.breadcrumb-style1-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.breadcrumb-style1-bg__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #01070b;
    opacity: 0.40;
}

.breadcrumb-style1-bg__overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: -moz-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgba(0, 0, 0, 0.01) 20%, rgb(0, 0, 0) 20%);
    background-image: -webkit-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgba(0, 0, 0, 0.01) 20%, rgb(0, 0, 0) 20%);
    background-image: -ms-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgba(0, 0, 0, 0.01) 20%, rgb(0, 0, 0) 20%);
}

.breadcrumb-style1 .inner-content {
    position: relative;
    display: block;
    padding: 334px 0px 168px;
    text-align: center;
}

.breadcrumb-style1 .title {
    position: relative;
    display: block;
    z-index: 1;
}

.breadcrumb-style1 .title h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}



.breadcrumb-menu {
    position: absolute;
    left: 0;
    bottom: 34px;
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-menu ul li {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 16px;
    line-height: 22px;
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: capitalize;
}

.breadcrumb-menu ul li+li {
    margin-left: 7px;
}

.breadcrumb-menu ul li a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li a:hover,
.breadcrumb-menu ul li.active {
    /*color: var(--thm-primary-color)*/
    color: var(--thm-white);
}

.breadcrumb-menu ul li span {
    font-size: 14px;
    color: var(--thm-white);
}


.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: var(--thm-black);
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    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: 30px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.mobile-nav__close:hover {
    background-color: var(--thm-primary-color);
}

.mobile-nav__close i:before {
    position: relative;
    display: inline-block;
    transform: rotate(0deg);
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}




.mobile-nav-search-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.mobile-nav-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.mobile-nav-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 52px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #909090;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 0px;
    font-family: var(--thm-font);
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 52px;
    color: #ffffff;
    font-size: 15px;
    background: rgba(var(--thm-primary-color-rgb), 0.80);
    text-align: center;
    border: 0px solid #e7e7e8;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 500ms ease 0s;
}

.mobile-nav-search-box .search-form button i {
    position: relative;
    top: 0px;
}

.mobile-nav-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
}

.mobile-nav-search-box .search-form input[type="text"]:focus+button,
.mobile-nav-search-box .search-form button:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
}

.mobile-nav-search-box .search-form input::-webkit-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input::-moz-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}

.mobile-nav-search-box .search-form input:-ms-input-placeholder {
    color: rgba(var(--thm-black-rgb), .70);
}




.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: 16px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 46px;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>ul>li>a {
    font-size: 15px;
    font-weight: 400;
}

.mobile-nav__content .main-menu__list>li>ul>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-primary-color);
}

.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: rgba(var(--thm-primary-color-rgb), 0.3);
    border: none;
    outline: none;
    color: #fff;
    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);
    color: var(--thm-primary-color);
}

.mobile-nav__content .home-showcase__title {
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: 0px;
}



/* 
////////////////////////////
Mobile Nav Megamenu Css 
///////////////////////////
*/
.mobile-nav__wrapper .megamenu-content-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box__inner::before {
    display: none;
}

.mobile-nav__wrapper .megamenu-box__inner {
    padding: 0px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .megamenu-content-box .row ul {
    margin-left: 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li {
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0px;
}

.mobile-nav__wrapper .megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    height: 46px;
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    color: var(--thm-white);
    padding: 0 0px;
    border-top: 0px solid var(--thm-border-color);
    font-family: var(--thm-font);
}

.mobile-nav__wrapper .megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.mobile-nav__wrapper .megamenu-box__inner .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}





.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-primary-color);
}

.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-primary-color);
    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 {
    display: flex;
    align-items: center;
}

.main-menu-box {
    display: block;
    float: right;
    margin-left: auto;
}

.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: 32px;
    padding-bottom: 32px;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 40px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    text-transform:uppercase;
    font-family: var(--thm-font-2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.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-primary-color);
}

.main-menu .main-menu__list>li.dropdown>a,
.stricky-header .main-menu__list>li.dropdown>a {
    padding-right: 14px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
    position: absolute;
    right: -5px;
    font-family: 'icomoon' !important;
    content: "\e903" !important;
    color: #97a69e;
    font-size: 12px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.main-menu .main-menu__list>li.current.dropdown>a:after,
.main-menu .main-menu__list>li:hover.dropdown>a:after,
.stricky-header .main-menu__list>li.current.dropdown>a:after,
.stricky-header .main-menu__list>li:hover.dropdown>a:after {
    color: var(--thm-primary-color);
}


.main-menu .main-menu__list>li.dropdown>a::before {
    position: absolute;
    right: -5px;
    font-family: 'icomoon' !important;
    content: "\e904" !important;
    color: #a5b1ad;
    font-size: 10px;
    font-weight: 400;
    transform: rotate(0deg);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 1;
    display: none;
}

.main-menu .main-menu__list>li.current.dropdown>a:before,
.main-menu .main-menu__list>li:hover.dropdown>a:before,
.stricky-header .main-menu__list>li.current.dropdown>a:before,
.stricky-header .main-menu__list>li:hover.dropdown>a:before {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}




.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;
    padding: 15px 0px 15px;
    background-color: var(--thm-white);
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    border-radius: var(--thm-border-radius);
    z-index: 99;
}

.main-menu .main-menu__list>li>ul {
    margin-top: -15px;
}

.main-menu .main-menu__list>li>ul:before,
.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    border-radius: 4px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    z-index: -1;
}

.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: scale(1);
}


.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>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%;
    padding: 0 30px;
    -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: 0px solid #ffffff;
}

.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: block;
    font-size: 15px;
    line-height: 30px;
    color: var(--thm-body-font-color);
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
    padding: 10px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: none !important;
    z-index: 1;
}

.main-menu .main-menu__list>li>ul>li:first-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li:first-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:first-child>a {
    border-top: none;
}

.main-menu .main-menu__list>li>ul>li>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li>a:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -30px;
    bottom: -1px;
    width: 5px;
    background-color: var(--thm-primary-color);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    z-index: 2;
}

.main-menu .main-menu__list>li>ul>li:hover>a:after,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a:after {
    color: var(--thm-primary-color);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left center;
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
    border-bottom: none;
}

.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: var(--thm-primary-color);
}

.main-menu .main-menu__list>li>ul>li.dropdown:before {
    font-family: 'icomoon' !important;
    content: "\e9c9";
    position: absolute;
    top: 0px;
    right: 25px;
    bottom: -1px;
    display: block;
    color: var(--thm-body-font-color);
    font-size: 14px;
    line-height: 54px;
    opacity: 0.80;
    font-weight: 100;
    z-index: 5;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>ul>li.dropdown:hover::before {
    color: var(--thm-primary-color);
}



.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
    border-left: 10px solid transparent;
    background-color: transparent;
    min-width: 270px;
}

.main-menu .main-menu__list>li>ul>li>ul:before,
.stricky-header .main-menu__list>li>ul>li>ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
}

.main-menu .main-menu__list li ul.right-align {
    left: auto;
    right: 0;
}

.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%;
    border-left: 0px solid transparent;
    border-right: 10px solid transparent;
}




/*-------------------------------------
  # Mega Menu Css
  --------------------------------------*/
.main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 150px !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border-top: none;
    max-width: 570px;
    width: 100%;
}

.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
}

.megamenu-content-box {
    position: relative;
    display: block;
}

.megamenu-content-box>.container {
    max-width: 1290px !important;
    padding: 0 !important;
}

.megamenu-content-box__inner {
    position: relative;
    display: block;
    background-color: #ffffff;
    padding: 10px 0px 10px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    border-radius: var(--thm-border-radius);
}

.megamenu-content-box__inner::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 50%;
    bottom: 30px;
    width: 1px;
    background-color: var(--thm-border-color);
}

.megamenu-content-box .row {
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

.megamenu-content-box .row ul li {
    position: relative;
    width: 100%;
    padding: 0 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

.megamenu-content-box .row ul li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-body-font-color);
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
    padding: 11px 0px;
    border-top: 1px solid var(--thm-border-color);
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: var(--thm-font);
    text-transform: capitalize;
    z-index: 1;
}

.megamenu-content-box .row ul li:first-child a {
    border-top: none;
}

.megamenu-content-box .row ul li.current>a,
.megamenu-content-box .row ul li:hover>a {
    color: var(--thm-primary-color);
}




.home-showcase__image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(var(--thm-base-rgb), .80);
    z-index: 1;
}

.home-showcase__image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.home-showcase__item:hover .home-showcase__image:before {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.home-showcase__image>img {
    width: 100%;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.home-showcase__image:hover>img {
    opacity: 1.0;
}

.home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    z-index: 3;
}

.home-showcase__buttons a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--thm-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .4s ease-in-out .1s;
}

.home-showcase__image:hover .home-showcase__buttons .home-showcase__buttons__item.top {
    opacity: 1;
    transform: translateY(0px);
    transition: all .4s ease-in-out .2s;
}

.home-showcase__buttons__item {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    transition: color 0.5s ease;
    transition: all 0.5s ease;
}

.home-showcase__buttons__item:hover {
    color: var(--thm-base) !important;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 0px;
}

.home-showcase__title {
    position: relative;
    display: block;
    background-color: rgba(var(--thm-base-rgb), .01);
    padding: 8px 0 7px;
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-black);
    text-transform: uppercase;
    margin-top: 5px;
    border-radius: 10px;
}

.mobile-nav__wrapper .home-showcase__title {
    color: #ffffff;
}

.mobile-nav__wrapper .megamenu-content-box .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}



/** Megamenu style2**/
.megamenu-box {
    position: relative;
    display: block;
}

.megamenu-box .container {
    max-width: 900px !important;
}

.megamenu-box__inner {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 10px 20px 10px;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.megamenu-box .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0px;
}

.megamenu-box ul {
    position: relative;
}

.megamenu-box ul li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(var(--thm-base-rgb, 53, 84, 209), 0.05);
}

.megamenu-box ul li:last-child {
    border-bottom: none;
}

.megamenu-box ul li a {
    position: relative;
    display: block;
    padding-left: 20px;
    color: var(--thm-gray);
    font-size: 15px;
    line-height: 50px;
    font-weight: 500;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: normal;
    font-family: var(--thm-font-2);
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    z-index: 1;
}

.megamenu-box ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0px;
    right: 0;
    background-color: var(--thm-base);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;
}

.megamenu-box ul li:hover a:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.megamenu-box ul li:hover a {
    color: #ffffff;
}





/*-------------------------------------
    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(--thm-base);
  }
  **/

.main-menu .mobile-nav__toggler {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 30px;
    line-height: 28px;
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: #000000;
}

@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 {
    background-color: #ffffff;
    justify-content: space-between;
}

.stricky-header .main-menu__wrapper .main-menu__list>.megamenu>ul {
    left: auto !important;
    right: 0;
}





/*----------------------------------------
    Main Header Style1
  ---------------------------------------*/
.main-header-style1 {
    position: absolute;
    top: 00px;
}

.main-header-style1__top {
    position: relative;
    display: block;
    z-index: 100;
}

.main-header-style1__top .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 0px;
}

.main-header-style1__top-inner {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header-style1__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45px;
    background-color: #00325b;
}

.main-header-style1__top-inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    width: 45px;
    background-color: #00325b;
}

.main-header-style1__top-inner__box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    z-index: 1;
}

.main-header-style1__top-inner__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #00325b;
    z-index: -1;
}


.main-header-style1__top-left {
    position: relative;
    display: block;
    padding-left: 40px;
}

.main-header-style1__top-left p {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-white);
}

.main-header-style1__top-left p span {
    position: relative;
    display: inline-block;
    margin-right: 7px;
    color: var(--thm-primary-color);
    font-size: 22px;
}

.main-header-style1__top-left p a {
    color: var(--thm-white);
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-left: 9px;
}





.main-header-style1__top-right {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 100px;
}

.starting-locations-box-style1 {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-right: 40px;
}

.starting-locations-box-style1 .icon {
    position: absolute;
    top: 2px;
    left: 0;
    line-height: 0;
}

.starting-locations-box-style1 .icon span {
    color: var(--thm-primary-color);
    font-size: 22px;
}

.starting-locations-box-style1 .nice-select {
    position: relative;
    display: block;
    border-radius: 0px;
    background-color: transparent;
    border: 0px solid #e9e4e2;
    min-width: 150px;
    width: 100%;
    height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    line-height: 30px;
    padding-left: 0px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.starting-locations-box-style1 .nice-select:focus {
    border: 0px solid var(--thm-primary-color);
}

.starting-locations-box-style1 .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 3px;
    margin-top: 0px;
    top: 9px;
    z-index: 10;
}

.starting-locations-box-style1 .nice-select .list {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.starting-locations-box-style1 .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.starting-locations-box-style1 .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.starting-locations-box-style1 .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.starting-locations-box-style1 .nice-select .option:hover,
.starting-locations-box-style1 .nice-select .option.focus,
.starting-locations-box-style1 .nice-select .option.selected.focus {
    color: var(--thm-white) !important;
    background-color: var(--thm-primary-color);
}



.classes-time-schedule-box-style1 {
    position: relative;
    display: block;
    padding-left: 130px;
}

.classes-time-schedule-box-style1 .icon {
    position: absolute;
    top: 0px;
    left: 0;
    line-height: 0;
    display: flex;
    align-items: center;
}

.classes-time-schedule-box-style1 .icon span {
    position: relative;
    top: -1px;
    color: var(--thm-primary-color);
    font-size: 22px;
}

.classes-time-schedule-box-style1 .icon p {
    color: var(--thm-white);
    margin-left: 5px;
}

.classes-time-schedule-box-style1 .nice-select {
    position: relative;
    display: block;
    border-radius: 0px;
    background-color: transparent;
    border: 0px solid #e9e4e2;
    min-width: 115px;
    width: 100%;
    height: 30px;
    color: #ffffff;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    line-height: 30px;
    padding-left: 0px;
    padding-right: 20px;
    transition: all 500ms ease;
}

.classes-time-schedule-box-style1 .nice-select:focus {
    border: 0px solid var(--thm-primary-color);
}

.classes-time-schedule-box-style1 .nice-select:after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    right: 3px;
    margin-top: 0px;
    top: 9px;
    z-index: 10;
}

.classes-time-schedule-box-style1 .nice-select .list {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(1.0) translateY(30px);
    -ms-transform: scale(1.0) translateY(30px);
    transform: scale(1.0) translateY(30px);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    height: 0;
    width: 100%;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
}

.classes-time-schedule-box-style1 .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    height: auto;
}

.classes-time-schedule-box-style1 .nice-select .option {
    color: var(--thm-black);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.classes-time-schedule-box-style1 .nice-select .option+.option {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.classes-time-schedule-box-style1 .nice-select .option:hover,
.classes-time-schedule-box-style1 .nice-select .option.focus,
.classes-time-schedule-box-style1 .nice-select .option.selected.focus {
    color: var(--thm-white) !important;
    background-color: var(--thm-primary-color);
}



.main-header-style1__bottom {
    position: relative;
    display: block;
}

.main-header-style1__bottom .container {
    max-width: 100%;
    padding-left: 0px;
    padding-right: 100px;
}

.main-header-style1__bottom-inner {
    position: relative;
    display: block;
    padding-right: 40px;
}

.main-header-style1__bottom-inner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background-color: var(--thm-white);
}

.main-header-style1__bottom-inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 40px;
    background-color: var(--thm-white);
}


.main-header-style1__bottom-inner__box {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 0;
    z-index: 1;
}

.main-header-style1__bottom-inner__box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    z-index: -1;
}

.main-header-style1__bottom-left {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.logo-box-style1 {
    position: relative;
    display: block;
}

.logo-box-style1 a {
    position: relative;
    display: inline-block;
}




/** Main Menu Style1 Css**/
.main-menu-style1 {
    position: relative;
    display: block;
    z-index: 10;
}

.main-menu-style1 .main-menu__wrapper {
    position: relative;
}

.main-menu-style1 .main-menu__wrapper-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
}

.main-menu-style1__left {
    position: static;
    display: flex;
}

.main-menu-style1__left .main-menu-box {
    position: static;
    display: block;
    margin-left: 120px;
    float: left;
}




.main-header-style1__bottom-right {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.main-header-style1__bottom-right ul {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    padding: 30px 0;
}

.main-header-style1__bottom-right ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 30px;
    height: 30px;
    text-align: center;
    border-right: 1px solid #d6ddda;
}

.main-header-style1__bottom-right ul li:last-child {
    border-right: none;
}


.box-search-style1 {
    position: relative;
    display: block;
    line-height: 0px;
}

.box-search-style1 a {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.box-search-style1 a span {
    position: relative;
    display: inline-block;
    color: var(--thm-black);
    font-size: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.box-search-style1 a:hover span {
    color: var(--thm-primary-color);
}


.user-box-style1 {
    position: relative;
    display: block;
    line-height: 0;
}

.user-box-style1 a {
    display: inline-block;
    color: var(--thm-black);
    font-size: 24px;
    line-height: 0px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.user-box-style1 a:hover {
    color: var(--thm-primary-color);
}



.side-content-button {
    position: relative;
    display: block;
}

.side-content-button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-black);
    font-size: 24px;
    transition: all 500ms ease;
}

.side-content-button a:hover {
    color: var(--thm-primary-color);
}


.header-button-style1 {
    position: relative;
    display: block;
    line-height: 0;
    padding-left: 40px;
}

.header-button-style1 .btn-one {
    padding-left: 40px;
    padding-right: 40px;
}




.stricky-header--style1.main-menu {
    background-color: var(--thm-white);
    z-index: 999999;
}

.stricky-header--style1 .main-menu__wrapper {
    /*max-width: 1200px;*/
    margin: 0 auto;
    padding: 0 12px;
    background-color: var(--thm-white);
}

.stricky-header--style1 .main-menu__wrapper-inner {
    background-color: var(--thm-white);
}

.stricky-header--style1 .main-menu__list>li {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.stricky-header--style1 .main-menu-style1__right {
    display: none;
}

.stricky-header--style1 .main-menu-style1__left {
    width: 100%;
}

.stricky-header--style1 .main-menu-style1__left .main-menu-box {
    margin-left: auto;
}


.sticky-logo-box-style1 {
    position: relative;
    display: none;
}

.sticky-logo-box-style1 a {
    position: relative;
    display: inline-block;
}

.stricky-header .main-menu__wrapper-inner .sticky-logo-box-style1 {
    display: block;
}



.stricky-header--style1.black-bg.main-menu {
    background-color: var(--thm-black-bg);
}

.stricky-header--style1.black-bg .main-menu__wrapper {
    background-color: var(--thm-black-bg);
}

.stricky-header--style1.black-bg .main-menu__wrapper-inner {
    background-color: var(--thm-black-bg);
}

.stricky-header--style1.black-bg .main-menu__list>li>a {
    color: var(--thm-white);
}

.stricky-header--style1.black-bg .main-menu__list>li.dropdown>a:after {
    color: var(--thm-white);
}

.stricky-header--style1.black-bg .main-menu__list>li.current>a,
.stricky-header--style1.black-bg .main-menu__list>li:hover>a {
    color: var(--thm-primary-color);
}

.stricky-header--style1.black-bg .main-menu__list>li.current.dropdown>a:after,
.stricky-header--style1.black-bg .main-menu__list>li:hover.dropdown>a:after {
    color: var(--thm-primary-color);
}
/*--------------------------------------
    End Css
---------------------------------------*/

/*-----------------------------------------------
# Main Slider Slider
------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    z-index: 10;
}

.main-slider .swiper-slide {
    position: relative;
}

.main-slider .container {
    position: relative;
    padding-top: 278px;
    padding-bottom: 280px;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -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;
    z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}

.main-slider .main-slider-content {
    position: relative;
    display: block;
    width: 100%;
}

.main-slider .main-slider-content__inner {
    position: relative;
    display: block;
    overflow: hidden;
}




.main-slider-style1 {
    padding-top: 0px;
}

.main-slider-style1 .container {
    position: relative;
    padding-top: 324px;
    padding-bottom: 170px;
    z-index: 30;
}

.main-slider-style1 .image-layer:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background-color: #091033;
    opacity: 0.45;
    z-index: -1;
    display: none;
}

.main-slider-style1 .image-layer:after {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    background: rgb(0, 0, 0, 0.20);
    z-index: -1;
}

.main-slider-style1 .image-layer__left-gradient {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";

    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.700717787114846) 5%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);

    z-index: 1;
}

.main-slider-style1 .main-slider-content__inner {
    position: relative;
    display: block;
    max-width: 670px;
}


.main-slider-style1 .main-slider-content .big-title {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-120px);
    transform: perspective(400px) rotateY(0deg) translateY(-120px);
    -webkit-transform-origin: 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-style1 .swiper-slide-active .main-slider-content .big-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.main-slider-style1 .main-slider-content .big-title h2 {
    color: #ffffff;
    font-size: 72px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
}


.main-slider-style1 .main-slider-content .slider-reviews-box {
    position: relative;
    display: flex;
    align-items: center;
    margin: 35px 0 40px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateX(-120px);
    -ms-transform: perspective(400px) rotateY(0deg) translateX(-120px);
    transform: perspective(400px) rotateY(0deg) translateX(-120px);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -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-style1 .swiper-slide-active .main-slider-content .slider-reviews-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: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}


.main-slider-style1 .main-slider-content .slider-reviews-box .left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-white);
    border-radius: 50%;
}

.main-slider-style1 .main-slider-content .slider-reviews-box .left h3 {
    font-size: 20px;
}

.main-slider-style1 .main-slider-content .slider-reviews-box .right {
    position: relative;
    padding-left: 15px;
    flex: 1;
    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: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -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-style1 .swiper-slide-active .main-slider-content .slider-reviews-box .right {
    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: 3000ms;
    -moz-transition-delay: 3000ms;
    -ms-transition-delay: 3000ms;
    -o-transition-delay: 3000ms;
    transition-delay: 3000ms;
}

.main-slider-style1 .main-slider-content .slider-reviews-box .right h5 {
    color: var(--thm-white);
    font-size: 14px;
    text-transform: uppercase;
    margin: 4px 0 0;
}


.main-slider-style1 .main-slider-content .btn-box {
    position: relative;
    display: block;
    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-style1 .swiper-slide-active .main-slider-content .btn-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}



.main-slider-style1__price-tag {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(45deg) translateX(180px);
    -ms-transform: perspective(400px) rotateY(45deg) translateX(180px);
    transform: perspective(400px) rotateY(45deg) translateX(180px);
    -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-style1 .swiper-slide-active .main-slider-style1__price-tag {
    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: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
}




.main-slider-style1__price-tag .left {
    position: relative;
    display: block;
}

.main-slider-style1__price-tag .left .arrow {
    position: relative;
    display: block;
    margin: 0 0 15px;
}

.main-slider-style1__price-tag .left .arrow img {
    width: auto;
}

.main-slider-style1__price-tag .left h5 {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.main-slider-style1__price-tag .price-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 40px;
    width: 120px;
    height: 120px;
    text-align: center;
    z-index: 1;
}

.main-slider-style1__price-tag .price-box::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    bottom: 5px;
    right: 0;
    background-color: var(--thm-primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -2;
}

.main-slider-style1__price-tag .price-box h2 {
    color: var(--thm-white);
    font-size: 30px;
    font-weight: 600;
}

.main-slider-style1__price-tag .price-box h5 {
    color: var(--thm-white);
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 0;
}





.main-slider__nav {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%) translateX(0);
    z-index: 100;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    left: 0;
    right: 0;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--thm-black);
    background-color: var(--thm-white);
    border: 1px solid var(--thm-white);
    border-radius: 4px;
    margin: 20px 0;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #ffffff;
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}



#main-slider-pagination {
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0px;
    left: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    margin: 0;
    z-index: 100;
    width: auto;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    margin: 0;
    background: transparent;
    border-radius: 0;
}

#main-slider-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(1.0);
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-top: 20px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    transform: scale(1);
    background-color: var(--thm-primary-color);
}


/*** 
=======================
   About style1 Css
=======================
***/
.about-style1 {
   background-color: var(--thm-white);
   padding: 120px 0px 115px;
}

.about-style1-img {
   position: relative;
   display: block;
   margin-right: 30px;
}

.about-style1-img .inner {
   position: relative;
   display: block;
   overflow: hidden;
   border-radius: 4px;
   margin-left: 160px;
}

.about-style1-img .inner::before {
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: var(--thm-black);
   opacity: 0;
   z-index: 1;
   transition: opacity 0.5s ease;
   transition: all 0.5s ease;
}

.about-style1-img .inner:hover::before {
   opacity: 0.50;
}

.about-style1-img .inner img {
   width: 100%;
   transform: scale(1.0);
   transition: all 1500ms ease;
}

.about-style1-img .inner:hover img {
   transform: scale(1.05) rotate(0deg);
}

.about-style1-total-leaners {
   position: absolute;
   left: 40px;
   bottom: 85px;
   border-radius: 4px;
   background-color: var(--thm-white);
   box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
   padding: 30px 30px 23px;
   z-index: 3;
}

.about-style1-img-link {
   position: relative;
   display: block;
}

.about-style1-img-link li {
   position: relative;
   display: block;
   float: left;
}

.about-style1-img-link li+li {
   margin-left: -10px;
}

.about-style1-img-link li .img-box {
   position: relative;
   display: block;
   overflow: hidden;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   border: 2px solid var(--thm-white);
}

.about-style1-img-link li .img-box img {
   width: 100%;
}

.about-style1-img-link li .btn-box {
   position: relative;
   display: block;
   line-height: 0;
}

.about-style1-img-link li .btn-box a {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   border: 2px solid var(--thm-white);
   background-color: var(--thm-primary-color);
   color: var(--thm-white);
   font-size: 25px;
   transition: background-color 0.5s ease;
   transition: all 0.5s ease;
}

.about-style1-img-link li .btn-box a:hover {
   color: var(--thm-white);
   background-color: var(--thm-black);
}

.about-style1-total-leaners .title {
   position: relative;
   display: block;
   padding-top: 12px;
}

.about-style1-total-leaners .title h5 {
   color: var(--thm-black);
   font-size: 16px;
   line-height: 26px;
   font-weight: 700;
}

.about-style1-experience {
   position: absolute;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   writing-mode: vertical-rl;
   transform: translateY(0%) rotate(180deg);
   border-radius: 4px;
   background-color: var(--thm-white);
   background-image: -moz-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
   background-image: -webkit-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
   background-image: -ms-linear-gradient(-90deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
   padding: 40px 22px 0px;
   padding-right: 19px;
}

.about-style1-experience .title {
   position: relative;
   display: block;
   margin: 0px 0px 20px;
}

.about-style1-experience .title h1 {
   font-size: 72px;
   line-height: 1.1em;
}

.about-style1-experience .text {
   position: relative;
   display: block;
}

.about-style1-experience .text h5 {
   color: var(--thm-black);
   font-size: 18px;
   line-height: 28px;
}

.about-style1-content {
   position: relative;
   display: block;
}

.about-style1-content .sec-title {
   padding-bottom: 32px;
}

.about-style1-text {
   position: relative;
   display: block;
   padding-bottom: 42px;
}

.about-style1-text p {
   margin: 0;
}

.about-style1-achivements {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   overflow: hidden;
   border-radius: 4px;
   background-color: var(--thm-white);
   background-image: -moz-linear-gradient(0deg, rgb(238, 246, 242) 51%, rgb(255, 255, 255) 100%);
   background-image: -webkit-linear-gradient(0deg, rgb(238, 246, 242) 51%, rgb(255, 255, 255) 100%);
   background-image: -ms-linear-gradient(0deg, rgb(238, 246, 242) 51%, rgb(255, 255, 255) 100%);
   padding: 25px 25px 25px;
   z-index: 1;
}

.about-style1-achivements::before {
   content: "";
   position: absolute;
   top: 0;
   right: 0px;
   bottom: 0;
   width: 155px;
   background-color: var(--thm-white);
   clip-path: polygon(100% 0, 0 100%, 100% 100%);
   z-index: -1;
}

.about-style1-logo {
   position: relative;
   display: inline-block;
}

.about-style1-logo img {
   width: auto;
}

.about-style1-achivements-title {
   position: relative;
   display: block;
}

.about-style1-achivements-title h4 {
   font-size: 18px;
   line-height: 28px;
   margin-bottom: 6px;
}

.about-style1-achivements-title h5 {
   color: #97a69e;
   font-size: 14px;
   line-height: 24px;
}

.about-style1-authorized {
   position: relative;
   display: flex;
   align-items: center;
   padding-top: 23px;
}

.about-style1-signature {
   position: relative;
   display: inline-block;
}

.about-style1-signature img {
   width: auto;
}

.about-style1-authorized-title {
   position: relative;
   display: block;
   padding-left: 20px;
}

.about-style1-authorized-title h4 {
   font-size: 18px;
   line-height: 28px;
   margin-bottom: 3px;
}

.about-style1-authorized-title span {
   color: var(--thm-primary-color);
   font-size: 16px;
   line-height: 26px;
   font-family: var(--thm-font);
   font-weight: 400;
}




/*** 
=======================
   About style3 Css
=======================
***/
.about-style3 {
   background-color: var(--thm-white);
   padding: 120px 0px 120px;
}

.about-style3__img {
   position: relative;
   display: block;
   padding-bottom: 70px;
}

.about-style3__img .inner {
   position: relative;
   display: block;
   overflow: hidden;
   border-radius: var(--thm-border-radius);
   max-width: 425px;
   margin-left: 30px;
   z-index: 1;
}

.about-style3__img .inner::before {
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: var(--thm-black);
   opacity: 0;
   transition: opacity 0.5s ease;
   transition: all 0.5s ease;
   z-index: 1;
}

.about-style3__img .inner:hover::before {
   opacity: 0.7;
}

.about-style3__img .inner img {
   width: 100%;
   transform: scale(1.0);
   transition: all 1500ms ease;
}

.about-style3__img .inner:hover img {
   transform: scale(1.05) rotate(0deg);
}

.about-style3__img .logo-box {
   position: absolute;
   display: flex;
   align-items: center;
   justify-content: center;
   top: 50px;
   right: 30px;
   width: 170px;
   height: 170px;
   border-radius: 50%;
   background-color: var(--thm-white);
   box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
   z-index: 3;
}

.about-style3__img .logo-box img {
   width: auto;
}

.about-style3__img .img-car {
   position: absolute;
   left: 0;
   bottom: 15px;
   z-index: 5;
}

.about-style3__img .img-car img {
   width: auto;
}


.about-style3__curved-circle-outer {
   position: absolute;
   bottom: 0;
   right: 12px;
   width: 340px;
   height: 340px;
   z-index: 3;
}

.about-style3__curved-circle-outer::before {
   content: "";
   position: absolute;
   top: -12px;
   left: -12px;
   bottom: -12px;
   right: -12px;
   border: 50px solid var(--thm-primary-color);
   border-radius: 50%;
   z-index: -1;
}

.about-style3__curved-circle {
   position: absolute;
   bottom: 0;
   right: 0;
   color: var(--thm-white);
   font-size: 14px;
   font-weight: 700;
   text-transform: uppercase;
   font-family: var(--thm-font-2);
   word-spacing: 3px;
   transform: rotate(80deg);
   width: 340px;
   height: 340px !important;
}




.about-style3__content {
   position: relative;
   display: block;
   padding-right: 30px;
}

.about-style3__content .sec-title {
   padding-bottom: 32px;
}

.about-style3__content .text1 {
   position: relative;
   display: block;
}

.about-style3__content .text1 p {
   margin: 0;
}

.about-style3__content .history-box {
   position: relative;
   display: block;
   padding-left: 70px;
   margin-top: 25px;
}

.about-style3__content .history-box .icon {
   position: absolute;
   top: 7px;
   left: 0;
   font-size: 50px;
   line-height: 50px;
}

.about-style3__content .history-box .icon .icon-history .path1:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path2:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path3:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path4:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path5:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path6:before {
   color: var(--thm-black);
}

.about-style3__content .history-box .icon .icon-history .path7:before {
   color: var(--thm-primary-color);
}

.about-style3__content .history-box .title {
   position: relative;
   display: block;
}

.about-style3__content .history-box .title h3 {
   font-size: 20px;
   line-height: 30px;
   margin-bottom: 6px;
}

.about-style3__content .history-box .title p {
   margin: 0;
}

.about-style3__content .history-box .list-item {
   position: relative;
   display: block;
   margin-top: 16px;
}

.about-style3__content .history-box .list-item::before {
   content: "";
   position: absolute;
   top: 6px;
   left: -50px;
   bottom: 4px;
   width: 1px;
   background-color: var(--thm-border-color);
}

.about-style3__content .history-box .list-item::after {
   content: "";
   position: absolute;
   top: 6px;
   left: -45px;
   bottom: 4px;
   width: 1px;
   background-color: var(--thm-border-color);
}

.about-style3__content .history-box .list-item li {
   position: relative;
   display: block;
   padding-left: 30px;
}

.about-style3__content .history-box .list-item li+li {
   margin-top: 15px;
}

.about-style3__content .history-box .list-item li .icon-box {
   position: absolute;
   top: 5px;
   left: 0;
   color: var(--thm-primary-color);
   font-size: 18px;
}

.about-style3__content .history-box .list-item li .text {
   position: relative;
   display: block;
}

.about-style3__content .history-box .list-item li .text p {
   margin: 0;
}

.about-style3__content .history-box .btn-box {
   position: relative;
   display: block;
   line-height: 0;
   padding-top: 36px;
}

.about-style3__content .history-box .btn-box .btn-one::before {
   background-color: var(--thm-primary-color);
}

.about-style3__content .history-box .btn-box .btn-one::after {
   background-color: var(--thm-black);
}


.fact-counter-style1 {
    padding: 120px 0px 120px;
    background-color: var(--thm-black-bg);
}

.fact-counter-style1__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    mix-blend-mode: luminosity;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    z-index: 1;
}

.fact-counter-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.95;
    background-color: var(--thm-black-bg);
    z-index: -1;
}

.fact-counter-style1 .container {
    max-width: 1785px;
}

.single-fact-counter-style1 {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3;
}

.single-fact-counter-style1__category {
    position: relative;
    display: block;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.single-fact-counter-style1__category h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.single-fact-counter-style1__content {
    position: relative;
    display: block;
    padding-left: 30px;
    margin-left: 14px;
}

.single-fact-counter-style1__content::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    bottom: 5px;
    width: 1px;
    background-color: #3b536b;
}

.single-fact-counter-style1__content .count-outer {
    position: relative;
    display: block;
}

.single-fact-counter-style1__content .count-outer span {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--thm-white);
    font-size: 72px;
    line-height: 72px;
    font-family: var(--thm-font-2);
    font-weight: 700;
}

.single-fact-counter-style1__content .count-outer .icon-plus-sign {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--thm-white);
    font-size: 60px;
    line-height: 70px;
    font-weight: 400;
    margin-left: -13px;
}

.single-fact-counter-style1__content .count-outer .k {
    position: relative;
    top: -3px;
    margin-left: -5px;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--thm-white);
    font-size: 60px;
    line-height: 70px;
    font-family: var(--thm-font-2);
    font-weight: 400;
    font-style: normal;
}

.single-fact-counter-style1__content .text {
    position: relative;
    display: block;
    padding-top: 10px;
}

.single-fact-counter-style1__content .text p {
    color: #a1aab4;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: capitalize;
}

.single-fact-counter-style1__content .icon {
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 60px;
    margin-top: 23px;
}

.single-fact-counter-style1__content .icon .icon-steering-wheel-1 .path1:before {
    color: var(--thm-primary-color);
}

.single-fact-counter-style1__content .icon .icon-steering-wheel-1 .path2:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-celebrity .path1:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-celebrity .path2:before {
    color: var(--thm-primary-color);
}

.single-fact-counter-style1__content .icon .icon-map .path1:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-map .path2:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-map .path3:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-map .path4:before {
    color: var(--thm-primary-color);
}

.single-fact-counter-style1__content .icon .icon-taxi-driver .path1:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-taxi-driver .path2:before {
    color: var(--thm-white);
}

.single-fact-counter-style1__content .icon .icon-taxi-driver .path3:before {
    color: var(--thm-primary-color);
}




/*** 
=============================================
    Fact Counter style2 Css
=============================================
***/
.fact-counter-style2 {
    background-color: var(--thm-primary-color);
}

.fact-counter-style2__bg::before {
    background-color: var(--thm-primary-color);
}

.single-fact-counter-style2__content::before {
    background-color: rgb(255, 255, 255, 0.25);
}

.single-fact-counter-style2__content .text p {
    color: var(--thm-white);
}

.single-fact-counter-style2__content .icon .icon-steering-wheel-1 .path1:before {
    color: var(--thm-white);
}



.single-fact-counter-style2__content .icon .icon-celebrity .path2:before {
    color: var(--thm-white);
}



.single-fact-counter-style2__content .icon .icon-map .path4:before {
    color: var(--thm-white);
}



.single-fact-counter-style2__content .icon .icon-taxi-driver .path3:before {
    color: var(--thm-white);
}

/*** 
=============================================
   Testimonial Style1 Css
=============================================
***/
.testimonial-style1 {
    background-image: -moz-linear-gradient(-90deg, rgb(240, 247, 243) 0%, rgba(240, 247, 243, 0.01) 45%, rgb(240, 247, 243) 45%);
    background-image: -webkit-linear-gradient(-90deg, rgb(240, 247, 243) 0%, rgba(240, 247, 243, 0.01) 100%, rgb(240, 247, 243) 45%);
    background-image: -ms-linear-gradient(-90deg, rgb(240, 247, 243) 0%, rgba(240, 247, 243, 0.01) 45%, rgb(240, 247, 243) 45%);
    padding: 120px 0px 120px;
}

.single-testimonial-style1 {
    position: relative;
    display: block;
}

.single-testimonial-style1__inner {
    position: relative;
    display: block;
    padding-right: 10px;
    padding-bottom: 10px;
    z-index: 1;
}

.single-testimonial-style1__inner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 10px;
    right: 10px;
    background-color: var(--thm-white);
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    z-index: -1;
}

.single-testimonial-style1__inner::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    z-index: -2;
}

.single-testimonial-style1__inner .arrow-down {
    position: absolute;
    left: 35px;
    bottom: -45px;
    width: 45px;
    height: 45px;
    background-color: var(--thm-gray-bg);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: -1;
}

.single-testimonial-style1__quote {
    position: absolute;
    top: 18px;
    right: 30px;
}

.single-testimonial-style1__top {
    position: relative;
    display: block;
}

.single-testimonial-style1__top .title {
    position: relative;
    display: block;
    padding: 11px 30px 11px;
}

.single-testimonial-style1__top .title h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-testimonial-style1__inner .border-line {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--thm-border-color);
}

.single-testimonial-style1__bottom {
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 30px 30px;
}

.single-testimonial-style1__img {
    position: relative;
    display: block;
    max-width: 140px;
    width: 100%;
}

.single-testimonial-style1__img .inner {
    position: relative;
    display: block;
    overflow: hidden;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--thm-white);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
}

.single-testimonial-style1__img .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-testimonial-style1:hover .single-testimonial-style1__img .inner::before {
    opacity: 0.5;
}

.single-testimonial-style1__img .inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-testimonial-style1:hover .single-testimonial-style1__img .inner img {
    transform: scale(1.05) rotate(0deg);
}

.single-testimonial-style1__img .rating-box {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border-radius: 35px;
    background-color: var(--thm-black-bg);
    height: 70px;
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.single-testimonial-style1__img .rating-box .icon {
    position: relative;
    display: block;
    margin-bottom: 3px;
    line-height: 0;
}

.single-testimonial-style1__img .rating-box .icon i {
    position: relative;
    display: inline-block;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 16px;
}

.single-testimonial-style1__img .rating-box p {
    color: var(--thm-white);
}

.single-testimonial-style1__text {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 30px;
}

.single-testimonial-style1__text p {
    margin: 0;
}

.single-testimonial-style1__leaner-box {
    position: relative;
    display: block;
    padding-left: 105px;
    padding-top: 23px;
}

.single-testimonial-style1__leaner-box h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-testimonial-style1__leaner-box h3 span {
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--thm-font);
}

.testimonial-style1 .section-btn {
    margin-top: 52px;
}


.testimonial-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
}





.testimonial-style1--1 {
    background-image: none;
    background-image: none;
    background-image: none;
}




/*** 
=============================
   Testimonial Style2 Css
=============================
***/
.testimonial-style2 {
    background-color: var(--thm-white);
    padding: 120px 0px 120px;
    overflow: hidden;
}

.testimonial-style2__shape {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.testimonial-style2__shape .rotatescale {
    -webkit-animation-duration: 90s;
    -moz-animation-duration: 90s;
    -ms-animation-duration: 90s;
    animation-duration: 90s;
}

.testimonial-style2 .sec-title {
    padding-bottom: 20px;
}

.testimonial-style2__inner {
    position: relative;
    display: block;
}

.testimonial-style2__single {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.testimonial-style2__single .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.testimonial-style2__single .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black-bg);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.testimonial-style2__single:hover .img-box::before {
    opacity: 0.7;
}

.testimonial-style2__single .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.testimonial-style2__single:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}


.testimonial-style2__single .contant-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 30px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 54px 70px 0px;
}

.testimonial-style2__single .contant-box .shape1 {
    position: absolute;
    top: 10px;
    left: 10px;
}

.testimonial-style2__single .contant-box .shape2 {
    position: absolute;
    bottom: 85px;
    right: 10px;
}

.testimonial-style2__single .contant-box>.text {
    position: relative;
    display: block;
    padding-bottom: 51px;
}

.testimonial-style2__single .contant-box .text p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.testimonial-style2__single .contant-box .bottom-box {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0px 23px;
}

.testimonial-style2__single .contant-box .bottom-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70px;
    right: -70px;
    height: 1px;
    background-color: var(--thm-border-color);
}

.testimonial-style2__single .contant-box .bottom-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 1px;
    transform: translateX(50%);
    background-color: var(--thm-border-color);
}

.testimonial-style2__single .contant-box .bottom-box .leaner-name {
    position: relative;
    display: block;
}

.testimonial-style2__single .contant-box .bottom-box .leaner-name h3 {
    font-size: 20px;
    line-height: 30px;
}

.testimonial-style2__single .contant-box .bottom-box .rating-box {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-style2__single .contant-box .bottom-box .rating-box .icon {
    position: relative;
    display: block;
    margin-right: 5px;
    color: #04bf61;
    font-size: 16px;
}

.testimonial-style2__single .contant-box .bottom-box .rating-box .text {
    position: relative;
    display: block;
}

.testimonial-style2__single .contant-box .bottom-box .rating-box .text p {
    color: var(--thm-black);
}



.testimonial-style2__quote {
    position: relative;
    display: block;
    padding-top: 30px;
}

.testimonial-style2__quote .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.testimonial-style2__quote .img-box .quote-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    opacity: 0.9;
    z-index: 1;
}

.testimonial-style2__quote .img-box .quote-box i {
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--thm-primary-color);
    font-size: 170px;
    line-height: 170px;
}

.testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    padding-top: 30px;
    padding-bottom: 30px;
}

.testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    margin: 30px 0px 0px;
    left: 50%;
    transform: translateX(50%);
}

.testimonial-style2 .section-btn {
    margin-top: 130px;
}




/*** 
=============================
   Testimonial Style3 Css
=============================
***/
.testimonial-style3 {
    background-color: var(--thm-white);
    overflow: hidden;
}

.testimonial-style3 .container {
    max-width: 100%;
    padding-left: 75px;
    padding-right: 0;
}

.testimonial-style3__content {
    position: relative;
    display: block;
    overflow: hidden;
}




.single-testimonial-style3 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    padding: 111px 0px 120px;
    padding-right: 160px;
    z-index: 1;
}

.single-testimonial-style3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: rgb(16, 16, 21);
    background: linear-gradient(90deg, rgba(16, 16, 21, 0) 30%, rgba(16, 16, 21, 0.639093137254902) 50%, rgba(16, 16, 21, 1) 75%);
}

.single-testimonial-style3::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: rgb(14, 33, 59);
    background: linear-gradient(90deg, rgba(14, 33, 59, 0.7987570028011204) 0%, rgba(14, 33, 59, 0.8015581232492998) 25%, rgba(14, 33, 59, 0) 55%);
}

.single-testimonial-style3__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: left top;
    z-index: -1;
}

.single-testimonial-style3__content {
    position: relative;
    display: block;
    max-width: 530px;
    width: 100%;
    z-index: 3;
}

.single-testimonial-style3__content .name-course {
    position: relative;
    display: block;
}

.single-testimonial-style3__content .name-course h3 {
    color: var(--thm-white);
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 6px;
}

.single-testimonial-style3__content .name-course p {
    color: #a9a9b0;
    font-size: 18px;
    line-height: 28px;
}

.single-testimonial-style3__content .name-course p span {
    color: var(--thm-white);
    font-weight: 600;
}

.single-testimonial-style3__content .text {
    position: relative;
    display: block;
    padding-top: 25px;
}

.single-testimonial-style3__content .text p {
    color: #a9a9b4;
    font-size: 24px;
    line-height: 34px;
}

.single-testimonial-style3__content .rating-box {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
    z-index: 3;
}

.single-testimonial-style3__content .rating-box li {
    position: relative;
    display: block;
}

.single-testimonial-style3__content .rating-box li+li {
    margin-left: 5px;
}

.single-testimonial-style3__content .rating-box li .icon {
    position: relative;
    display: block;
    color: #ffcd3c;
    font-size: 20px;
    line-height: 20px;
}

.single-testimonial-style3__icon {
    position: absolute;
    bottom: 28px;
    right: 50px;
    z-index: 3;
}

.single-testimonial-style3__icon span {
    color: #1d1d22;
    font-size: 155px;
}



.testimonial-style3-carousel .owl-dots {
    position: absolute;
    top: 50px;
    left: 50%;
    counter-reset: slides-num;
    transform: translateX(-50%);
    margin-left: 150px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    margin-top: 0 !important;
}

.testimonial-style3-carousel .owl-dots::after {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "0"counter(slides-num);
    font-size: 16px;
    color: #a9a9b0;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-right: -50px;
}

.testimonial-style3-carousel .owl-dots:before {
    position: absolute;
    content: '';
    right: 40px;
    top: 43px;
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(10deg);
}

.testimonial-style3-carousel .owl-dots button span {
    display: none !important;
}

.testimonial-style3-carousel .owl-dots button {
    position: absolute;
    top: 35px;
    right: 65px;
    counter-increment: slides-num;
    color: var(--thm-white);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--thm-font-2);
}

.testimonial-style3-carousel .owl-dots button.active:before {
    position: absolute;
    content: counter(slides-num);
}

.testimonial-style3-carousel .owl-dots button.active:after {
    position: absolute;
    content: '0';
    top: 0px;
    right: 0px;
}


.testimonial-style1--style2 {
    padding: 120px 0px 80px;
}

.single-testimonial-style1--style2 {
    margin-bottom: 32px;
}



.bottom-parallax {
    position: relative;
    height: 860px;
    opacity: 0;
    z-index: -999;
}

.bottom-parallax .footer-style1 {
    position: fixed;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 860px;
}

.parallax-visible .bottom-parallax {
    opacity: 1;
    z-index: 1;
}

.footer-style1 {
    position: relative;
    display: block;
    background: #e5e5e5;
    overflow: hidden;
    padding: 0px 0px 0px;
    z-index: 10;
}

.footer-style1__upper {
    position: relative;
    display: block;
    padding: 28px 100px 2px;
    z-index: 1;
}

.footer-style1__upper:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    border-bottom: 2px dashed #3e5f62;
}

.footer-style1__upper-content {
    position: relative;
    display: block;
    padding-left: 0px;
    min-height: 30px;
    z-index: 1;
}

.footer-style1__upper-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    bottom: 0;
    right: 0;
    background: rgb(26, 55, 58);
    background: linear-gradient(90deg, rgba(26, 55, 58, 0.9472163865546218) 0%, rgba(26, 55, 58, 0.7287289915966386) 5%, rgba(26, 55, 58, 0) 15%, rgba(26, 55, 58, 0) 85%, rgba(26, 55, 58, 0.7483368347338936) 95%, rgba(26, 55, 58, 1) 100%);
    z-index: 2;
}

.footer-style1__upper-content .inner-title {
    position: absolute;
    top: 0;
    left: 0;
    color: #405f62;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    display: none;
}

.footer-style1__upper .car_img {
    position: absolute;
    left: 100px;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 30px;
    animation: slide 50s linear infinite;
    -webkit-animation: slide 50s linear infinite;
}

@keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 1920px 0;
    }
}


/*==== Footer Top ====*/
.footer-style1__top {
    position: relative;
    display: block;
    padding-top: 60px;
}

.footer-style1__top .container {
    max-width: 1320px;
}

.footer-style1__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--thm-border-radius);
    background-color: #264649;
    padding: 54px 60px 55px;
}

.footer-style1__top-inner-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    width: 100%;
}

.footer-style1__top-inner-left li {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

.footer-style1__top-inner-left li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--thm-white);
    font-size: 40px;
    line-height: 40px;
}

.footer-style1__top-inner-left li .icon-box .icon-location .path1:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path2:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path3:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path4:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path5:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path6:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path7:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path8:before {
    color: var(--thm-primary-color);
}

.footer-style1__top-inner-left li .icon-box .icon-location .path9:before {
    color: var(--thm-primary-color);
}

.footer-style1__top-inner-left li .icon-box .icon-call-center .path1:before {
    color: var(--thm-black);
}

.footer-style1__top-inner-left li .icon-box .icon-call-center .path2:before {
    color: var(--thm-primary-color);
}

.footer-style1__top-inner-left li .title-box {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 30px;
}

.footer-style1__top-inner-left li .title-box h4 {
    color: var(--thm-white);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 11px;
}

.footer-style1__top-inner-left li .title-box p {
    color: #a5b9bb;
}

.footer-style1__top-inner-left li .title-box p a {
    color: #a5b9bb;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-style1__top-inner-left li .title-box p a:hover {
    color: var(--thm-primary-color);
}

.footer-style1__top-inner-right {
    position: relative;
    display: block;
    flex: 1;
}

.footer-style1__top-inner-right .shape {
    position: absolute;
    top: -30px;
    left: -40px;
}

.footer-style1__top-inner-right .btn-box {
    position: relative;
    display: inline-block;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    padding: 22px 35px 22px;
}

.footer-style1__top-inner-right .btn-box p {
    position: relative;
    color: var(--thm-white);
    display: flex;
    align-items: center;
}

.footer-style1__top-inner-right .btn-box p a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 14px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-style1__top-inner-right .btn-box p a:hover {
    color: var(--thm-primary-color);
}

.footer-style1__top-inner-right .btn-box p a i {
    margin-right: 7px;
}


/*==== Footer Main ====*/
.footer-main {
    position: relative;
    display: block;
    padding: 30px 0px 30px;
    /*padding: 120px 0px 112px;*/
}

.single-footer-widget {
    position: relative;
    display: block;
}

.our-company-info-box {
    position: relative;
    display: block;
    margin-right: 30px;
}

.footer-logo-style1 {
    position: relative;
    display: block;
}

.footer-logo-style1 a {
    position: relative;
    display: inline-block;
}

.footer-logo-style1 a img {
    width: auto;
}

.footer-social-links-style1 {
    position: relative;
    display: block;
    margin-top: 40px;
}

.footer-social-links-style1 ul {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-social-links-style1 ul li {
    position: relative;
    display: block;
}

.footer-social-links-style1 ul li+li {
    margin-left: 10px;
}

.footer-social-links-style1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: transparent;
    border: 1px solid #2f5154;
    border-radius: var(--thm-border-radius);
    color: var(--thm-white);
    font-size: 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-social-links-style1 ul li:hover a {
    color: #ffffff;
    border-color: var(--thm-primary-color);
    background-color: var(--thm-primary-color);
}

.subscribe-box-form {
    position: relative;
    display: block;
    padding-top: 33px;
}

.subscribe-box-form .text {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.subscribe-box-form .text p {
    color: #a5b9bb;
}

.subscribe-box-form form {
    position: relative;
    display: block;
}

.subscribe-box-form form .form-group {
    position: relative;
    display: block;
}

.subscribe-box-form form .form-group .icon {
    position: absolute;
    top: 50%;
    left: 20px;
    color: var(--thm-primary-color);
    font-size: 16px;
    line-height: 16px;
    z-index: 1;
    transform: translateY(-50%);
}

.subscribe-box-form form input[type="email"] {
    position: relative;
    display: block;
    border: 0px solid transparent;
    background-color: #264649;
    border-radius: var(--thm-border-radius);
    width: 100%;
    height: 60px;
    color: #a5b9bb;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 50px;
    padding-right: 20px;
    text-transform: capitalize;
    transition: all 500ms ease;
}

.subscribe-box-form form input[type="email"]::-webkit-input-placeholder {
    color: #a5b9bb;
}

.subscribe-box-form form input[type="email"]:-moz-placeholder {
    color: #a5b9bb;
}

.subscribe-box-form form input[type="email"]::-moz-placeholder {
    color: #a5b9bb;
}

.subscribe-box-form form input[type="email"]:-ms-input-placeholder {
    color: var(--thm-body-font-color);
}

.subscribe-box-form form .btn-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 19px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.subscribe-box-form form .btn-box i {
    margin-right: 7px;
}

.subscribe-box-form form .btn-box:hover {
    color: var(--thm-primary-color);
}

.single-footer-widget .title {
    position: relative;
    display: block;
    margin-top: -7px;
}

.single-footer-widget .title h3 {
    color: var(--thm-white);
    font-size: 20px;
    line-height: 30px;
}

.footer-widget-links {
    position: relative;
    display: block;
    padding-top: 26px;
}

.footer-widget-links ul {
    position: relative;
    display: block;
}

.footer-widget-links ul li {
    position: relative;
    display: block;
}

.footer-widget-links ul li+li {
    margin-top: 10px;
}

.footer-widget-links ul li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    /*color: #a5b9bb;*/
    color: #1e283a;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.footer-widget-links ul li a:hover {
    color: var(--thm-white);
    margin-left: 5px;
}

.footer-widget-links ul li a i {
    position: relative;
    display: inline-block;
    opacity: 0;
    margin-left: 5px;
    transform: translateX(-10px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer-widget-links ul li a:hover i {
    opacity: 1;
    transform: translateX(0px);
}

.footer-widget-mobile-app {
    position: relative;
    display: block;
    padding-top: 26px;
}

.footer-widget-mobile-app .text {
    position: relative;
    display: block;
}

.footer-widget-mobile-app .text p {
    color: #a5b9bb;
}

.footer-widget-mobile-app .app-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 250px;
    width: 100%;
    margin-top: 17px;
}

.footer-widget-mobile-app .app-box li {
    position: relative;
    display: block;
    width: 120px;
    height: 130px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 20px 0px 0px;
}

.footer-widget-mobile-app .app-box li+li {
    margin-left: 10px;
}

.footer-widget-mobile-app .app-box li .icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    color: var(--thm-black);
    font-size: 40px;
    margin: 0 auto;
}

.footer-widget-mobile-app .app-box li h6 {
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
    margin-top: 13px;
}

.footer-widget-mobile-app .app-box li h6 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-mobile-app .app-box li h6 a:hover {
    color: var(--thm-primary-color);
}

.footer-widget-mobile-app .download-material {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.footer-widget-mobile-app .download-material .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 17px;
}

.footer-widget-mobile-app .download-material .title {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 20px;
}

.footer-widget-mobile-app .download-material .title h4 {
    font-size: 18px;
    line-height: 24px;
}

.footer-widget-mobile-app .download-material .title h4 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-widget-mobile-app .download-material .title h4 a:hover {
    color: var(--thm-primary-color);
}

.footer-widget-mobile-app .download-material .title p {
    color: #a5b9bb;
    margin: 5px 0 0;
}


/*==== Footer Bottom ====*/
.footer-bottom {
    position: relative;
    display: block;
    border-top: 1px solid #cfcfcf;
    padding: 25px 0px 23px;
    margin-bottom: 70px;
}

.footer-bottom .bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    position: relative;
    display: block;
}

.copyright-text p {
    /*color: #a5b9bb;*/
    color: #1e283a;
    margin: 0;
}

.copyright-text p a {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.copyright-text p a:hover {
    color: #787878;
}

.footer-menu {
    position: relative;
    display: block;
}

.footer-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.footer-menu ul li {
    position: relative;
    display: block;
}

.footer-menu ul li+li {
    margin-left: 20px;
}

.footer-menu ul li a {
    position: relative;
    display: inline-block;
    color: #1e283a;
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.footer-menu ul li a:hover {
    color: var(--thm-white);
}

/*** 
=======================
    Team Style1 Css
=======================
***/
.team-style1 {
    background-color: var(--thm-gray-bg);
    padding: 120px 0px 120px;
}

.team-style1--white-bg {
    background-color: var(--thm-white);
}

.single-team-style1 {
    position: relative;
    display: block;
}

.single-team-style1-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    padding: 23px 25px 30px;
    margin-right: 30px;
}

.single-team-style1-inner--style2 {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}


.single-team-style1-title {
    position: relative;
    display: block;
    padding-bottom: 17px;
}

.single-team-style1-title h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 4px;
}

.single-team-style1-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1-title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-team-style1-title span {
    color: #97a69e;
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.single-team-style1-border {
    position: relative;
    display: block;
    width: 175px;
    height: 1px;
    background-color: #e2e9e6;
    margin-left: -25px;
}

.single-team-style1-text {
    position: relative;
    display: block;
    padding-top: 18px;
}

.single-team-style1-text p {
    margin: 0;
}

.single-team-style1-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 27px;
}

.single-team-style1-social-link {
    position: relative;
    display: flex;
    align-items: center;
}

.single-team-style1-social-link li {
    position: relative;
    display: block;
}

.single-team-style1-social-link li+li {
    margin-left: 10px;
}

.single-team-style1-social-link li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid #e2e9e6;
    border-radius: 4px;
    color: var(--thm-black);
    font-size: 18px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-team-style1-social-link li:hover a {
    color: var(--thm-primary-color);
    border-color: var(--thm-gray-bg);
    background-color: var(--thm-gray-bg);
}

.single-team-style1-btn {
    position: relative;
    display: block;
    line-height: 0;
}

.single-team-style1-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1-btn a i {
    font-size: 16px;
    margin-right: 7px;
}

.single-team-style1-btn a:hover {
    color: var(--thm-primary-color);
}


.single-team-style1-img {
    position: absolute;
    top: 30px;
    right: 0;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-team-style1-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-team-style1:hover .single-team-style1-img::before {
    opacity: 0.80;
}

.single-team-style1-img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-team-style1:hover .single-team-style1-img img {
    transform: scale(1.05) rotate(0deg);
}

.single-team-style1-shape {
    position: absolute;
    bottom: 10px;
    right: 10px;
}


.team-style1 .section-btn::before {
    background-color: #d6ddda;
}

.team-style1 .section-btn-inner-bg {
    background-color: var(--thm-gray-bg);
}

.team-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    margin: 60px auto 0;
}



.team-style1-carousel--style2.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.team-style1-carousel--style2.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.team-style1-carousel--style2.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}




.team-style1--2 {
    padding: 120px 0px 90px;
}

.team-style1--2 .single-team-style1 {
    margin-bottom: 30px;
}



/*
==========================
  Service style1 Css
==========================
*/
.service-style1 {
    background-color: var(--thm-black-bg);
    padding: 120px 0 120px;
}

.service-style1 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.service-style1 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.service-style1 .sec-title h2 {
    color: var(--thm-white);
}

.service-style1 .row {
    min-height: 570px;
}


.single-service-style1 {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    padding: 23px 30px 30px;
    max-width: 370px;
    margin: 0 auto;
}

.single-service-style1__title {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.single-service-style1__title h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
}

.single-service-style1__title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1__title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-service-style1__title h6 {
    color: #97a69e;
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.service-style1__shape1 {
    position: absolute;
    top: 70px;
    right: 30px;
}

.single-service-style1__img {
    position: relative;
    display: block;
    padding-bottom: 100px;
}

.single-service-style1__inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
}

.single-service-style1__inner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0px;
    background-color: var(--thm-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
}

.single-service-style1:hover .single-service-style1__inner::before {
    opacity: 0.80;
}

.single-service-style1__inner img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}


.single-service-style1__icon {
    position: absolute;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    left: -30px;
    bottom: 100px;
    width: 90px;
    height: 80px;
    background-color: #22494d;
    font-size: 50px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.single-service-style1:hover .single-service-style1__icon {
    left: 0;
    bottom: 135px;
    background-color: var(--thm-primary-color);
}

.single-service-style1__icon::before {
    content: "";
    position: absolute;
    top: -34px;
    left: 0;
    width: 90px;
    height: 35px;
    background-color: #22494d;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-service-style1:hover .single-service-style1__icon::before {
    background-color: var(--thm-primary-color);
}

.single-service-style1__icon .icon-driving .path1:before {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1__icon .icon-driving .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1__icon .icon-driving .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1__icon .icon-driving .path4:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1__icon .icon-driving-license .path1:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path2:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path3:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path4:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path5:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path6:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path7:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path7:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path8:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path8:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path9:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path9:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-driving-license .path10:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path10:before {
    color: var(--thm-white);
}


.single-service-style1__icon .icon-driving-license .path11:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path11:before {
    color: var(--thm-white);
}


.single-service-style1__icon .icon-driving-license .path12:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving-license .path12:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-shield .path1:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-shield .path2:before {
    color: var(--thm-primary-color);
}

.single-service-style1:hover .single-service-style1__icon .icon-shield .path2:before {
    color: var(--thm-white);
}

.single-service-style1:hover .single-service-style1__icon .icon-driving .path1:before {
    color: var(--thm-white);
}

.service-style1__shape2 {
    position: absolute;
    top: -58px;
    left: 0;
}



.single-service-style1__text {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    overflow: hidden;
    background-color: var(--thm-gray-bg);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 24px 25px 24px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 11;
}

.single-service-style1__text p {
    margin: 0;
}

.single-service-style1__text .btn-box {
    position: relative;
    display: block;
    transform: perspective(400px) rotateY(0deg) translateY(30px);
    transform-origin: bottom;
    visibility: hidden;
    height: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-service-style1:hover .single-service-style1__text .btn-box {
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    visibility: visible;
    height: 24px;
    margin-top: 11px;
}

.single-service-style1__text .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 105px;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
}

.single-service-style1__text .btn-box a i {
    margin-right: 6px;
}



.service-style1 .section-btn {
    margin-top: 40px;
}

.service-style1 .section-btn::before {
    background-color: #2f5154;
}

.service-style1 .section-btn-inner {
    border: 1px solid #2f5154;
}

.service-style1 .section-btn-inner-bg {
    background-color: #1a373a;
    background-blend-mode: hard-light;
}

.service-style1 .section-btn-inner p {
    color: #a5b9bb;
}

.service-style1 .section-btn-inner p a {
    color: var(--thm-white);
}

.service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    left: -95px;
    right: -95px;
    bottom: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    z-index: -1;
    width: auto;
}

.service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    border: 1px solid #2f5154;
}



/*
==========================
  Service style2 Css
==========================
*/
.service-style2 {
    background-color: var(--thm-white);
    padding: 120px 0px 95px;
}

.service-style2__img {
    position: relative;
    display: block;
}

.service-style2__img .inner {
    position: relative;
    display: block;
    z-index: 1;
}

.service-style2__img .inner::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 100px;
    bottom: 0;
    right: 70px;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    z-index: -1;
}

.service-style2__img .inner img {
    width: auto;
}

.service-style2__img-title {
    position: absolute;
    top: 0px;
    left: -20px;
    bottom: 0;
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    z-index: -1;
    color: var(--thm-white);
    font-size: 90px;
    line-height: 1.1em;
    font-weight: 800;
    font-family: var(--thm-font-2);
    text-transform: uppercase;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
}

.service-style2__img-rotated-text {
    position: absolute;
    top: 60px;
    right: -60px;
    width: 150px;
    height: 150px;
    z-index: 11;
}

.service-style2-rotated-text {
    position: absolute;
    bottom: 0;
    right: -7px;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    word-spacing: 3px;
    transform: rotate(65deg);
    width: 150px;
    height: 150px !important;
}

.service-style2__img-rotated-text .overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-style2__img-rotated-text .overlay-text h3 {
    color: var(--thm-primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-top: 12px;
}

.service-style2__img-rotated-text .overlay-text h5 {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
}





.service-style2__contant {
    position: relative;
    display: block;
    padding-left: 100px;
}

.service-style2__contant .sec-title {
    padding-bottom: 34px;
}

.service-style2__contant .text-box {
    position: relative;
    display: block;
}

.service-style2__contant .text-box p {
    margin: 0;
}

.service-style2__contant-inner {
    position: relative;
    display: block;
    margin-top: 36px;
}

.service-style2__single {
    position: relative;
    display: block;
}

.service-style2__single-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
}

.service-style2__single-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: #20354b;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-style2__single:hover .service-style2__single-img::before {
    opacity: 0.9;
}

.service-style2__single-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9836309523809523) 0%, rgba(20, 43, 45, 0) 50%);
    z-index: 1;
}

.service-style2__single:hover .service-style2__single-img::after {
    opacity: 0;
}

.service-style2__single-img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.service-style2__single:hover .service-style2__single-img img {
    transform: scale(1.05) rotate(0deg);
}

.service-style2__single-overlay-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transform: translateX(0px);
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    font-size: 40px;
    line-height: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.service-style2__single:hover .service-style2__single-overlay-icon {
    transform: translateX(100px);
}

.service-style2__single-overlay-icon .icon-driving .path1:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving .path2:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving .path3:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving .path4:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path1:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path2:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path3:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path4:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path5:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path6:before {
    color: var(--thm-black);
}

.service-style2__single-overlay-icon .icon-driving-license .path7:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving-license .path8:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving-license .path9:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving-license .path10:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving-license .path11:before {
    color: var(--thm-primary-color);
}

.service-style2__single-overlay-icon .icon-driving-license .path12:before {
    color: var(--thm-primary-color);
}



.service-style2__single-overlay-btn {
    position: absolute;
    right: -1px;
    bottom: 0px;
    z-index: 3;
}

.service-style2__single-overlay-btn .btn-one {
    padding-right: 25px;
    border-radius: 0;
    color: var(--thm-black);
}

.service-style2__single-overlay-btn .btn-one:hover {
    color: var(--thm-white);
}

.service-style2__single-overlay-btn .btn-one::before {
    background-color: var(--thm-primary-color);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: auto;
    right: -10px;
}

.service-style2__single-overlay-btn .btn-one::after {
    background-color: var(--thm-white);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    top: 1px;
}

.service-style2__single-overlay-btn .shape1 {
    position: absolute;
    left: -20px;
    bottom: -1px;
    opacity: 1;
    transform: translate(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.service-style2__single-overlay-btn:hover .shape1 {
    opacity: 0;
    transform: translate(50px);
}

.service-style2__single-overlay-btn .shape2 {
    position: absolute;
    left: -20px;
    bottom: -1px;
    opacity: 0;
    transform: translateX(50px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.service-style2__single-overlay-btn:hover .shape2 {
    opacity: 1;
    transform: translateX(0px);
}



.service-style2__single-img .count-box {
    position: absolute;
    left: -10px;
    bottom: -8px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.service-style2__single:hover .service-style2__single-img .count-box {
    left: 23px;
    bottom: 16px;
}

.service-style2__single-img .count-box h2 {
    color: rgb(255, 255, 255, 0.2);
    font-size: 48px;
    line-height: 1.1em;
}

.service-style2__single-overlay-text {
    position: absolute;
    top: 75px;
    left: 25px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
    z-index: 3;
}

.service-style2__single:hover .service-style2__single-overlay-text {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.service-style2__single-overlay-text p {
    color: #a1aab4;
}

.service-style2__single-title {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 15px 25px 15px;
}

.service-style2__single-title h3 {
    font-size: 20px;
    line-height: 30px;
}

.service-style2__single-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-style2__single-title h3 a:hover {
    color: var(--thm-primary-color);
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: -100px;
    width: 60px;
    height: 160px;
    transform: translateY(-50%);
    z-index: 1;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    margin: 10px 0px;
    background-color: var(--thm-white);
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    overflow: visible;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-stage-outer .owl-item {
    opacity: 0;
    transition: all 300ms ease 100ms;
}

.service-style2-carousel.owl-nav-style-one.owl-theme .owl-stage-outer .owl-item.active {
    opacity: 1;
}


.service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 30px;
    bottom: -70px;
    width: 1px;
    background-color: var(--thm-border-color);
    z-index: -1;
}



/*
==========================
  Service style3 Css
==========================
*/
.service-style3 {
    padding: 120px 0px 120px;
}

.service-style3__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    z-index: -1;
}

.service-style3__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #101015;
    opacity: 0.92;
}

.service-style3__content {
    position: relative;
    display: block;
}

.service-style3__content .sec-title {
    padding-bottom: 24px;
}

.service-style3__content .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.service-style3__content .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}

.service-style3__content .sec-title h2 {
    color: var(--thm-white);
}

.service-style3__content .text {
    position: relative;
    display: block;
}

.service-style3__content .text p {
    color: #a9a9b0;
}

.service-style3__inner {
    position: relative;
    display: block;
}

.single-service-style3 {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: var(--thm-border-radius);
    border: 1px solid rgb(255, 255, 255, .15);
    padding: 49px 39px 41px;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-service-style3:hover {
    border-color: transparent;
}

.single-service-style3::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-primary-color);
    opacity: 0;
    transform: perspective(400px) scaleX(0.7);
    transform-origin: center;
    z-index: -1;
    transition: border-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-service-style3:hover::before {
    opacity: 1;
    transform: perspective(400px) scaleX(1.0);
}

.single-service-style3 .top-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-service-style3 .top-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    font-size: 50px;
    line-height: 50px;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
}

.single-service-style3 .top-box .icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(240, 33, 41, 1) 0%, rgba(16, 16, 21, 1) 100%);
    z-index: -1;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.single-service-style3:hover .top-box .icon::after {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    transform-origin: top center;
}

.single-service-style3 .top-box .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-white);
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
}

.single-service-style3:hover .top-box .icon::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
    transition-delay: 0.6s;
}

.single-service-style3 .top-box .icon .icon-driving {
    color: var(--thm-white);
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.single-service-style3:hover .top-box .icon .icon-driving {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving .path1:before {
    color: var(--thm-white);
    transition: all 300ms linear;
    transition-delay: 0.2s;
}

.single-service-style3:hover .top-box .icon .icon-driving .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driving-license .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path1:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path2:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path3:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path4:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path4:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path5:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path5:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path6:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path6:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path7:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path7:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-driving-license .path8:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path8:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driving-license .path9:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path9:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driving-license .path10:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path10:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driving-license .path11:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path11:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driving-license .path12:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driving-license .path12:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-shield .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-shield .path1:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-shield .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-shield .path2:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .shape {
    position: relative;
    display: block;
    line-height: 0;
}

.single-service-style3 .top-box .shape span {
    font-size: 46px;
    color: rgba(255, 255, 255, 0.10);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-service-style3:hover .top-box .shape span {
    background: linear-gradient(to right, var(--thm-primary-color) 60%, var(--thm-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-service-style3 .top-box .count {
    position: relative;
    display: block;
}

.single-service-style3 .top-box .count h2 {
    color: #44444a;
    font-size: 36px;
    line-height: 1.1em;
}


.single-service-style3 .content-box {
    position: relative;
    display: block;
    padding-top: 27px;
}

.single-service-style3 .content-box .title {
    position: relative;
    display: block;
    padding-bottom: 17px;
}

.single-service-style3 .content-box .title h3 {
    font-size: 22px;
    line-height: 32px;
}

.single-service-style3 .content-box .title h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3 .content-box .title h3 a:hover {
    color: var(--thm-primary-color);
}

.single-service-style3 .content-box .text {
    position: relative;
    display: block;
}

.single-service-style3 .content-box .text p {
    color: #a9a9b0;
}

.single-service-style3 .content-box .btn-box {
    position: relative;
    display: block;
    padding-top: 26px;
}

.single-service-style3 .content-box .btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3 .content-box .btn-box a i {
    margin-right: 6px;
}

.single-service-style3 .content-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.service-style3-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
    margin-right: -400px;
}

.service-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
    display: none;
}



/*
==========================
  Service style4 Css
==========================
*/
.service-style4 {
    background-color: var(--thm-white);
    padding: 120px 0px 90px;
}

.service-style4 .sec-title .sub-title h4 {
    background-color: var(--thm-primary-color);
}

.service-style4 .sec-title .sub-title h4::before {
    background-color: var(--thm-primary-color);
}


.single-service-style4 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.single-service-style4 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-top-left-radius: var(--thm-border-radius);
    border-top-right-radius: var(--thm-border-radius);
}

.single-service-style4 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: var(--thm-black);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-service-style4:hover .img-box::before {
    opacity: 0.9;
}

.single-service-style4 .img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9836309523809523) 0%, rgba(20, 43, 45, 0) 50%);
    z-index: 1;
}

.single-service-style4:hover .img-box::after {
    opacity: 0;
}

.single-service-style4 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-service-style4:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-service-style4 .img-box .overlay-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transform: translateX(0px);
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    font-size: 40px;
    line-height: 40px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.single-service-style4:hover .img-box .overlay-icon {
    transform: translateX(100px);
}

.single-service-style4 .img-box .overlay-icon .icon-driving .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving .path2:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving .path3:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving .path4:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path1:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path2:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path3:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path4:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path5:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path6:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path7:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path8:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path9:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path10:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path11:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driving-license .path12:before {
    color: var(--thm-primary-color);
}



.single-service-style4 .img-box .overlay-icon .icon-shield .path1:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-shield .path2:before {
    color: var(--thm-primary-color);
}



.single-service-style4 .img-box .overlay-btn {
    position: absolute;
    right: -1px;
    bottom: 0px;
    z-index: 3;
}

.single-service-style4 .img-box .overlay-btn .btn-one {
    padding-right: 25px;
    border-radius: 0;
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-btn .btn-one:hover {
    color: var(--thm-white);
}

.single-service-style4 .img-box .overlay-btn .btn-one::before {
    background-color: var(--thm-primary-color);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    left: 0;
    right: -10px;
}

.single-service-style4 .img-box .overlay-btn .btn-one::after {
    background-color: var(--thm-gray-bg);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    top: 1px;
}

.single-service-style4 .img-box .overlay-btn .btn-one:hover::before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.single-service-style4 .img-box .overlay-btn .shape1 {
    position: absolute;
    left: -20px;
    bottom: -1px;
    opacity: 1;
    transform: translate(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-service-style4 .img-box .overlay-btn:hover .shape1 {
    opacity: 0;
    transform: translate(50px);
}

.single-service-style4 .img-box .overlay-btn .shape2 {
    position: absolute;
    left: -20px;
    bottom: -1px;
    opacity: 0;
    transform: translateX(50px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-service-style4 .img-box .overlay-btn:hover .shape2 {
    opacity: 1;
    transform: translateX(0px);
}

.single-service-style4 .img-box .count-box {
    position: absolute;
    left: -10px;
    bottom: -8px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 3;
}

.single-service-style4:hover .img-box .count-box {
    left: 23px;
    bottom: 16px;
}

.single-service-style4 .img-box .count-box h2 {
    color: rgb(255, 255, 255, 0.2);
    font-size: 48px;
    line-height: 1.1em;
}

.single-service-style4 .img-box .overlay-text {
    position: absolute;
    top: 75px;
    left: 25px;
    right: 25px;
    opacity: 0;
    transform: scaleY(0);
    transition: all 400ms ease 200ms;
    z-index: 3;
}

.single-service-style4:hover .img-box .overlay-text {
    opacity: 1;
    transform: scaleY(1.0);
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.single-service-style4 .img-box .overlay-text p {
    color: #a1aab4;
}


.single-service-style4-title {
    position: relative;
    display: block;
    background-color: var(--thm-white);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: var(--thm-border-radius);
    border-bottom-right-radius: var(--thm-border-radius);
    padding: 15px 25px 15px;
}

.single-service-style4-title h3 {
    font-size: 20px;
    line-height: 30px;
}

.single-service-style4-title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style4-title h3 a:hover {
    color: var(--thm-primary-color);
}



.service-style4-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
    background-color: var(--thm-primary-color);
    padding: 47px 25px 60px;
    width: 270px;
}

.service-style4-banner .title-box {
    position: relative;
    display: inline-block;
}

.service-style4-banner .title-box h3 {
    color: var(--thm-white);
    font-size: 26px;
    line-height: 36px;
}

.service-style4-banner .title-box h3 span {
    font-size: 20px;
    line-height: 30px;
}



.service-style4-banner .title-box ul {
    position: absolute;
    top: 40px;
    left: 115px;
    display: flex;
    align-items: center;
    max-width: 65px;
    width: 100%;
}

.service-style4-banner .title-box ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--thm-white);
}

.service-style4-banner .title-box ul li img {
    width: auto;
}

.service-style4-banner .title-box ul li+li {
    margin-left: 5px;
}

.service-style4-banner .text-box {
    position: relative;
    display: block;
    padding-top: 11px;
}

.service-style4-banner .text-box p {
    color: var(--thm-white);
}

.service-style4-banner .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 23px;
}

.service-style4-banner .btn-box .btn-one {
    display: block;
    width: 100%;
    color: var(--thm-black);
    text-align: center;
    line-height: 35px;
}

.service-style4-banner .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.service-style4-banner .btn-box .btn-one::after {
    background-color: var(--thm-black);
}

.service-style4-banner .btn-box .btn-one::after {
    background-color: var(--thm-white);
}

.service-style4-banner .shape1 {
    position: absolute;
    top: 20px;
    left: 25px;
    line-height: 0;
}

.service-style4-banner .shape1 img {
    width: auto;
}

.service-style4-banner .shape2 {
    position: absolute;
    right: 25px;
    bottom: 20px;
    line-height: 0;
}

.service-style4-banner .shape2 img {
    width: auto;
}








/*
==========================
    Service Page Css
==========================
*/
.service-page {
    background-color: var(--thm-white);
    padding: 30px;
}

.sidebar-style1 {
    position: relative;
    display: block;
    padding-right: 20px;
}

.single-sidebar-style1 {
    position: relative;
    display: block;
    margin-bottom: 50px;
}

.single-sidebar-style1 .title-box {
    position: relative;
    display: block;
    margin-top: -8px;
}

.single-sidebar-style1 .title-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 12px;
}

.single-sidebar-style1 .title-box .shape {
    position: relative;
    display: block;
    line-height: 0;
}

.single-sidebar-style1 .title-box .shape img {
    width: auto;
}



.services-details-pages-link {
    position: relative;
    display: block;
    padding-top: 30px;
}

.services-details-pages-link ul {
    position: relative;
    display: block;
}

.services-details-pages-link ul li {
    position: relative;
    display: block;
}

.services-details-pages-link ul li+li {
    margin-top: 10px;
}

.services-details-pages-link ul li .title {
    position: relative;
    display: block;
}

.services-details-pages-link ul li .title a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: transparent;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    padding: 16px 25px 16px;
    color: var(--thm-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    z-index: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-pages-link ul li .title a i {
    position: relative;
    display: inline-block;
    color: #97a69e;
    margin-right: 6px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.services-details-pages-link ul li .title a:hover i {
    opacity: 0;
    transform: translateX(-20px);
}

.services-details-pages-link ul li .title a:hover {
    color: var(--thm-white);
    border-color: transparent;
    padding-left: 0;
}


.services-details-pages-link ul li .title a::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    background-color: var(--thm-primary-color);
    z-index: -1;

    opacity: 0;
    transform: translateX(-50%);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.services-details-pages-link ul li .title a:hover::before {
    opacity: 1;
    transform: translateX(0%);
}


.services-details-pages-link ul li .title a::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 20px;
    bottom: 4px;
    clip-path: polygon(30% 0, 100% 50%, 30% 100%, 0% 100%, 70% 50%, 0% 0%);
    background-color: var(--thm-white);
    width: 40px;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: right;
    transform-style: preserve-3d;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.services-details-pages-link ul li .title a:hover::after {
    transform: scaleX(1.0);
}




.single-sidebar-style1 .download-box {
    position: relative;
    display: block;
    padding-top: 30px;
}

.single-sidebar-style1 .single-download-box {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    padding: 27px 25px 24px;
}

.single-sidebar-style1 .single-download-box .icon-box {
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 45px;
}

.single-sidebar-style1 .single-download-box .icon-box .icon-file .path1:before {
    color: var(--thm-black);
}

.single-sidebar-style1 .single-download-box .icon-box .icon-file .path2:before {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .single-download-box .icon-box .icon-file .path3:before {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .single-download-box .title {
    position: relative;
    display: block;
    padding-top: 10px;
}

.single-sidebar-style1 .single-download-box .title h4 {
    font-size: 16px;
    line-height: 26px;
}

.single-sidebar-style1 .single-download-box .title h4 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar-style1 .single-download-box .title h4 a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .single-download-box .btn-box {
    position: relative;
    display: block;
    padding-top: 12px;
}

.single-sidebar-style1 .single-download-box .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--thm-black);
    font-size: 14px;
    line-height: 24px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-sidebar-style1 .single-download-box .btn-box a:hover {
    color: var(--thm-primary-color);
}

.single-sidebar-style1 .single-download-box .btn-box a i {
    margin-right: 6px;
}

.single-sidebar-style1 .single-download-box .file-size {
    position: absolute;
    top: 15px;
    right: 0;
    background-color: var(--thm-gray-bg);
    padding: 1px 25px 2px;
    padding-right: 10px;
}

.single-sidebar-style1 .single-download-box .file-size::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15px;
    height: 25px;
    background-color: var(--thm-white);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.single-sidebar-style1 .single-download-box .file-size h6 {
    color: var(--thm-body-font-color);
    font-size: 12px;
    line-height: 22px;
    text-transform: uppercase;
}



.banner-style1 {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #122729;
    border-radius: var(--thm-border-radius);
}

.banner-style1__bg {
    position: absolute;
    top: 60px;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
}

.banner-style1__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(18, 39, 41);
    background: linear-gradient(0deg, rgba(18, 39, 41, 1) 0%, rgba(18, 39, 41, 0.9528186274509804) 15%, rgba(18, 39, 41, 0.8463760504201681) 50%, rgba(18, 39, 41, 0.9023984593837535) 80%, rgba(18, 39, 41, 1) 100%);
    z-index: 1;
}

.banner-style1___inner {
    position: relative;
    display: block;
    padding: 43px 30px 50px;
    z-index: 5;
}

.banner-style1___inner .title-box {
    position: relative;
    display: block;
}

.banner-style1___inner .title-box h4 {
    color: var(--thm-white);
    font-size: 16px;
    line-height: 26px;
}

.banner-style1___inner .title-box h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--thm-white);
    font-size: 36px;
    line-height: 1.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.banner-style1___inner .list-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-primary-color);
    padding: 13px 0px 13px;
    margin: 26px 22px 0px;
}

.banner-style1___inner .list-item::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -21px;
    bottom: 0;
    width: 22px;
    height: 51px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.banner-style1___inner .list-item::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -22px;
    bottom: 0;
    width: 22px;
    height: 51px;
    background-color: var(--thm-primary-color);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.banner-style1___inner .list-item li {
    position: relative;
    display: block;
}

.banner-style1___inner .list-item li+li {
    margin-left: 25px;
}

.banner-style1___inner .list-item li::before {
    content: "";
    position: absolute;
    left: -14px;
    bottom: 9px;
    right: 0;
    width: 6px;
    height: 6px;
    background-color: var(--thm-white);
}

.banner-style1___inner .list-item li:first-child::before {
    display: none;
}

.banner-style1___inner .list-item li h6 {
    color: var(--thm-white);
    font-size: 14px;
    line-height: 24px;
    text-transform: uppercase;
}

.banner-style1___inner .content-box {
    position: relative;
    display: block;
    padding-top: 23px;
}

.banner-style1___inner .content-box h4 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 12px;
}

.banner-style1___inner .content-box h4 i {
    color: var(--thm-primary-color);
    margin-right: 10px;
}

.banner-style1___inner .content-box h4 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.banner-style1___inner .content-box h4 a:hover {
    color: var(--thm-primary-color);
}

.banner-style1___inner .content-box p {
    color: #a5b9bb;
}

.banner-style1___inner .content-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin-top: 22px;
}

.banner-style1___inner .content-box .btn-box .btn-one {
    color: var(--thm-black);
}

.banner-style1___inner .content-box .btn-box .btn-one:hover {
    color: var(--thm-white);
}

.banner-style1___inner .content-box .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.banner-style1___inner .content-box .btn-box .btn-one::after {
    background-color: var(--thm-white);
}




.service-page-content {
    position: relative;
    display: block;
}

.service-page-content>.title-box {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 41px;
}

.service-page-content .title-box h3 {
    font-size: 30px;
    line-height: 40px;
}

.service-page-content .img-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.service-page-content .img-box img {
    width: 100%;
}

.service-page-content .text-box {
    position: relative;
    display: block;
    padding-top: 43px;
}

.service-page-content .text-box p {
    margin: 0;
}



.learning-journey {
    position: relative;
    display: block;
    padding-top: 52px;
}

.learning-journey-content {
    position: relative;
    display: block;
}

.learning-journey-content>.title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 24px;
}

.learning-journey-content .title h3 {
    font-size: 30px;
    line-height: 40px;
}

.learning-journey-content .text {
    position: relative;
    display: block;
}

.learning-journey-content .text p {
    margin: 0;
}

.learning-journey-content .download {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 22px;
}

.learning-journey-content .download .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
    color: var(--thm-white);
    font-size: 17px;
}

.learning-journey-content>.download>.title {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 20px;
}

.learning-journey-content .download .title h3 {
    font-size: 18px;
    line-height: 24px;
}

.learning-journey-content .download .title h3 a {
    color: var(--thm-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.learning-journey-content .download .title h3 a:hover {
    color: var(--thm-primary-color);
}

.learning-journey-content .download .title p {
    margin: 0;
}

.learning-journey-list {
    position: relative;
    display: block;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    padding: 40px 30px 40px;
}

.learning-journey-list ul {
    position: relative;
    display: block;
}

.learning-journey-list ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.learning-journey-list ul li+li {
    margin-top: 18px;
}

.learning-journey-list ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--thm-primary-color);
}

.learning-journey-list ul li .icon img {
    width: auto;
}

.learning-journey-list ul li .text {
    position: relative;
    display: block;
    padding-left: 15px;
    flex: 1;
}

.learning-journey-list ul li .text p {
    color: var(--thm-black);
}



.what-we-offer {
    position: relative;
    display: block;
    padding-top: 52px;
}

.what-we-offer>.title {
    position: relative;
    display: block;
    padding-bottom: 24px;
}

.what-we-offer>.title h3 {
    font-size: 30px;
    line-height: 40px;
}

.what-we-offer>.text {
    position: relative;
    display: block;
}

.what-we-offer>.text p {
    margin: 0;
}

.what-we-offer__inner {
    position: relative;
    display: block;
    padding-top: 42px;
}



.single-what-we-offer {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 26px 0px 26px;
    margin-bottom: 30px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-what-we-offer:hover {
    background-color: transparent;
    box-shadow: none;
}

.single-what-we-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    border: 1px solid var(--thm-border-color);
    border-radius: var(--thm-border-radius);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.single-what-we-offer:hover::before {
    opacity: 1;
}

.single-what-we-offer .top-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 30px 25px;
}

.single-what-we-offer .top-box .animated-arrow {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
}

.single-what-we-offer .top-box .animated-arrow .img1 {
    position: relative;
    display: inline-block;
    line-height: 0;
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-what-we-offer:hover .top-box .animated-arrow .img1 {
    opacity: 0;
    transform: translateY(20px);
}

.single-what-we-offer .top-box .animated-arrow .img1 img {
    width: auto;
}

.single-what-we-offer .top-box .animated-arrow .img2 {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-what-we-offer:hover .top-box .animated-arrow .img2 {
    opacity: 1;
    transform: translateY(0px);
}

.single-what-we-offer .top-box .animated-arrow .img2 img {
    width: auto;
}

.single-what-we-offer>.top-box>.title-box {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.single-what-we-offer .top-box .title-box .count {
    position: relative;
    display: block;
}

.single-what-we-offer .top-box .title-box .count h4 {
    color: #97a69e;
    font-size: 16px;
    line-height: 16px;
}

.single-what-we-offer .top-box .title-box h3 {
    font-size: 20px;
    line-height: 25px;
    margin: 8px 0 0;
}

.single-what-we-offer .border-box {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--thm-border-color);
}

.single-what-we-offer .bottom-box {
    position: relative;
    display: block;
    padding: 26px 30px 0px;
}

.single-what-we-offer .bottom-box .text {
    position: relative;
    display: block;
}

.single-what-we-offer .bottom-box .text p {
    margin: 0;
}

.single-what-we-offer .bottom-box .list-item {
    position: relative;
    display: block;
    padding-top: 15px;
}

.single-what-we-offer .bottom-box .list-item .title {
    position: relative;
    display: inline-block;
}

.single-what-we-offer .bottom-box .list-item .title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: var(--thm-border-color);
}

.single-what-we-offer .bottom-box .list-item .title h4 {
    font-size: 16px;
    line-height: 26px;
}

.single-what-we-offer .bottom-box .list-item ul {
    position: relative;
    display: block;
    padding-top: 17px;
}

.single-what-we-offer .bottom-box .list-item ul li {
    position: relative;
    display: flex;
    align-items: center;
}

.single-what-we-offer .bottom-box .list-item ul li+li {
    margin-top: 11px;
}

.single-what-we-offer .bottom-box .list-item ul li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 18px;
    line-height: 18px;
}

.single-what-we-offer .bottom-box .list-item ul li .text {
    position: relative;
    display: block;
    padding-left: 10px;
}

.single-what-we-offer .bottom-box .list-item ul li .text p {
    margin: 0;
}



.benefits-box {
    position: relative;
    display: block;
    background-color: transparent;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
    padding: 39px 39px 39px;
    margin-top: 30px;
}

.benefits-box-inner {
    position: relative;
    display: block;
}

.benefits-box__tab {
    position: relative;
    display: block;
}

.benefits-box__content {
    position: relative;
    display: block;
    margin-right: 10px;
}

.benefits-box__content .title {
    position: relative;
    display: block;
    padding-bottom: 14px;
    margin-top: -8px;
}

.benefits-box__content .title h3 {
    font-size: 30px;
    line-height: 40px;
}

.benefits-box__content .text {
    position: relative;
    display: block;
}

.benefits-box__content .text p {
    margin: 0;
}

.benefits-box__tab-btn {
    position: relative;
    display: block;
    padding-top: 22px;
}

.benefits-box__tab-btn .tabs-button-box {
    position: relative;
    display: block;
    border-radius: var(--thm-border-radius);
    border: 1px solid var(--thm-border-color);
}

.benefits-box__tab-btn .tabs-button-box li {
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--thm-border-color);
    padding: 14px 30px 13px;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
}

.benefits-box__tab-btn .tabs-button-box li:hover,
.benefits-box__tab-btn .tabs-button-box li.active-btn-item {
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.benefits-box__tab-btn .tabs-button-box li:last-child {
    border-bottom: 0px solid transparent;
}

.benefits-box__tab-btn .tabs-button-box li h6 {
    font-size: 16px;
    line-height: 26px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.benefits-box__tab-btn .tabs-button-box li:hover h6,
.benefits-box__tab-btn .tabs-button-box li.active-btn-item h6 {
    color: var(--thm-primary-color);
}

.benefits-box__tab-btn .tabs-button-box li .icon {
    position: relative;
    display: block;
    color: var(--thm-primary-color);
    font-size: 20px;
    line-height: 20px;
    opacity: 0;
    transform: translateX(-10px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.benefits-box__tab-btn .tabs-button-box li:hover .icon,
.benefits-box__tab-btn .tabs-button-box li.active-btn-item .icon {
    opacity: 1;
    transform: translateX(0px);
}



.benefits-box__tab .tabs-content-box {
    position: relative;
    display: block;
}

.benefits-box__tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.benefits-box__tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.benefits-box__tab .tab-content-box-item .benefits-box__content-tab-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.benefits-box__tab .tab-content-box-item.tab-content-box-item-active .benefits-box__content-tab-item {
    opacity: 1;
    transform: translateY(0px);
}

.single-benefits-box {
    position: relative;
    display: block;
}

.single-benefits-box .img-box {
    position: relative;
    display: block;
    overflow: inherit;
}

.single-benefits-box .img-box .inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.single-benefits-box .img-box .inner img {
    width: 100%;
}

.single-benefits-box .img-box .overlay-text {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: -20px;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 33px 40px 32px;
    z-index: 3;
}

.single-benefits-box .img-box .overlay-text p {
    margin: 0;
}



.banner-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--thm-white);
    border-radius: var(--thm-border-radius);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    padding: 25px 30px 25px;
    /*margin-top: 60px;*/
}

.banner-box .title-box {
    position: relative;
    display: flex;
    align-items: center;
}

.banner-box .title-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--thm-gray-bg);
    border-radius: var(--thm-border-radius);
    font-size: 30px;
    line-height: 30px;
}

.banner-box .title-box .icon .icon-enrollment .path1:before {
    color: var(--thm-primary-color);
}

.banner-box .title-box .icon .icon-enrollment .path2:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path3:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path4:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path5:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path6:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path7:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path8:before {
    color: var(--thm-black);
}

.banner-box .title-box .icon .icon-enrollment .path9:before {
    color: var(--thm-black);
}

.banner-box .title-box .title {
    position: relative;
    display: block;
    padding-left: 20px;
    flex: 1;
}

.banner-box .title-box .title h4 {
    font-size: 18px;
    line-height: 28px;
}

.banner-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.banner-box .btn-box .btn-one::before {
    background: var(--thm-primary-color);
}

.banner-box .btn-box .btn-one::after {
    background: var(--thm-black);
}




/*** 
===========================
    Overview Style2 Css
===========================
***/
.overview-style2 {
    padding: 120px 0px 176px;
    background-color: var(--thm-white);
    /*border-bottom: 1px solid var(--thm-border-color);*/
    z-index: 10;
}

.overview-style2-content {
    position: relative;
    display: block;
}

.overview-style2-content .sec-title {
    padding-bottom: 34px;
}

.overview-style2-content .text {
    position: relative;
    display: block;
}

.overview-style2-content .text p {
    margin: 0;
}

.overview-style2-content .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    padding-top: 39px;
}

.overview-style2-content .btn-box .btn-one::before {
    background-color: var(--thm-primary-color);
}

.overview-style2-content .btn-box .btn-one::after {
    background-color: var(--thm-black-bg);
}



.overview-style2-list {
    position: relative;
    display: block;
    padding-left: 70px;
}

.overview-style2-list .scrolling-text {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    overflow: hidden;
    writing-mode: vertical-rl;
    transform: translateY(0%) rotate(180deg);
    border-right: 1px solid var(--thm-border-color);
    padding: 25px 0px 0px;
    padding-right: 13px;
}

.overview-style2-list .scrolling-text h2 {
    color: #e2e9e6;
    font-size: 36px;
    line-height: 1.1em;
    text-transform: uppercase;
}

.overview-style2-list .list-item {
    position: relative;
    display: block;
    border-left: 1px solid var(--thm-border-color);
}

.overview-style2-list .list-item li {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 25px 30px 25px;
    border-bottom: 1px solid var(--thm-border-color);
}

.overview-style2-list .list-item li:first-child {
    padding-top: 0;
}

.overview-style2-list .list-item li:last-child {
    padding-bottom: 0;
    border-bottom: 0px solid transparent;
}

.overview-style2-list .list-item li .icon {
    position: relative;
    display: block;
    font-size: 35px;
    top: 4px;
}

.overview-style2-list .list-item li .icon .icon-done .path1::before {
    color: var(--thm-border-color);
}

.overview-style2-list .list-item li .icon .icon-done .path2::before {
    color: var(--thm-primary-color);
}

.overview-style2-list .list-item li .title-box {
    position: relative;
    display: block;
    padding-left: 15px;
    flex: 1;
}

.overview-style2-list .list-item li .title-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 5px;
}

.overview-style2-list .list-item li .title-box p {
    margin: 0;
}

.overview-style2 .big-title {
    position: absolute;
    left: 0;
    bottom: -30px;
    right: 0;
    text-align: center;
    padding-top: 28px;
}

.overview-style2 .big-title h1 {
    font-size: 150px;
    list-style: 1.0em;
    font-weight: 800;
    text-transform: uppercase;
    background-image: linear-gradient(to bottom, #f0f7f3 40%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.overview-style2 .big-title .icon {
    position: absolute;
    left: 0;
    bottom: -10px;
    right: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--thm-white);
    border: 1px solid var(--thm-border-color);
    color: var(--thm-black);
    font-size: 20px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 5;
}

.overview-style2 .big-title .icon:hover {
    color: var(--thm-white);
    background-color: var(--thm-primary-color);
    border-color: var(--thm-primary-color);
}



/*** 
======================================
    Service Style1--style2 Css
======================================
***/
.service-style1--style2 {
    background-color: var(--thm-white);
    padding: 140px 0px 90px;
}

.single-service-style1--style2 {
    background-color: transparent;
    border: 1px solid var(--thm-border-color);
    margin-bottom: 30px;
}

.single-service-style1__icon .icon-seat-belt .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-seat-belt .path1:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-seat-belt .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-seat-belt .path2:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-seat-belt .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-seat-belt .path3:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-seat-belt .path4:before {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-seat-belt .path4:before {
    color: var(--thm-white);
}



.single-service-style1__icon .icon-driver .path1:before {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-driver .path1:before {
    color: var(--thm-white);
}


.single-service-style1__icon .icon-driver .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-driver .path2:before {
    color: var(--thm-white);
}


.single-service-style1__icon .icon-online-course .path1:before {
    color: var(--thm-primary-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path1:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path2:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path3:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path4:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path4:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path5:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path5:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path6:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path6:before {
    color: var(--thm-white);
}

.single-service-style1__icon .icon-online-course .path7:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style1:hover .single-service-style1__icon .icon-online-course .path7:before {
    color: var(--thm-white);
}



.single-service-style1--style2 .single-service-style1__text {
    padding: 24px 20px 24px;
}





/*** 
======================================
    Service Page Two Css
======================================
***/
.service-style3--style2 {
    background-color: var(--thm-black-bg);
    padding: 120px 0px 90px;
}

.service-style3--style2 .service-style3__bg {
    opacity: 0.03;
    mix-blend-mode: luminosity;
}

.service-style3--style2 .service-style3__bg:before {
    display: none;
}


.single-service-style3--style2 {
    border-color: rgb(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.single-service-style3--style2 .top-box .icon::after {
    background: linear-gradient(180deg, rgba(4, 191, 97, 1) 0%, rgba(26, 55, 58, 1) 100%);
}

.single-service-style3--style2 .top-box .count h2 {
    color: #3c585b;
}

.single-service-style3--style2 .content-box .text p {
    color: #a5b9bb;
}



.single-service-style3 .top-box .icon .icon-seat-belt .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-seat-belt .path1:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-seat-belt .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-seat-belt .path2:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-seat-belt .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-seat-belt .path3:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-seat-belt .path4:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-seat-belt .path4:before {
    color: var(--thm-primary-color);
}



.single-service-style3 .top-box .icon .icon-driver .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driver .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-driver .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-driver .path2:before {
    color: var(--thm-black);
}



.single-service-style3 .top-box .icon .icon-online-course .path1:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style3 .top-box .icon .icon-online-course .path2:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path2:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-online-course .path3:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path3:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-online-course .path4:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path4:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-online-course .path5:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path5:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-online-course .path6:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path6:before {
    color: var(--thm-black);
}

.single-service-style3 .top-box .icon .icon-online-course .path7:before {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-service-style3:hover .top-box .icon .icon-online-course .path7:before {
    color: var(--thm-black);
}




/*** 
===========================
    Blog Page Three Css
===========================
***/
.overview-style2--style3 {
    padding: 60px 0px 30px;
}



.single-service-style4 .img-box .overlay-icon .icon-seat-belt .path1:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-seat-belt .path2:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-seat-belt .path3:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-seat-belt .path4:before {
    color: var(--thm-primary-color);
}



.single-service-style4 .img-box .overlay-icon .icon-driver .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-driver .path2:before {
    color: var(--thm-black);
}



.single-service-style4 .img-box .overlay-icon .icon-online-course .path1:before {
    color: var(--thm-primary-color);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path2:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path3:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path4:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path5:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path6:before {
    color: var(--thm-black);
}

.single-service-style4 .img-box .overlay-icon .icon-online-course .path7:before {
    color: var(--thm-black);
}




.service-style4-content {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    border-radius: var(--thm-border-radius);
    padding: 30px 30px 30px;
    max-width: 570px;
    margin-bottom: 30px;
}

.service-style4-content .row {
    --bs-gutter-x: 0px;
}

.service-style4-content .service-style4-banner {
    overflow: visible;
    background-color: transparent;
    padding: 17px 0px 30px;
    padding-right: 30px;
    width: 255px;
}

.service-style4-content .service-style4-banner .btn-box .btn-one::before {
    background: var(--thm-primary-color);
}

.service-style4-content .service-style4-banner .shape1 {
    top: -10px;
    left: 0px;
}

.service-style4-content .service-style4-banner .shape2 {
    right: 30px;
    bottom: -10px;
}

.service-style4-banner-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--thm-border-radius);
}

.service-style4-banner-img img {
    width: 100%;
}





/*** 
=============================================
    End Css
=============================================
***/


@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    /*======== Home One =========*/
    .footer-style1__top-inner-left {
        max-width: 690px;
    }

    .footer-style1__top-inner-left li .title-box {
        padding-left: 20px;
    }

    .footer-style1__top-inner-right .btn-box {
        padding: 22px 25px 22px;
    }

    .footer-style1__top-inner-right {
        flex: none;
    }


    /*======== Home Three =========*/
    .testimonial-style3-carousel .owl-dots {
        display: none;
    }



    /*============= Home Four ==============*/
    .project-style3__inner li {
        width: 25%;
    }










}




@media only screen and (min-width: 1200px) and (max-width: 1360px) {

    /*============= Home One ==============*/

    .service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        transform: translateY(0);
        width: 130px;
        margin: 60px auto 0px;
    }




}







/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /*======== Home One =========*/
    .about-style1-img {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-style1-content {
        padding-top: 60px;
    }

    .about-style1-achivements {
        max-width: 570px;
    }



    .courses-style1__content {
        max-width: 700px;
        margin: 0 0px 50px;
    }



    .single-service-style1__text {
        padding: 24px 20px 24px;
    }

    .service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        left: -35px;
        right: -35px;
    }


    .single-process-style1 {
        max-width: 260px;
        margin: 0px auto 60px;
    }


    .why-choose-style1__content {
        margin-right: 0;
        border-right: none;
    }

    .why-choose-style1__img-box {
        position: relative;
        margin: 0 auto;
    }

    .why-choose-style1__content ul li {
        padding-right: 0px;
    }

    .why-choose-style1__content ul li:last-child {
        border-bottom: 1px solid #2f5154;
    }

    .why-choose-style1__img-shape {
        top: auto;
        bottom: 0;
    }

    .why-choose-style1__img-box {
        z-index: 5;
    }

    .why-choose-style1__img {
        padding-top: 70px;
        margin-top: 60px;
    }



    .slogan-style1__content {
        text-align: center;
    }

    .appointment-form-style1 {
        margin-top: 53px;
    }



    .blog-style1 .row {
        justify-content: center;
    }



    .footer-style1__top-inner {
        flex-direction: column;
    }

    .footer-style1__top-inner-right .btn-box {
        margin-top: 30px;
    }

    .footer-style1__top-inner-right .shape {
        display: none;
    }


    .footer-main {
        padding: 120px 0px 52px;
    }

    .footer-main .container .row {
        justify-content: center;
    }

    .single-footer-widget {
        margin-bottom: 60px;
    }



    /*============ Home Two ==============*/
    .service-style2 {
        padding: 60px 0px 60px;
    }

    .service-style2__img .inner::before {
        max-width: 375px;
    }

    .service-style2__img {
        max-width: 545px;
    }

    .service-style2__contant {
        padding-left: 0px;
        padding-top: 60px;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        flex-direction: row;
        top: auto;
        left: 0;
        width: 160px;
        height: 60px;
        transform: translateY(0%);
        margin: 40px auto 0;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav::before {
        display: none;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
        margin: 0px 5px;
    }



    .fact-counter-style1 {
        padding: 110px 0px 65px;
    }

    .fact-counter-style1 .container {
        max-width: 900px;
    }

    .single-fact-counter-style1 {
        margin-bottom: 50px;
    }




    .technology-style1 {
        padding: 85px 0px 80px;
    }

    .technology-style1__top-title {
        width: calc((100% + 0px) / 1);
        top: -28px;
    }

    .technology-style1::before {
        width: calc((100% + 0px) / 1);
    }

    .technology-style1__bg {
        position: relative;
        width: calc((100% - 0px) / 1);
        height: 520px;
        top: 0;
    }

    .technology-style1__bottom-title {
        width: calc((100% + 0px) / 1);
        bottom: auto;
        top: 577px;
    }

    .technology-style1__content {
        padding-left: 0px;
        padding-top: 140px;
    }


    .blog-style2__single-content {
        padding: 40px 30px 0px;
    }

    .blog-style2 .container {
        max-width: 770px;
    }

    .blog-style2__title {
        margin-right: 0px;
    }

    .blog-style2__inner {
        padding-top: 60px;
    }

    .blog-style2__inner.pdt0 {
        padding-top: 0;
    }



    .lacation-style1 {
        padding: 0px 0 120px;
    }

    .lacation-style1__map {
        position: relative;
        top: 0;
        left: 0;
        bottom: auto;
        right: 0;
        width: calc((100% - 0px) / 1);
        height: 550px;
        margin-bottom: -380px;
    }

    .lacation-style1__map-box {
        height: 550px;
    }

    .lacation-style1__tab {
        display: block;
    }

    .lacation-style1__tab-button {
        padding-left: 0px;
        padding-top: 80px;
    }



    .faq-style1__left-content {
        max-width: 100%;
        margin-bottom: 53px;
    }



    .testimonial-style2__quote {
        display: none;
    }

    .testimonial-style2__single .contant-box {
        margin-left: 30px;
        padding: 70px 70px 0px;
    }

    .testimonial-style2__single .contant-box>.text {
        padding-bottom: 65px;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        left: 0;
        right: 0;
        transform: translateX(0%);
        text-align: center;
        margin: 10px auto 0;
    }

    .testimonial-style2 .section-btn {
        margin-top: 60px;
    }



    .footer-style2__top-left {
        border: 1px solid #3f556d;
        border-bottom: none;
        border-radius: var(--thm-border-radius);
        padding: 31px 30px 31px;
        justify-content: space-between;
    }

    .footer-style2__top .phone-box {
        flex: none;
    }

    .footer-style2__top-right {
        border: 1px solid #3f556d;
        padding: 10px 10px 10px;
        width: 570px;
        margin: 0 auto;
    }

    .footer-main-style2 {
        padding: 120px 0px 52px;
    }

    .single-widget-two {
        margin-bottom: 60px;
    }



    /*======== Home Three =========*/
    .about-style3__img {
        max-width: 570px;
        margin: 0 auto;
    }

    .about-style3__content {
        padding-right: 0px;
        margin-top: 58px;
    }



    .service-style3__inner {
        margin-top: 53px;
    }

    .service-style3-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
        margin-right: 0px;
    }



    .choose-style2 {
        padding: 120px 0px 112px;
    }

    .single-choose-style2-box {
        max-width: 570px;
        margin: 0 auto;
    }

    .choose-style2__img {
        margin: 50px auto 50px;
    }



    .video-library-style1__title {
        margin: 0px auto 70px;
    }

    .vertical-slider-style1__thumb-outer {
        max-width: 170px;
        margin: 0;
    }

    .video-library-style1__single {
        max-width: 570px;
        margin: 0px auto 0;
    }



    .what-you-learn-style1__left {
        margin: 0 auto;
    }

    .what-you-learn-style1__right {
        padding-top: 110px;
        max-width: 700px;
        margin: 0 auto 0;
    }



    .project-style2 .row {
        justify-content: center;
    }



    .testimonial-style3-carousel .owl-dots {
        display: none;
    }



    .single-blog-style3-outer {
        max-width: 570px;
        margin: 0 auto 50px;
    }

    .single-blog-style3 {
        max-width: 570px;
        margin: 0 auto;
    }

    .blog-style3__content>li+li {
        margin-top: 50px;
    }



    .footer-main-style3 {
        padding: 120px 0px 54px;
    }

    .footer-main-style3 .single-widget {
        margin-bottom: 60px;
    }







    /*========== Home Four ==========*/
    .service-style4 {
        padding: 60px 0px 60px;
    }

    .service-style4 .container {
        max-width: 700px;
    }

    .service-style4 .row {
        justify-content: center;
    }

    .service-style4-banner {
        margin: 0 auto;
    }



    .courses-style3__title-box {
        margin-bottom: 60px;
    }

    .courses-style3__title-box .sec-title {
        padding-bottom: 23px;
    }

    .courses-style3__title-box .sec-title h2 br {
        display: none;
    }



    .single-training-car-style1 .title-box h3 {
        font-size: 17px;
    }



    .project-style3__inner li {
        width: 50%;
    }



    .footer-main-style4 {
        margin: -100px 20px 0px;
        padding: 160px 0px 45px;
    }

    .footer-main-style4 .single-widget {
        margin-bottom: 60px;
    }

    .footer-widget-links-style4 {
        max-width: 260px;
    }



    /*============ About ==============*/
    .statement-style1__tab {
        padding-left: 0px;
    }

    .statement-style1__tab-btn {
        position: relative;
        max-width: 290px;
        margin-bottom: 23px;
    }

    .statement-style1__tab-btn .tabs-button-box {
        display: flex;
        align-items: center;
    }

    .statement-style1__tab-btn .tabs-button-box li {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 50%;
        height: 155px;
        cursor: pointer;
    }

    .statement-style1__tab-btn .tabs-button-box li+li {
        border-top: 0px solid transparent;
        border-left: 1px solid #2f5154;
    }



    /*============ History ==============*/
    .single-history-style1::before {
        display: none;
    }



    /*============ Courses Details ==============*/
    .intro-style1-content {
        max-width: 100%;
        padding-bottom: 53px;
    }

    .intro-style1-content .big-title h2 br {
        display: none;
    }

    .intro-style1-classes {
        margin-top: 30px;
    }

    .single-intro-style1-classes ul {
        flex-direction: column;
    }

    .single-intro-style1-classes ul li::before {
        display: none;
    }

    .single-intro-style1-classes ul li+li {
        margin-left: 0px;
        margin-top: 23px;
    }

    .intro-style1-img {
        padding-top: 50px;
        margin-right: 0px;
    }




    /*============ Service Details ==============*/
    .learning-journey-list {
        margin-top: 30px;
    }

    .benefits-box__content {
        margin-right: 0px;
    }

    .benefits-box__tab .tabs-content-box {
        margin-top: 30px;
    }

    .banner-box {
        display: block;
        padding: 25px 25px 25px;
    }

    .banner-box .btn-box {
        padding-top: 20px;
    }



    /*============ Blog Single ==============*/
    .blog-author-box {
        padding: 30px 25px 26px;
    }

    .blog-author .text-box__top .left h3 {
        font-size: 18px;
        line-height: 28px;
    }

    .blog-prev-next-option .single-box .title-box h3 {
        font-size: 14px;
        line-height: 24px;
    }

    .sidebar-box-style2 {
        margin-left: 0px;
    }


    /*============ Contact ==============*/
    .single-contact-info-style3 {
        padding: 0px 130px 0px;
        padding-right: 0;
    }

    .single-contact-info-style3 .icon {
        width: 130px;
    }

    .single-contact-info-style3 .text {
        left: 110px;
    }

    .single-contact-info-style3 .content-box {
        padding: 33px 35px 31px;
        padding-right: 10px;
    }

    .main-contact-form__inner {
        padding: 52px 60px 80px;
    }



    /*============ Courses-1  ==============*/
    .single-overview-style1__inner {
        padding: 50px 10px 42px;
    }




    /*============ Services-1  ==============*/
    .overview-style2 .big-title h1 {
        font-size: 120px;
    }



    /*============ Services-3 ==============*/
    .service-style4--style4 .container {
        max-width: none;
    }

    .service-style4--style4 .row {
        justify-content: center;
    }

    .service-style4-content {
        margin-bottom: 0px;
    }





    /*============ Blog-3 ==============*/
    .blog-style3__overlay-content .meta-box .meta-info {
        display: block;
    }

    .blog-style3__overlay-content .meta-box .meta-info li+li {
        margin-left: 0px;
        margin-top: 5px;
    }

    .sidebar-box-style2 {
        margin-left: 0px;
    }



    /*============ Blog-4 ==============*/
    .blog-style2__single-img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0;
    }

    .blog-style2__single-content {
        margin-left: 0px;
    }




    .faq-page-one__content {
        margin-right: 0px;
        max-width: 770px;
    }

    .faq-page-one__tab .tabs-content-box {
        margin-top: 50px;
        margin-left: 0px;
    }

    .faq-page-one__tab .tabs-content-box::before {
        display: none;
    }

































}









/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    /*======== Default Css =========*/
    .sec-title p br {
        display: none;
    }

    .coming-soon-page-style1 {
        height: auto !important;
        padding: 110px 0 120px;
    }

    .coming-soon-page-style1__content .big-title {
        font-size: 50px;
        line-height: 60px;
    }

    .timer-box .countdown-timer li {
        float: none;
    }

    .timer-box .countdown-timer li+li {
        margin-top: 20px;
    }

    .coming-soon-page-style1__content {
        top: 0%;
        transform: translateY(0%);
    }

    .subscribe-box-style1 {
        max-width: 370px;
    }

    .subscribe-box-style1 form input[type="email"] {
        padding-left: 30px;
        padding-right: 30px;
    }

    .subscribe-box-style1 form button {
        position: relative;
        top: 0px;
        left: 0;
        right: 0px;
        bottom: 0px;
        width: 100%;
        margin-top: 20px;
    }

    .project-menu-box ul li span {
        font-size: 13px;
        padding: 17px 17px 17px;
    }

    .project-menu-box li .count {
        top: 6px;
        right: 8px;
        font-size: 12px;
        line-height: 12px;
        font-weight: 400;
    }

    /*======== Home One =========*/
    .about-style1-img {
        margin-right: 0px;
    }

    .about-style1-content {
        padding-top: 60px;
    }



    .courses-style1__content {
        max-width: 700px;
        margin: 0 auto 50px;
    }

    .courses-style1-img-outer__left {
        padding: 25px 30px 25px;
    }

    .courses-style1-img-outer__left ul li+li {
        margin-left: 70px;
    }

    .courses-style1-img-outer__left ul li::before {
        display: none;
    }


    .service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        left: -30px;
        right: -30px;
    }


    .single-process-style1 {
        max-width: 260px;
        margin: 0px auto 60px;
    }



    .why-choose-style1__content {
        margin-right: 0;
        border-right: none;
    }

    .why-choose-style1__img-box {
        position: relative;
        margin: 0 auto;
    }

    .why-choose-style1__content ul li {
        padding-right: 0px;
    }

    .why-choose-style1__content ul li:last-child {
        border-bottom: 1px solid #2f5154;
    }

    .why-choose-style1__img-shape {
        top: auto;
        bottom: 0;
    }

    .why-choose-style1__img-box {
        z-index: 5;
    }

    .why-choose-style1__img {
        padding-top: 70px;
        margin-top: 60px;
    }



    .slogan-style1__content {
        text-align: center;
    }

    .appointment-form-style1 {
        margin-top: 53px;
    }



    .blog-style1 .row {
        justify-content: center;
    }

    .single-blog-style1__overlay-content .meta-box .meta-info li::before {
        display: none;
    }

    .single-blog-style1__overlay-content .meta-box .meta-info li+li {
        margin-left: 10px;
    }



    .testimonial-style1 .sec-title {
        padding-bottom: 120px;
    }

    .testimonial-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -90px;
        left: 0;
        right: auto;
    }



    .footer-style1__top-inner {
        flex-direction: column;
        padding: 54px 20px 55px;
    }

    .footer-style1__top-inner-right .btn-box {
        margin-top: 30px;
    }

    .footer-style1__top-inner-right .shape {
        display: none;
    }

    .footer-main {
        padding: 120px 0px 52px;
    }

    .footer-main .container .row {
        justify-content: center;
    }

    .single-footer-widget {
        margin-bottom: 60px;
    }

    .footer-bottom .bottom-inner {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-menu {
        padding-top: 9px;
    }



    /*============= Home Two =============*/
    .awards-style1__inner {
        padding-left: 0px;
    }

    .awards-style1__title {
        position: relative;
        max-width: none;
        text-align: center;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0px;
        padding: 30px 40px 27px;
    }

    .awards-style1__title .top-title {
        padding-left: 0px;
    }

    .awards-style1__title .top-title .icon {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 10px;
    }

    .awards-style1__content {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 5px;
    }



    .service-style2 {
        padding: 60px 0px 60px;
    }

    .service-style2__img .inner::before {
        max-width: 375px;
    }

    .service-style2__img {
        max-width: 545px;
    }

    .service-style2__contant {
        padding-left: 0px;
        padding-top: 60px;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        flex-direction: row;
        top: auto;
        left: 0;
        width: 160px;
        height: 60px;
        transform: translateY(0%);
        margin: 40px auto 0;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav::before {
        display: none;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
        margin: 0px 5px;
    }



    .fact-counter-style1 {
        padding: 110px 0px 65px;
    }

    .fact-counter-style1 .container {
        max-width: 700px;
    }

    .single-fact-counter-style1 {
        margin-bottom: 50px;
    }



    .technology-style1 {
        padding: 85px 0px 80px;
    }

    .technology-style1__top-title {
        width: calc((100% + 0px) / 1);
        top: -28px;
    }

    .technology-style1::before {
        width: calc((100% + 0px) / 1);
    }

    .technology-style1__bg {
        position: relative;
        width: calc((100% - 0px) / 1);
        height: 520px;
        top: 0;
    }

    .technology-style1__bottom-title {
        width: calc((100% + 0px) / 1);
        bottom: auto;
        top: 577px;
    }

    .technology-style1__content {
        padding-left: 0px;
        padding-top: 140px;
    }


    .blog-style2__single-content {
        padding: 40px 20px 0px;
    }

    .blog-style2 .container {
        max-width: 770px;
    }

    .blog-style2__title {
        margin-right: 0px;
    }

    .blog-style2__inner {
        padding-top: 60px;
    }

    .blog-style2__inner.pdt0 {
        padding-top: 0px;
    }

    .blog-style2__single-img {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        margin-right: 0px;
    }

    .blog-style2__single-content {
        margin-left: 0px;
    }



    .lacation-style1 {
        padding: 0px 0 120px;
    }

    .lacation-style1__map {
        position: relative;
        top: 0;
        left: 0;
        bottom: auto;
        right: 0;
        width: calc((100% - 0px) / 1);
        height: 550px;
        margin-bottom: -380px;
    }

    .lacation-style1__map-box {
        height: 550px;
    }

    .lacation-style1__tab {
        display: block;
    }

    .lacation-style1__tab-button {
        padding-left: 0px;
        padding-top: 80px;
    }



    .faq-style1__left-content {
        max-width: 100%;
        margin-bottom: 53px;
    }




    .testimonial-style2 .container {
        max-width: 500px;
    }

    .testimonial-style2__single {
        display: block;
    }

    .testimonial-style2__quote {
        display: none;
    }

    .testimonial-style2__single .contant-box {
        margin-left: 0px;
        padding: 40px 30px 0px;
    }

    .testimonial-style2__single .contant-box>.text {
        padding-bottom: 35px;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        left: 0;
        right: 0;
        transform: translateX(0%);
        text-align: center;
        margin: 10px auto 0;
    }

    .testimonial-style2 .section-btn {
        margin-top: 60px;
    }

    .testimonial-style2__single .contant-box .shape1 {
        top: 0px;
        left: 0px;
    }

    .testimonial-style2__single .contant-box .shape2 {
        right: 0px;
    }



    .footer-style2__top-left {
        border: 1px solid #3f556d;
        border-bottom: none;
        border-radius: var(--thm-border-radius);
        padding: 31px 30px 31px;
        justify-content: space-between;
    }

    .footer-style2__top .phone-box {
        flex: none;
    }

    .footer-style2__top-right {
        border: 1px solid #3f556d;
        padding: 10px 10px 10px;
        width: 570px;
        margin: 0 auto;
    }

    .footer-main-style2 {
        padding: 120px 0px 52px;
    }

    .single-widget-two {
        margin-bottom: 60px;
    }



    /*======== Home Three =========*/
    .about-style3__img {
        max-width: 570px;
        margin: 0 auto;
    }

    .about-style3__content {
        padding-right: 0px;
        margin-top: 58px;
    }



    .service-style3__inner {
        margin-top: 53px;
    }

    .service-style3-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
        margin-right: 0px;
    }

    .single-service-style3 {
        padding: 49px 20px 41px;
    }


    .choose-style2 {
        padding: 120px 0px 112px;
    }

    .single-choose-style2-box {
        max-width: 570px;
        margin: 0 auto;
    }

    .choose-style2__img {
        margin: 60px auto 60px;
    }



    .video-library-style1__title {
        margin: 0px auto 70px;
    }

    .vertical-slider-style1__thumb-outer {
        max-width: 170px;
        margin: 0;
    }

    .video-library-style1__single {
        max-width: 570px;
        margin: 0px auto 0;
    }


    .what-you-learn-style1__right {
        padding-top: 110px;
        max-width: 700px;
        margin: 0 auto 0;
    }



    .project-style2 .row {
        justify-content: center;
    }

    .single-project-style2__img-overlay-content .title h3 {
        font-size: 18px;
        line-height: 28px;
    }



    .testimonial-style3-carousel .owl-dots {
        display: none;
    }



    .blog-style3__top {
        display: block;
    }

    .blog-style3__top .btn-box {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .single-blog-style3-outer {
        margin-bottom: 50px;
    }

    .blog-style3__content>li+li {
        margin-top: 50px;
    }

    .contact-style1 .container {
        max-width: 900px;
    }

    .footer-main-style3 {
        padding: 120px 0px 54px;
    }

    .our-company-info-box-style2 {
        padding-right: 0px;
    }

    .our-company-info-box-style2 .fact-box {
        display: block;
    }

    .our-company-info-box-style2 .fact-box .right {
        padding-left: 0;
        padding-top: 10px;
    }

    .footer-main-style3 .single-widget {
        margin-bottom: 60px;
    }

    .footer-bottom-style3 .bottom-inner {
        flex-direction: column;
    }

    .footer-social-links-style3 {
        margin: 7px 0px 7px;
    }

    .footer-social-links-style3 ul li+li {
        margin-left: 20px;
    }



    /*========== Home Four ==========*/
    .service-style4 {
        padding: 60px 0px 60px;
    }

    .service-style4 .container {
        max-width: 700px;
    }

    .service-style4 .row {
        justify-content: center;
    }

    .service-style4-banner {
        margin: 0 auto;
    }



    .courses-style3__title-box {
        margin-bottom: 60px;
    }

    .courses-style3__title-box .sec-title {
        padding-bottom: 23px;
    }

    .courses-style3__title-box .sec-title h2 br {
        display: none;
    }



    .training-car-style1 .row {
        justify-content: center;
    }



    .choose-style3 .sec-title {
        padding-bottom: 120px;
    }

    .choose-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -100px;
        left: 0;
    }



    .project-style3__inner li {
        width: 50%;
    }



    .footer-main-style4 {
        margin: -100px 20px 0px;
        padding: 160px 0px 45px;
    }

    .footer-main-style4 .single-widget {
        margin-bottom: 60px;
    }

    .footer-widget-links-style4 {
        max-width: 260px;
    }

    .footer-bottom-style4 .bottom-inner {
        flex-direction: column;
    }

    .copyright-text-style4 {
        text-align: center;
        padding-bottom: 5px;
    }



    /*============ About ==============*/
    .statement-style1__tab {
        padding-left: 0px;
    }

    .statement-style1__tab-btn {
        position: relative;
        max-width: 290px;
        margin-bottom: 23px;
    }

    .statement-style1__tab-btn .tabs-button-box {
        display: flex;
        align-items: center;
    }

    .statement-style1__tab-btn .tabs-button-box li {
        width: 50%;
    }

    .statement-style1__tab-btn .tabs-button-box li+li {
        border-top: 0px solid transparent;
        border-left: 1px solid #2f5154;
    }



    .certification-style1 .sec-title {
        padding-bottom: 120px;
    }

    .single-certification-style1 .certificate-box {
        margin-top: 0px;
    }

    .certification-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -100px;
        left: 0;
    }



    /*============ History ==============*/
    .history-style1 {
        padding: 100px 0 100px;
    }

    .history-style1__content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .history-style1__content-inner ul li+li {
        margin-top: 50px;
    }

    .history-style1__content-inner.right {
        padding-top: 50px;
    }

    .history-style1__content-border-line {
        display: none;
    }

    .single-history-style1::before {
        display: none;
    }




    /*============ Courses Details ==============*/
    .intro-style1-content {
        max-width: 100%;
        padding-bottom: 53px;
    }

    .intro-style1-content .big-title h2 br {
        display: none;
    }

    .intro-style1-classes {
        margin-top: 30px;
    }

    .single-intro-style1-classes ul {
        flex-direction: column;
    }

    .single-intro-style1-classes ul li::before {
        display: none;
    }

    .single-intro-style1-classes ul li+li {
        margin-left: 0px;
        margin-top: 23px;
    }

    .intro-style1-img {
        padding-top: 50px;
        margin-right: 0px;
    }




    /*============ Service Details ==============*/
    .sidebar-style1 {
        padding-right: 0;
        max-width: 570px;
    }

    .service-page-content {
        padding-bottom: 60px;
    }

    .learning-journey-list {
        margin-top: 30px;
    }

    .benefits-box__tab .tabs-content-box {
        margin-top: 30px;
    }

    .banner-box {
        display: block;
        padding: 25px 25px 25px;
    }

    .banner-box .btn-box {
        padding-top: 20px;
    }



    /*============ Blog Single ==============*/
    .sidebar-box-style2 {
        margin-left: 0;
        max-width: 600px;
        width: 100%;
        margin-top: 50px;
    }



    /*============ Contact ==============*/
    .main-contact-form__inner {
        padding: 52px 60px 80px;
    }




    /*============ Courses-1  ==============*/
    .overview-style1__right {
        padding-top: 60px;
    }

    .single-overview-style1__inner {
        padding: 50px 20px 42px;
    }



    /*============ Courses-2  ==============*/
    .single-courses-style2__overlay {
        transform: translateY(95px);
    }



    /*============ Services-1  ==============*/
    .overview-style2-content {
        max-width: 600px;
    }

    .overview-style2-list {
        max-width: 600px;
        margin: 50px auto 0;
    }

    .overview-style2 .big-title h1 {
        font-size: 90px;
    }



    .single-service-style1--style2 {
        padding: 23px 18px 30px;
    }

    .single-service-style1--style2 .single-service-style1__text {
        padding: 24px 15px 24px;
    }

    .single-service-style1__icon {
        left: -30px;
    }



    /*============ Services-3 ==============*/
    .service-style4--style4 .container {
        max-width: none;
    }

    .service-style4-content {
        margin-bottom: 0px;
    }



    .faq-page-one__content {
        margin-right: 0px;
        max-width: 770px;
    }

    .faq-page-one__tab .tabs-content-box {
        margin-top: 50px;
        margin-left: 0px;
    }

    .faq-page-one__tab .tabs-content-box::before {
        display: none;
    }




    .breadcrumb-style1 .inner-content {
        padding: 280px 0px 163px;
    }

    .breadcrumb-style1 .title h2 {
        font-size: 40px;
    }
























































}





/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    /*======== Default Css =========*/
    .sec-title {
        padding-bottom: 20px;
    }

    .sec-title h2 {
        font-size: 32px;
        line-height: 1.3em;
    }

    .sec-title h2 br {
        display: none;
    }

    .sec-title p br {
        display: none;
    }

    .error-content .big-title h2 {
        font-size: 120px;
        line-height: 100px;
    }

    .error-content .title h2 {
        font-size: 40px;
        line-height: 50px;
        font-weight: 700;
    }

    .error-content .text p br {
        display: none;
    }

    .coming-soon-page-style1 {
        height: auto !important;
        padding: 110px 0 120px;
    }

    .coming-soon-page-style1__content .big-title {
        font-size: 40px;
        line-height: 50px;
    }

    .timer-box .countdown-timer li {
        float: none;
    }

    .timer-box .countdown-timer li+li {
        margin-top: 20px;
    }

    .coming-soon-page-style1__content {
        top: 0%;
        transform: translateY(0%);
        padding: 0 20px;
    }

    .subscribe-box-style1 {
        max-width: 370px;
    }

    .subscribe-box-style1 form input[type="email"] {
        padding-left: 30px;
        padding-right: 30px;
    }

    .subscribe-box-style1 form button {
        position: relative;
        top: 0px;
        left: 0;
        right: 0px;
        bottom: 0px;
        width: 100%;
        margin-top: 20px;
    }

    .project-filter {
        flex-direction: column;
    }

    .project-filter li {
        float: none;
        margin: 0px 0px 0px;
    }

    .project-filter li+li {
        margin-top: 10px;
    }

    .styled-pagination li+li {
        margin-left: 5px;
    }

    /*======== Home One =========*/
    .about-style1-img {
        margin-right: 0px;
    }

    .about-style1-img .inner {
        margin-left: 0px;
    }

    .about-style1-total-leaners {
        left: 30px;
        bottom: 180px;
        max-width: 190px;
        width: 100%;
        margin: 0;
    }

    .about-style1-experience {
        position: relative;
        writing-mode: lr-tb;
        transform: translateY(0%) rotate(0deg);
        background-image: -moz-linear-gradient(0deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
        background-image: -webkit-linear-gradient(0deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
        background-image: -ms-linear-gradient(0deg, rgb(238, 246, 242) 0%, rgb(255, 255, 255) 100%);
        padding: 22px 40px 22px;
        padding-right: 40px;
        max-width: 400px;
        width: 100%;
        margin: 30px auto 0;
    }

    .about-style1-experience .title {
        margin: 0px 0px 0px;
    }

    .about-style1-experience .text {
        padding-left: 20px;
    }

    .about-style1-content {
        padding-top: 60px;
    }

    .about-style1-achivements {
        display: block;
        text-align: center;
        padding: 40px 25px 40px;
    }

    .about-style1-achivements::before {
        display: none;
    }

    .about-style1-achivements-title {
        padding: 20px 0px 15px;
    }

    .about-style1-authorized {
        justify-content: center;
    }



    .courses-style1__content {
        margin-right: 0;
        margin-bottom: 50px;
    }

    .courses-style1-img-outer {
        display: block;
        padding-right: 0;
    }

    .courses-style1-img-outer__left ul {
        display: block;
    }

    .courses-style1-img-outer__left ul li+li {
        margin-left: 0px;
        margin-top: 28px;
    }

    .courses-style1-img-outer__right {
        position: relative;
    }

    .courses-style1__img-overlay-title {
        left: 20px;
        bottom: 65px;
    }

    .courses-style1__img-overlay-title h3 {
        font-size: 20px;
        line-height: 30px;
    }



    .service-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: translateY(0%);
        justify-content: center;
        z-index: 1;
        margin-top: 30px;
    }


    .section-btn-inner p {
        display: inline-block;
    }



    .single-process-style1--style2 {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }


    .single-process-style1 {
        max-width: 260px;
        margin: 0px auto 60px;
    }




    .why-choose-style1__content {
        margin-right: 0;
        border-right: none;
        text-align: center;
    }

    .why-choose-style1__img-box {
        position: relative;
        margin: 0 auto;
    }

    .why-choose-style1__content ul li {
        padding-right: 0px;
        display: block;
    }

    .why-choose-style1__content ul li:last-child {
        border-bottom: 1px solid #2f5154;
    }

    .why-choose-style1__img-shape {
        top: auto;
        bottom: 0;
    }

    .why-choose-style1__img-box {
        z-index: 5;
    }

    .why-choose-style1__img {
        padding-top: 50px;
        margin-top: 40px;
    }

    .why-choose-style1__content ul li .title-box {
        max-width: 100%;
        width: 100%;
        padding: 40px 40px 21px;
        padding-right: 40px;
        border-right: 0px solid #2f5154;
    }

    .why-choose-style1__content ul li .text-box {
        padding: 0px 40px 35px;
        padding-right: 40px;
    }

    .why-choose-style1__img .big-title {
        font-size: 30px;
        padding-top: 0px;
    }

    .why-choose-style1__img-box .logo-box {
        display: none;
    }



    .single-team-style1-inner {
        margin-right: 0px;
        text-align: center;
    }

    .single-team-style1-img {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        width: 250px;
        margin: 0 auto;
    }

    .single-team-style1-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 27px;
    }

    .single-team-style1-btn {
        margin-top: 13px;
    }

    .single-team-style1-border {
        width: 250px;
        margin: 0 auto;
    }



    .slogan-style1__content {
        text-align: center;
    }

    .appointment-form-style1 {
        margin-top: 53px;
    }

    .slogan-style1__content .big-title h2 {
        font-size: 30px;
    }



    .single-blog-style1__overlay-content .meta-box .meta-info {
        display: block;
    }

    .single-blog-style1__overlay-content .meta-box .meta-info li+li {
        margin-left: 0px;
        margin-top: 5px;
    }



    .testimonial-style1 .sec-title {
        padding-bottom: 120px;
    }

    .testimonial-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -90px;
        left: 0;
        right: auto;
    }

    .single-testimonial-style1__bottom {
        display: block;
    }

    .single-testimonial-style1__text {
        padding-top: 24px;
        padding-left: 0px;
    }



    .footer-style1__top-inner {
        flex-direction: column;
        padding: 54px 20px 55px;
    }


    .footer-style1__top-inner-left {
        flex-direction: column;
        max-width: none;
    }

    .footer-style1__top-inner-left li {
        flex-direction: column;
        max-width: none;
    }

    .footer-style1__top-inner-left li+li {
        margin-top: 23px;
    }

    .footer-style1__top-inner-left li .title-box {
        text-align: center;
        padding-left: 0px;
        padding-top: 15px;
    }

    .footer-style1__top-inner-right .btn-box {
        margin-top: 30px;
    }

    .footer-style1__top-inner-right .shape {
        display: none;
    }

    .footer-style1__top-inner-right .btn-box p {
        flex-direction: column;
    }

    .footer-style1__top-inner-right .btn-box p a {
        margin-left: 0px;
        margin-top: 7px;
    }

    .footer-style1__upper {
        padding: 28px 20px 2px;
    }

    .footer-main {
        padding: 40px 0px 40px;
    }

    .footer-main .container .row {
        justify-content: center;
    }

    .single-footer-widget {
        margin-bottom: 30px;
    }

    .footer-widget-links.right {
        padding-top: 16px;
    }

    .footer-bottom .bottom-inner {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        padding-top: 9px;
    }

    .footer-menu ul {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-menu ul li+li {
        margin-top: 5px;
        margin-left: 0px;
    }




    /*=========== Home Two =============*/
    .awards-style1__inner {
        padding-left: 0px;
        margin-top: 0px;
    }

    .awards-style1__title {
        position: relative;
        max-width: none;
        text-align: center;
        border-top-right-radius: 5px;
        border-bottom-left-radius: 0px;
        padding: 30px 40px 27px;
    }

    .awards-style1__title .top-title {
        padding-left: 0px;
    }

    .awards-style1__title .top-title h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .awards-style1__title .top-title h3 br {
        display: none;
    }

    .awards-style1__title .top-title .icon {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 10px;
    }

    .awards-style1__content {
        border-top-right-radius: 0px;
        border-bottom-left-radius: 5px;
    }

    .awards-style1__content ul li {
        width: 100%;
        border-bottom: 1px solid #efe4e2;
    }

    .awards-style1__content ul li+li {
        border-left: 0px solid #efe4e2;
    }



    .service-style2 {
        padding: 100px 0px 95px;
    }

    .service-style2__img .inner::before {
        left: 0px;
        right: 0px;
    }

    .service-style2__img-rotated-text {
        position: relative;
        top: 0;
        margin-top: 30px;
    }

    .service-style2__img-title {
        position: relative;
        left: 0;
        transform: rotate(0deg);
        writing-mode: rl-tb;
        font-size: 60px;
        text-align: center;
    }

    .service-style2__contant {
        padding-left: 0px;
        padding-top: 75px;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        flex-direction: row;
        position: relative;
        top: auto;
        left: 0;
        width: 160px;
        height: 60px;
        transform: translateY(0%);
        margin: 40px auto 0;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav::before {
        display: none;
    }

    .service-style2-carousel.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
        margin: 0px 5px;
    }

    .service-style2__single-overlay-text {
        top: 40px;
        left: 20px;
        right: 20px;
    }



    .fact-counter-style1 {
        padding: 110px 0px 65px;
    }

    .fact-counter-style1 .container {
        max-width: 400px;
    }

    .single-fact-counter-style1 {
        margin-bottom: 50px;
    }



    .courses-style2 .sec-title {
        padding-bottom: 125px;
    }

    .courses-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -100px;
        left: 0;
    }

    .single-courses-style2__content-price .right .btn-box a {
        padding: 8px 10px 8px;
    }



    .technology-style1 {
        padding: 85px 0px 80px;
    }

    .technology-style1__top-title {
        width: calc((100% + 0px) / 1);
        top: -28px;
    }

    .technology-style1::before {
        width: calc((100% + 0px) / 1);
    }

    .technology-style1__bg {
        position: relative;
        width: calc((100% - 0px) / 1);
        height: 520px;
        top: 0;
    }

    .technology-style1__bottom-title {
        width: calc((100% + 0px) / 1);
        bottom: auto;
        top: 577px;
    }

    .technology-style1__content {
        padding-left: 0px;
        padding-top: 140px;
    }



    .blog-style2 .container {
        max-width: 770px;
    }

    .blog-style2__title {
        margin-right: 0px;
    }

    .blog-style2__inner {
        padding-top: 60px;
    }

    .blog-style2__inner.pdt0 {
        padding-top: 0px;
    }

    .blog-style2__single-img {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
        margin-right: 0px;
    }

    .blog-style2__single-content {
        margin-left: 0px;
        padding: 40px 20px 0px;
    }

    .blog-style2__single-content-top .meta-box .meta-info {
        display: block;
    }

    .blog-style2__single-content-top .meta-box .meta-info li::before {
        display: none;
    }

    .blog-style2__single-content-top .meta-box .meta-info li+li {
        margin-left: 0px;
        margin-top: 5px;
    }

    .blog-style2__single-content .title-box h3 {
        font-size: 17px;
        line-height: 27px;
    }



    .lacation-style1 {
        padding: 0px 0 120px;
    }

    .lacation-style1__map {
        position: relative;
        top: 0;
        left: 0;
        bottom: auto;
        right: 0;
        width: calc((100% - 0px) / 1);
        height: 550px;
        margin-bottom: -380px;
    }

    .lacation-style1__map-box {
        height: 550px;
    }

    .lacation-style1__tab {
        display: block;
    }

    .lacation-style1__tab-button {
        padding-left: 0px;
        padding-top: 80px;
    }



    .faq-style1__left-content {
        margin-bottom: 53px;
    }

    .accordion-box-style1 .accordion .accord-btn h4 {
        font-size: 16px;
        line-height: 26px;
    }

    .accordion-box-style1 .accordion .accord-content {
        padding-left: 15px;
    }



    .testimonial-style2 .container {
        max-width: 500px;
    }

    .testimonial-style2__single {
        display: block;
    }

    .testimonial-style2__quote {
        display: none;
    }

    .testimonial-style2__single .contant-box {
        margin-left: 0px;
        padding: 40px 30px 0px;
    }

    .testimonial-style2__single .contant-box>.text {
        padding-bottom: 35px;
    }

    .testimonial-style2-carousel.owl-nav-style-one.owl-theme .owl-nav {
        position: relative;
        left: 0;
        right: 0;
        transform: translateX(0%);
        text-align: center;
        margin: 10px auto 0;
    }

    .testimonial-style2 .section-btn {
        margin-top: 60px;
    }

    .testimonial-style2__single .contant-box .shape1 {
        top: 0px;
        left: 0px;
    }

    .testimonial-style2__single .contant-box .shape2 {
        right: 0px;
    }

    .testimonial-style2__single .contant-box .bottom-box {
        flex-direction: column;
        padding: 22px 0px 23px;
    }

    .testimonial-style2__single .contant-box .bottom-box::after {
        display: none;
    }


    .footer-style2 {
        padding: 0px 0px 0px;
    }

    .footer-style2__top::before {
        top: 174px;
    }

    .footer-style2__top-left {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        border: 1px solid #3f556d;
        border-bottom: none;
        border-radius: var(--thm-border-radius);
        padding: 31px 30px 31px;
    }

    .footer-style2__top .phone-box {
        margin-left: 0;
        padding-left: 0;
        margin-top: 20px;
    }

    .footer-style2__top .phone-box::before {
        display: none;
    }

    .footer-style2__top-right {
        flex-direction: column;
        border: 1px solid #3f556d;
        padding: 20px 10px 17px;
        width: 300px;
        margin: 0 auto;
    }

    .footer-style2__top .ticket-box::before {
        display: none;
    }

    .footer-style2__top-right .title-box {
        margin-left: 0px;
        padding-right: 0px;
        text-align: center;
        margin: 10px 0 10px;
    }

    .footer-style2__top-right .btn-box {
        padding-left: 0;
    }

    .footer-style2__top-right .btn-box::before {
        display: none;
    }

    .footer-main-style2 {
        padding: 120px 0px 52px;
    }

    .single-widget-two {
        margin-bottom: 60px;
    }



    /*======== Home Three =========*/
    .about-style3__img {
        padding-bottom: 90px;
    }

    .about-style3__img .inner {
        margin-left: 0;
        max-width: 100%;
    }

    .about-style3__img .logo-box {
        top: 20px;
        right: 20px;
    }

    .about-style3__curved-circle-outer {
        display: none;
    }

    .about-style3__img .img-car {
        bottom: 0;
    }

    .about-style3__content {
        padding-right: 0px;
        margin-top: 58px;
    }



    .single-package-style1 .img-box .inner {
        border-radius: 0;
    }

    .single-package-style1 .content-box {
        margin: -30px 0px 0px;
        padding: 54px 20px 23px;
    }

    .single-package-style1 .img-box .value-box {
        left: 60px;
        right: 60px;
    }

    .single-package-style1 .img-box .inner .overlay-rating-box {
        width: 80px;
        height: 80px;
    }

    .single-package-style1 .img-box .inner .overlay-rating-box ul li .icon {
        font-size: 18px;
        line-height: 18px;
    }

    .package-style1 .section-btn-inner {
        display: inline-block;
        padding: 17px 25px 12px;
    }

    .package-style1 .section-btn-inner .images-links-box {
        max-width: 90px;
        margin: 0 auto 6px;
    }

    .section-btn-inner p a {
        margin-top: 6px;
        margin-left: 0px;
    }



    .service-style3__inner {
        margin-top: 53px;
    }

    .service-style3-carousel.owl-nav-style-one.owl-theme .owl-stage-outer {
        margin-right: 0px;
    }

    .single-service-style3 {
        padding: 49px 20px 41px;
    }



    .choose-style2 {
        padding: 120px 0px 112px;
    }

    .choose-style2__img .inner {
        top: -40px;
    }

    .choose-style2__img {
        margin: 40px auto 40px;
    }



    .video-library-style1__title {
        margin: 0px auto 70px;
    }

    .vertical-slider-style1__thumb-outer {
        max-width: 170px;
        margin: 0 auto 0;
    }

    .video-library-style1__single {
        max-width: 570px;
        margin: 50px auto 0;
    }

    .video-library-style1__single .img-box .overlay-video-box a {
        width: 50px;
        height: 50px;
        font-size: 15px;
        line-height: 15px;
    }

    .video-library-style1__single .img-box .overlay-shear-box a {
        width: 40px;
        height: 40px;
        font-size: 15px;
        line-height: 15px;
    }

    .video-library-style1__single .title-box {
        display: block;
    }

    .video-library-style1__single .title-box h3 {
        margin-bottom: 7px;
    }

    .video-library-style1__title .fact-box {
        display: block;
    }

    .video-library-style1__title .fact-box .counting {
        margin-bottom: 40px;
    }

    .video-library-style1__title .fact-box::before {
        top: -8px;
    }



    .what-you-learn-style1__left .img-box {
        position: relative;
        bottom: -37px;
        right: 0;
        z-index: 2;
    }

    .what-you-learn-style1__right {
        padding-top: 70px;
    }

    .what-you-learn-style1__right .list-item ul {
        margin-bottom: 18px;
    }

    .what-you-learn-style1__right .download-material-box {
        padding-top: 22px;
    }



    .single-project-style2__img {
        max-width: 100%;
    }

    .single-project-style2__img-overlay-content .title h3 {
        font-size: 17px;
        line-height: 27px;
    }



    .single-testimonial-style3 {
        padding: 111px 0px 120px;
        padding-right: 0px;
    }

    .testimonial-style3 .container {
        padding-left: 0;
        padding-right: 0;
    }

    .single-testimonial-style3__content {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .testimonial-style3-carousel .owl-dots {
        display: none;
    }



    .blog-style3__top {
        display: block;
    }

    .blog-style3__top .btn-box {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .blog-style3__content>li+li {
        margin-top: 50px;
    }

    .single-blog-style3-outer {
        margin-bottom: 50px;
    }

    .single-blog-style3-content {
        padding-top: 33px;
    }

    .blog-style3__title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .single-blog-style3-content .title-box h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-style3__overlay-content .meta-box .meta-info {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
    }

    .blog-style3__overlay-content .meta-box .meta-info li+li {
        margin-top: 5px;
        margin-left: 0px;
    }

    .blog-style3__overlay-content .meta-box .meta-info li::before {
        display: none;
    }



    .contact-style1__img1 {
        display: none;
    }

    .contact-style1__img2 {
        display: none;
    }

    .contact-style1__form {
        padding: 30px 30px 20px;
    }



    .footer-main-style3 {
        padding: 120px 0px 54px;
    }

    .footer-main-style3 .single-widget {
        margin-bottom: 60px;
    }

    .footer-bottom-style3 .bottom-inner {
        flex-direction: column;
    }

    .footer-social-links-style3 {
        margin: 7px 0px 7px;
    }

    .footer-social-links-style3 ul li+li {
        margin-left: 10px;
    }

    .copyright-text-style3 {
        text-align: center;
    }

    .our-company-info-box-style2 .fact-box {
        display: block;
    }

    .our-company-info-box-style2 .fact-box .right {
        margin-top: 13px;
        padding-left: 0px;
    }



    /*========== Home Four ==========*/
    .service-style4 {
        padding: 60px 0px 60px;
    }

    .service-style4 .container {
        max-width: 400px;
    }

    .service-style4 .row {
        justify-content: center;
    }

    .service-style4-banner {
        margin: 0 auto;
    }



    .courses-style3__title-box {
        margin-bottom: 60px;
    }

    .courses-style3__title-box .sec-title {
        padding-bottom: 23px;
    }

    .courses-style3__title-box .sec-title h2 br {
        display: none;
    }



    .single-training-car-style1 .img-box {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .single-training-car-style1 .title-box {
        padding: 15px 25px 14px;
        margin: 0px 0px 0px;
    }

    .single-training-car-style1 .title-box h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .single-training-car-style1 .title-box .btn-box a {
        font-size: 18px;
    }



    .choose-style3 .sec-title {
        padding-bottom: 120px;
    }

    .single-choose-style3 {
        padding: 50px 20px 41px;
    }

    .choose-style3-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -100px;
        left: 0;
    }



    .project-style3__inner li {
        width: 100%;
    }



    .what-you-learn-style1__left {
        padding: 65px 15px 65px;
    }



    .footer-main-style4 {
        margin: -100px 20px 0px;
        padding: 160px 0px 45px;
    }

    .footer-main-style4 .container {
        max-width: 400px;
    }

    .footer-main-style4 .single-widget {
        margin-bottom: 60px;
    }

    .footer-widget-links-style4 {
        max-width: 100%;
    }

    .footer-widget-rating__right-shape ul {
        display: none;
    }

    .footer-widget-rating__left-shape ul {
        display: none;
    }

    .footer-bottom-style4 .bottom-inner {
        flex-direction: column;
    }

    .copyright-text-style4 {
        text-align: center;
        padding-bottom: 5px;
    }

    .footer-widget-rating {
        padding: 30px 30px 17px;
        max-width: 100%;
        margin: 0 auto;
    }



    /*============ About ==============*/
    .statement-style1__tab {
        padding-left: 0px;
    }

    .statement-style1__tab-btn {
        position: relative;
        max-width: 290px;
        margin-bottom: 33px;
    }

    .statement-style1__tab-btn .tabs-button-box {
        display: flex;
        align-items: center;
    }

    .statement-style1__tab-btn .tabs-button-box li {
        width: 50%;
    }

    .statement-style1__tab-btn .tabs-button-box li+li {
        border-top: 0px solid transparent;
        border-left: 1px solid #2f5154;
    }

    .single-statement-style1 .content-box {
        padding-right: 0;
    }

    .single-statement-style1 .img-box {
        margin-top: 40px;
    }



    .certification-style1 .sec-title {
        padding-bottom: 120px;
    }

    .single-certification-style1 .certificate-box {
        margin-top: 0px;
    }

    .certification-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
        top: -100px;
        left: 0;
    }




    /*============ History ==============*/
    .history-style1 {
        padding: 100px 0 100px;
    }

    .history-style1__content {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .single-history-style1 {
        padding: 31px 0px 14px;
    }

    .single-history-style1 .year {
        position: relative;
        writing-mode: lr-tb;
        transform: translateY(0%) rotate(0deg);
        padding: 0px 0px 0px;
    }

    .single-history-style1 .date-box {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(0%);
        margin: 10px auto 17px;
    }

    .single-history-style1 .content-box {
        border-left: 0px solid transparent;
        padding: 0px 30px 18px;
        text-align: center;
    }

    .single-history-style1 .content-box h2 {
        font-size: 17px;
        line-height: 27px;
        margin-bottom: 13px;
    }

    .history-style1__content-inner ul li+li {
        margin-top: 50px;
    }

    .history-style1__content-inner.right {
        padding-top: 50px;
    }

    .history-style1__content-border-line {
        display: none;
    }

    .single-history-style1::before {
        display: none;
    }



    /*============ Courses Details ==============*/
    .intro-style1-content {
        max-width: 100%;
        padding-bottom: 53px;
    }

    .intro-style1-content .big-title h2 br {
        display: none;
    }

    .intro-style1-classes {
        margin-top: 30px;
    }

    .single-intro-style1-classes ul {
        flex-direction: column;
        align-items: start;
    }

    .single-intro-style1-classes ul li::before {
        display: none;
    }

    .single-intro-style1-classes ul li+li {
        margin-left: 0px;
        margin-top: 23px;
    }

    .intro-style1-img {
        padding-top: 50px;
        margin-right: 0px;
    }







    /*============ Service Details ==============*/
    .sidebar-style1 {
        padding-right: 0;
    }

    .single-download-box {
        margin-bottom: 10px;
    }

    .banner-style1___inner .list-item {
        flex-direction: column;
        border-radius: var(--thm-border-radius);
    }

    .banner-style1___inner .list-item::before {
        display: none;
    }

    .banner-style1___inner .list-item::after {
        display: none;
    }

    .banner-style1___inner .list-item li::before {
        display: none;
    }

    .banner-style1___inner .list-item li+li {
        margin-left: 0px;
    }

    .service-page-content {
        padding-bottom: 30px;
    }

    .service-page-content .title-box h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .learning-journey-content .title h3 {
        font-size: 25px;
        line-height: 35px;
    }

    .what-we-offer>.title h3 {
        font-size: 25px;
        line-height: 25px;
    }

    .learning-journey-list {
        margin-top: 30px;
    }


    .benefits-box {
        padding: 10px 10px 10px;
    }

    .benefits-box__tab .tabs-content-box {
        margin-top: 30px;
    }

    .benefits-box__tab-btn .tabs-button-box li h6 {
        font-size: 14px;
        line-height: 24px;
    }

    .single-benefits-box .img-box .overlay-text {
        padding: 13px 15px 12px;
    }


    .banner-box {
        flex-direction: column;
    }

    .banner-box .title-box {
        flex-direction: column;
    }

    .banner-box .title-box .title {
        padding-left: 0px;
        text-align: center;
    }

    .banner-box .title-box .title h4 {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-box .title-box .title h4 br {
        display: none;
    }

    .banner-box .btn-box {
        padding-top: 20px;
    }




    /*============ Blog Single ==============*/
    .sidebar-box-style2 {
        margin-left: 0;
        margin: 50px auto 0px;
    }

    .blog-page-three-content .text-box1 p:first-child::first-letter {
        margin-right: 10px;
    }

    .blog-page-three-content .quote-box {
        padding: 27px 20px 25px;
    }

    .blog-page-three-content .quote-box .title h3 {
        font-size: 17px;
        line-height: 27px;
    }

    .blog-page-three-content .approach-techniques .title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .eessential-for-every-driver .title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-post-tag2 ul li {
        margin: 0 5px 10px;
    }

    .blog-author-box {
        padding: 30px 30px 25px;
        margin-top: 50px;
    }

    .blog-author {
        display: block;
    }

    .blog-author .text-box {
        padding-left: 0;
        top: 0px;
    }

    .blog-author .text-box__top {
        display: block;
        padding-top: 10px;
    }

    .blog-author .text-box__top .left {
        padding-bottom: 10px;
    }

    .blog-author .text-box__top .left h5 {
        margin-bottom: 0;
    }

    .blog-author .text-box__top .left h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-prev-next-option .single-box .title-box h3 {
        font-size: 17px;
        line-height: 27px;
    }



    .blog-prev-next-option {
        display: block;
    }

    .blog-prev-next-option::before {
        display: none;
    }

    .blog-prev-next-option .single-box.right {
        padding-top: 16px;
        text-align: center;
    }

    .blog-prev-next-option .single-box.left {
        text-align: center;
    }




    .back-to-blog-post-btn a {
        font-size: 14px;
    }

    .comment-box .inner-title h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .comment-box .single-comment .inner .single-comment-box {
        padding-left: 85px;
    }

    .sidebar-blog-post .list-item li .content-box .title h3 {
        font-size: 14px;
        line-height: 19px;
    }

    .add-comment-box .inner-title h3 {
        font-size: 20px;
        line-height: 30px;
    }

    .banner-style1___inner .title-box h2 {
        font-size: 28px;
    }




    /*============ Contact ==============*/
    .single-contact-info-style3 {
        padding: 40px 0px 0px;
        text-align: center;
    }

    .single-contact-info-style3 .icon {
        position: relative;
        margin: 0 auto;
    }

    .single-contact-info-style3 .text {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        writing-mode: lr-tb;
        transform: translateY(0%) rotate(0deg);
        padding: 9px 20px 9px;
        margin: 30px auto 0;
        height: 26px;
        top: 0;
        left: 0;
        right: 0;
    }

    .single-contact-info-style3 .content-box {
        border-left: 0px solid transparent;
        padding: 23px 15px 32px;
    }

    .main-contact-form__inner {
        padding: 52px 20px 37px;
    }

    .contact-form form button.btn-one {
        padding-left: 25px;
        padding-right: 25px;
    }


    .main-contact-form__inner {
        padding: 42px 30px 70px;
    }

    .contact-form form textarea {
        height: 226px;
    }




    /*============ Courses-1  ==============*/
    .overview-style1__right {
        padding-top: 60px;
    }

    .single-overview-style1__inner {
        padding: 50px 20px 42px;
    }



    /*============ Courses-2  ==============*/
    .appointment-form-style1 form .button-box {
        padding: 30px 15px 0px;
    }



    /*============ Courses-2  ==============*/

    .single-courses-style2__content-price {
        padding: 5px 5px 5px;
    }




    /*============ Services-1  ==============*/
    .overview-style2 {
        padding: 30px 0px 30px;
    }

    .overview-style2-list {
        padding-left: 0px;
        padding-top: 43px;
    }

    .overview-style2-list .scrolling-text h2 {
        font-size: 30px;
    }

    .overview-style2-list .scrolling-text {
        position: relative;
        writing-mode: lr-tb;
        transform: translateY(0%) rotate(0deg);
        border-right: 0px solid transparent;
        padding: 0px 0px 0px;
        padding-right: 0;
    }

    .overview-style2-list .list-item {
        border-left: 0px solid transparent;
        padding-top: 17px;
    }

    .overview-style2-list .list-item li {
        padding: 25px 0px 25px;
        border-bottom: 1px solid var(--thm-border-color);
    }

    .overview-style2 .big-title h1 {
        display: none;
    }



    .single-service-style1--style2 {
        padding: 23px 18px 30px;
    }

    .single-service-style1--style2 .single-service-style1__text {
        padding: 24px 15px 24px;
    }

    .single-service-style1__icon {
        left: -30px;
    }


    /*============ Services-3 ==============*/
    .service-style4--style4 .container {
        max-width: none;
    }

    .service-style4-content {
        margin-bottom: 0px;
    }

    .single-service-style1__text {
        padding: 24px 15px 24px;
    }

    .single-service-style1__text p {
        font-size: 14px;
    }




    /*============ Blog-1 ==============*/
    .blog-style3__title {
        padding: 75px 15px 31px;
    }

    .blog-style3__title h3 {
        font-size: 18px;
        line-height: 28px;
    }



    /*============ Blog-2 ==============*/
    .single-blog-style1__title h3 {
        font-size: 18px;
        line-height: 28px;
    }



    .faq-page-one__content {
        margin-right: 0px;
        max-width: 770px;
    }

    .faq-page-one__tab .tabs-content-box {
        margin-top: 50px;
        margin-left: 0px;
    }

    .faq-page-one__tab .tabs-content-box::before {
        display: none;
    }




    .breadcrumb-style1 .inner-content {
        padding: 280px 0px 163px;
    }

    .breadcrumb-style1 .title h2 {
        font-size: 40px;
    }



    .contact-style1__content .phone-box h3 {
        font-size: 20px;
    }

    .contact-style1__content .phone-box .icon {
        font-size: 20px;
        line-height: 20px;
        margin-right: 7px;
        top: 2px;
    }

}

/*--------------------------------------------------------------
////////////////////////////////
# Main Header All Responsice Css
////////////////////////////////
--------------------------------------------------------------*/

@media only screen and (min-width: 1501px) and (max-width: 1750px) {

    .main-header-style1__bottom-left {
        padding-left: 10px;
    }

    .main-menu-style1__left .main-menu-box {
        margin-left: 10px;
    }

    .header-button-style1 {
        padding-left: 10px;
    }

    .main-menu .main-menu__list>li+li {
        margin-left: 30px;
    }



    .main-header-style2 {
        padding-left: 260px;
    }

    .logo-box-style2 {
        width: 260px;
    }

    .main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
        margin-left: 20px;
    }

    .enroll-box-style1 {
        margin-right: 10px;
    }
    /*=== Home Four ======*/
    .main-header-style4__top-inner {
        padding-left: 25px;
        padding-right: 25px;
    }

    .header-style4-contact-info ul li:first-child {
        margin-right: 80px;
    }

    .header-style4-contact-info ul li:last-child {
        padding-left: 20px;
        margin-left: 20px;
    }

    .header-style4-contact-info__bg {
        right: 450px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    .main-header-style1__bottom-left {
        padding-left: 10px;
    }

    .main-header-style1__bottom-right ul {
        display: none;
    }

    .main-menu-style1__left .main-menu-box {
        margin-left: 10px;
    }

    .header-button-style1 {
        padding-left: 5px;
    }

    .main-menu .main-menu__list>li+li {
        margin-left: 30px;
    }


    .main-header-style2 {
        padding-left: 260px;
    }

    .logo-box-style2 {
        width: 260px;
    }

    .enroll-box-style1 {
        display: none;
    }

    .main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
        margin-left: 40px;
    }

    .header-phone-number-box-style1 .icon {
        display: none;
    }

    .header-phone-number-box-style1 .text {
        margin-left: 0;
    }

    .header-phone-number-box-style1 {
        padding: 17px 20px 18px;
    }

    .side-content-button--style2 {
        width: 40px;
    }

    .header-social-links-style1 ul li+li {
        margin-left: 15px;
    }

    .main-header-style2__top-left {
        padding-left: 170px;
    }


    /*=== Home Three ======*/
    .main-header-style3__bottom-middle {
        max-width: 630px;
    }

    .main-header-style3__bottom-middle .main-menu-style1__left .main-menu-box {
        margin-left: 30px;
    }

    .main-header-style3__bottom-middle .main-menu .main-menu__list>li+li {
        margin-left: 25px;
    }

    .header-style3-contact-box {
        display: none;
    }



    /*=== Home Four ======*/
    .main-header-style4__top-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-style4-contact-info ul li:last-child {
        display: none;
    }

    .header-style4-contact-info ul li:first-child {
        margin-right: 20px;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1350px) {

    /*=== Home Four ======*/
    .login-register-box-style4 {
        display: none;
    }
}



@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 35px 0 35px;
        line-height: 0;
    }

    .main-menu .mobile-nav__toggler--style2 {
        padding: 20px 0 20px;
    }



    .main-header-style1__top .container {
        padding-left: 40px;
    }

    .main-header-style1__top-right {
        padding-right: 50px;
    }

    .main-menu-style1__left .main-menu-box {
        margin-left: 40px;
    }

    .main-header-style1__bottom-left {
        padding-left: 50px;
    }



    /*=== Home Two ======*/
    .main-header-style2 {
        padding-left: 260px;
    }

    .logo-box-style2 {
        width: 260px;
    }

    .header-social-links-style1 ul li+li {
        margin-left: 15px;
    }

    .main-header-style2__top-right {
        padding-right: 20px;
    }

    .main-header-style2__top-left {
        padding-left: 70px;
    }

    .main-header-style2__top-left p {
        font-size: 14px;
    }

    .logo-box-style2::before {
        right: -70px;
    }

    .login-register-box-style1 {
        margin-right: 10px;
    }

    .main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
        margin-left: 40px;
    }

    /*=== Home Three ======*/
    .main-header-style3__bottom-middle {
        max-width: 100px;
        margin-left: 100px;
    }

    .main-header-style3__bottom-middle .main-menu-style1__left .main-menu-box {
        margin-left: 35px;
    }

    .main-header-style3__bottom-middle .main-menu .mobile-nav__toggler {
        padding: 25px 0 25px;
    }



    /*=== Home Four ======*/
    .main-header-style4__top-inner {
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main-header-style4__top-middle {
        display: none;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 35px 0 35px;
        line-height: 0;
    }

    .main-menu .mobile-nav__toggler--style2 {
        padding: 20px 0 20px;
    }



    /*=== Home One ======*/
    .main-header-style1__top {
        display: none;
    }

    .main-header-style1__bottom .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-style1__bottom-inner {
        padding-right: 0px;
    }

    .main-header-style1__bottom-inner:before {
        display: none;
    }

    .main-header-style1__bottom-inner::after {
        display: none;
    }

    .main-header-style1__bottom-inner__box::before {
        clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 0 100%, 0% 0%);
        border-radius: 5px;
    }

    .main-header-style1__bottom-right {
        display: none;
    }

    .main-header-style1__bottom-left {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-menu-style1__left .main-menu-box {
        margin-left: 0px;
    }



    /*=== Home Two ======*/
    .main-header-style2 {
        padding-left: 270px;
    }

    .logo-box-style2 {
        width: 270px;
    }

    .main-header-style2__top {
        display: none;
    }

    .main-header-style2__bottom {
        padding-right: 0px;
    }

    .main-header-style2__bottom-right {
        display: none;
    }

    .main-header-style2__bottom-inner::before {
        top: 0;
        left: 0px;
        bottom: 0;
        right: 0px;
        border-radius: 4px;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    }

    .main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
        margin-left: auto;
    }

    .main-header-style2__bottom-left {
        width: 100%;
        padding-right: 20px;
    }

    .main-header-style2__bottom-left::before {
        display: none;
    }

    .main-header-style2__bottom-left::after {
        display: none;
    }

    .main-header-style2__bottom-left .main-menu-style1__left {
        margin-left: auto;
    }

    .main-header-style2__bottom-left .main-menu .mobile-nav__toggler {
        padding: 30px 0 30px;
    }



    /*=== Home Three ======*/
    .main-header-style3__bottom-right {
        display: none;
    }

    .main-header-style3__bottom-middle {
        max-width: 100px;
        margin-left: auto;
        margin-right: inherit;
    }

    .main-header-style3__bottom-middle .main-menu-style1__left .main-menu-box {
        margin-left: 35px;
    }

    .main-header-style3__bottom-middle .main-menu .mobile-nav__toggler {
        padding: 25px 0 25px;
    }

    .main-header-style3__top-inner {
        padding: 0 0px;
    }

    /*=== Home Four ======*/
    .main-header-style4__top-inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .main-header-style4__top-middle {
        display: none;
    }

    .main-header-style4__bottom-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

}


@media (max-width: 767px) {

    .main-menu .mobile-nav__toggler {
        display: inline-block;
        padding: 35px 0 35px;
        line-height: 0;
    }

    .main-menu .mobile-nav__toggler--style2 {
        padding: 20px 0 20px;
    }



    .main-header-style1__top {
        display: none;
    }

    .main-header-style1__bottom .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-style1__bottom-inner {
        padding-right: 0px;
    }

    .main-header-style1__bottom-inner:before {
        display: none;
    }

    .main-header-style1__bottom-inner::after {
        display: none;
    }

    .main-header-style1__bottom-inner__box::before {
        clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 0 100%, 0% 0%);
        border-radius: 5px;
    }

    .main-header-style1__bottom-right {
        display: none;
    }

    .main-header-style1__bottom-left {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-left: 10px;
        padding-right: 5px;
    }

    .main-menu-style1__left .main-menu-box {
        margin-left: 0px;
    }




    /*=== Home Two ======*/
    .main-header-style2 {
        padding-left: 250px;
    }

    .logo-box-style2 {
        width: 250px;
    }

    .main-header-style2__top {
        display: none;
    }

    .main-header-style2__bottom {
        padding-right: 0px;
    }

    .main-header-style2__bottom-right {
        display: none;
    }

    .main-header-style2__bottom-inner::before {
        top: 0;
        left: 0px;
        bottom: 0;
        right: 0px;
        border-radius: 4px;
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
    }

    .main-header-style2__bottom-left .main-menu-style1__left .main-menu-box {
        margin-left: auto;
    }

    .main-header-style2__bottom-left {
        width: 100%;
        padding-right: 20px;
    }

    .main-header-style2__bottom-left::before {
        display: none;
    }

    .main-header-style2__bottom-left::after {
        display: none;
    }

    .main-header-style2__bottom-left .main-menu-style1__left {
        margin-left: auto;
    }

    .main-header-style2__bottom-left .main-menu .mobile-nav__toggler {
        padding: 30px 0 30px;
    }



    /*=== Home Three ======*/
    .main-header-style3__bottom-right {
        display: none;
    }

    .main-header-style3__bottom-middle {
        max-width: 50px;
        margin-left: auto;
        margin-right: inherit;
    }

    .main-header-style3__bottom-middle .main-menu-style1__left .main-menu-box {
        margin-left: 12px;
    }

    .main-header-style3__bottom-middle .main-menu .mobile-nav__toggler {
        padding: 25px 0 25px;
    }

    .main-header-style3__top {
        display: none;
    }

    .logo-box-style3 {
        width: 240px;
    }



    /*=== Home Four ======*/
    .main-header-style4__top-inner {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        flex-direction: column;
        justify-content: center;
    }

    .main-header-style4__top-left {
        display: none;
    }

    .main-header-style4__top-middle {
        display: none;
    }

    .main-header-style4__bottom-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-header-style4__bottom-right {
        display: none;
    }

}


/*--------------------------------------------------------------
///////////////////////////
# Slider All Responsice Css
///////////////////////////
--------------------------------------------------------------*/


@media only screen and (min-width: 1200px) and (max-width: 1700px) {}


@media only screen and (min-width: 1200px) and (max-width: 1545px) {

    /*============= Home Two ==============*/
    .main-slider-style2 .main-slider__nav {
        left: auto;
        right: 30px;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 60px;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1685px) {

    /*=== Home Four ======*/
    .main-slider-style4 .main-slider__nav {
        left: auto;
        right: 80px;
    }


}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    /*=== Home Four ======*/
    .main-slider-style4 .main-slider-content {
        margin-left: 0px;
    }

    .main-slider-style4 .main-slider__nav {
        left: auto;
        right: 80px;
    }

    .whats-app-newsletter {
        right: 25px;
    }

    .main-slider-style4__img2 {
        right: -30px;
    }

    .main-slider-style4__img2 img {
        width: 60%;
    }

    .main-slider-style4__total-leaners {
        top: 150px;
        right: 20%;
    }
}


@media only screen and (min-width: 992px) and (max-width: 1199px) {


    /*============= Home Two ==============*/
    .main-slider-style2 .main-slider__nav {
        left: auto;
        right: 20px;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 60px;
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 70px;
    }


    /*=== Home Three ======*/
    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 80px;
        line-height: 1.1em;
    }



    /*=== Home Four ======*/
    .main-slider-style4 .main-slider-content {
        margin-left: 0px;
    }

    .main-slider-style4 .main-slider__nav {
        left: auto;
        right: 80px;
    }

    .whats-app-newsletter {
        right: 25px;
    }

    .main-slider-style4__img2 {
        right: -70px;
    }

    .main-slider-style4__img2 img {
        width: 60%;
    }

    .main-slider-style4__total-leaners {
        top: 150px;
        right: 20%;
    }

    .main-slider-style4 .main-slider-content .big-title h2 {
        font-size: 42px;
        line-height: 1.2em;
    }

}


@media only screen and (min-width: 768px) and (max-width: 991px) {

    .main-slider__nav {
        left: auto;
        right: 50px;
    }



    /*=== Home One ======*/
    .main-slider-style1 .main-slider-content .big-title {
        max-width: 600px;
    }

    .main-slider-style1 .main-slider-content .big-title h2 {
        font-size: 50px;
    }

    .main-slider-style1 .main-slider-content .big-title h2 br {
        display: none;
    }

    .main-slider-style1__price-tag {
        right: 60px;
    }



    /*=== Home Two ======*/
    .main-slider-style2 .container {
        padding-top: 170px;
        padding-bottom: 230px;
    }

    .main-slider-style2 .main-slider__nav {
        left: auto;
        right: 20px;
        height: 130px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 60px;
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 55px;
    }



    /*=== Home Three ======*/
    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 60px;
        line-height: 1.1em;
    }



    /*=== Home Four ======*/
    .main-slider-style4 .main-slider-content {
        margin-left: 0px;
    }

    .main-slider-style4 .main-slider__nav {
        left: auto;
        right: 80px;
    }

    .whats-app-newsletter {
        right: 25px;
    }

    .main-slider-style4__img2 {
        display: none;
    }

    .main-slider-style4__total-leaners {
        top: 150px;
        right: 20%;
    }

    .main-slider-style4 .main-slider-content .big-title h2 {
        font-size: 42px;
        line-height: 1.2em;
    }
}


@media only screen and (max-width: 767px) {
    .main-slider__nav {
        display: none;
    }

    .main-slider-style2 .main-slider__nav {
        display: none;
    }



    /*=== Home One ======*/
    .main-slider-style1 .container {
        padding-top: 240px;
        padding-bottom: 120px;
    }

    .main-slider-style1 .main-slider-content .big-title h2 {
        font-size: 40px;
    }

    .main-slider-style1 .main-slider-content .big-title h2 br {
        display: none;
    }

    .main-slider-style1__price-tag .left .arrow {
        display: none;
    }

    .main-slider-style1__price-tag {
        position: relative;
        bottom: 0;
        display: block;
        padding-top: 33px;
    }

    .main-slider-style1__price-tag .left h5 br {
        display: none;
    }

    .main-slider-style1__price-tag .price-box {
        margin-left: 0px;
        margin-top: 6px;
    }



    /*=== Home Two ======*/
    .main-slider-style2 .container {
        padding-top: 170px;
        padding-bottom: 160px;
    }

    .main-slider-style2 .main-slider-content .big-title h2 {
        font-size: 35px;
    }

    .main-slider-style2 .main-slider-content .text {
        max-width: 400px;
    }

    .main-slider-style2 .main-slider-content .text p {
        font-size: 16px;
        line-height: 26px;
    }

    .main-slider-style2 .main-slider-content .text p br {
        display: none;
    }



    /*=== Home Three ======*/
    .main-slider-style3 .container {
        padding-top: 210px;
        padding-bottom: 130px;
    }

    .main-slider-style3 .main-slider__nav {
        display: none;
    }

    .main-slider-style3 .main-slider-content .big-title h2 {
        font-size: 40px;
        line-height: 1.1em;
    }



    /*=== Home Four ======*/
    .main-slider-style4 .container {
        padding-top: 250px;
        padding-bottom: 220px;
    }

    .main-slider-style4 .main-slider-content {
        margin-left: 0px;
    }

    .main-slider-style4 .main-slider__nav {
        left: auto;
        right: 80px;
    }

    .whats-app-newsletter {
        display: none;
    }

    .main-slider-style4__img2 {
        display: none;
    }

    .main-slider-style4__total-leaners {
        top: auto;
        right: 0%;
        bottom: 0px;
    }

    .main-slider-style4 .main-slider-content .big-title h2 {
        font-size: 32px;
        line-height: 1.2em;
    }

    .main-slider-style4 .main-slider-content .highlights-text ul {
        display: block;
    }

    .main-slider-style4 .main-slider-content .highlights-text ul li+li {
        margin-top: 20px;
    }

    .main-slider-style4 .main-slider-content .text {
        width: 320px;
    }

    .main-slider-style4 .main-slider-content .btn-box {
        display: block;
    }

    .main-slider-style4 .main-slider-content .btn-box .right-btn {
        margin-top: 10px;
    }
}


@media only screen and (max-width: 1199px) {
    .order11 {
        order: 1;
    }

    .order22 {
        order: 2;
    }

}

@media only screen and (max-width: 991px) {
    .order111 {
        order: 1;
    }

    .order222 {
        order: 2;
    }

}


.odometer.odometer-auto-theme,.odometer.odometer-theme-default{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit,.odometer.odometer-theme-default .odometer-digit{display:inline-block;vertical-align:middle;position:relative}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer,.odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer{display:inline-block;vertical-align:middle;visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner,.odometer.odometer-theme-default .odometer-digit .odometer-digit-inner{text-align:left;display:block;position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon{display:block}.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner,.odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner{display:block;-webkit-backface-visibility:hidden}.odometer.odometer-auto-theme .odometer-digit .odometer-value,.odometer.odometer-theme-default .odometer-digit .odometer-value{display:block;-webkit-transform:translateZ(0)}.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value,.odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value{position:absolute}.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s}.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner{-webkit-transform:translateY(-100%);-moz-transform:translateY(-100%);-ms-transform:translateY(-100%);-o-transform:translateY(-100%);transform:translateY(-100%)}.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,.odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner{-webkit-transition:-webkit-transform 2s;-moz-transition:-moz-transform 2s;-ms-transition:-ms-transform 2s;-o-transition:-o-transform 2s;transition:transform 2s;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}.odometer.odometer-auto-theme,.odometer.odometer-theme-default{font-family:"Helvetica Neue",sans-serif;line-height:1.1em}.odometer.odometer-auto-theme .odometer-value,.odometer.odometer-theme-default .odometer-value{text-align:center}



#ptTimeSelectCntr {
  display: none;
  font-size: 12px;
  margin-left: 0;
  position: absolute;
  width: 270px !important;
  z-index: 10;
}




#ptTimeSelectCntr .ui-widget-content {
  background: #fff none repeat scroll 0 0;
  border: medium none !important;
  border-radius: 0;
  margin-bottom: 0px;
  margin-top: 0 !important;
  padding: 5px;
}
#ptTimeSelectCntr .ui-widget.ui-widget-content {
  border: 1px solid #ddd !important;
}
#ptTimeSelectCntr .ui-widget{}
#ptTimeSelectCntr .ui-widget-header {
  background: #151515 none repeat scroll 0 0;
  border: 2px solid #252525;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  padding: 5px;
}
#ptTimeSelectCntr #ptTimeSelectUserTime {
  font-size: larger;
  line-height: 26px;
  padding: 0 10px;
  text-align: center;
}
#ptTimeSelectCntr .ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.html") !importent;
}




#ptTimeSelectCntr #ptTimeSelectCloseCntr {
  display: block;
  padding: 0;
}






#ptTimeSelectCntr .ui-widget.ui-widget-content {
    margin-top: 0;
}
#ptTimeSelectCntr .ptTimeSelectLeftPane.ui-widget-content {
    border-top:none;
    border-bottom:none;
    border-left:none;
    border-right-width: 2px;
}
#ptTimeSelectCntr .ptTimeSelectRightPane.ui-widget-content {
    border: none;
}




/*  content style and  hover style */
#ptTimeSelectCntr .ptTimeSelectHrCntr a, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a {
  display: block;
  float: left;
  line-height: 32px;
  margin: 2px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ptTimeSelectHrCntr a:hover, 
#ptTimeSelectCntr .ptTimeSelectMinCntr a:hover{
  background: #f5f5f5 !important;
  border-color: #f5f5f5 !important;
}



/*  Hour min text style */
#ptTimeSelectCntr .ptTimeSelectTimeLabelsCntr {
  color: #252525;
  font-size: 13px;
  font-weight: 700;
}


/*  Cloase button style */
#ptTimeSelectCntr #ptTimeSelectCloseCntr a {
  border-radius: 30%;
  display: block;
  height: 25px !important;
  line-height: 24px;
  margin: 0 !important;
  opacity: 1;
  padding: 0 !important;
  text-align: center;
  width: 25px !important;
  padding: 3px 4px !important;
}

/*  am pm content style, hover bg */
#ptTimeSelectCntr .ui-state-default {
  background: #fff !important;
  border: 1px solid #eaeaea !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px;
  font-weight: normal;
  height: 34px;
  margin-bottom: 5px;
  outline: medium none;
  text-align: center;
  width: 34px !important;
  line-height: 33px;
  margin: 2px;
  transition: all 500ms ease;
}
#ptTimeSelectCntr .ui-state-default:hover{
  background: #f5f5f5 !important; 
  border-color: #f5f5f5 !important; 
}


/*  For time set button css */
#ptTimeSelectCntr #ptTimeSelectSetButton {
  padding: 0 15px 5px 0;
}
#ptTimeSelectSetButton .ui-state-hover{
  background: #d5ac63 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #252525 !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a {
  display: block;
  text-align: center;
  float: right;
  background: #252525 !important;
  border: 2px solid #252525 !important;
  border-radius: 0;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: normal;
  height: 35px;  
  width: 70px !important;
  padding: 0;
  margin: 0;
  line-height: 32px;
  text-transform: uppercase;
  transition: all 500ms ease;
}
#ptTimeSelectCntr #ptTimeSelectSetButton a:hover{
  background: #555555 !important;  
} 

.vegas-overlay,.vegas-slide,.vegas-slide-inner,.vegas-timer,.vegas-wrapper{position:absolute;top:0;left:0;bottom:0;right:0;overflow:hidden;border:none;padding:0;margin:0}.vegas-overlay{opacity:.5;background:url(overlays/02.html) center center}.vegas-timer{top:auto;bottom:0;height:2px}.vegas-timer-progress{width:0;height:100%;background:#fff;transition:width ease-out}.vegas-timer-running .vegas-timer-progress{width:100%}.vegas-slide,.vegas-slide-inner{margin:0;padding:0;background:center center no-repeat;-webkit-transform:translateZ(0);transform:translateZ(0);will-change:transform,opacity}body .vegas-container{overflow:hidden!important;position:relative}.vegas-video{min-width:100%;min-height:100%;width:auto;height:auto}body.vegas-container{overflow:auto;position:static;z-index:-2}body.vegas-container>.vegas-overlay,body.vegas-container>.vegas-slide,body.vegas-container>.vegas-timer{position:fixed;z-index:-1}.vegas-transition-blur,.vegas-transition-blur2{opacity:0;-webkit-filter:blur(32px) brightness(1.01);filter:blur(32px) brightness(1.01)}.vegas-transition-blur-in,.vegas-transition-blur2-in{opacity:1;-webkit-filter:blur(0) brightness(1.01);filter:blur(0) brightness(1.01)}.vegas-transition-blur2-out{opacity:0}.vegas-transition-burn,.vegas-transition-burn2{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-burn-in,.vegas-transition-burn2-in{opacity:1;-webkit-filter:contrast(100%) saturate(100%);filter:contrast(100%) saturate(100%)}.vegas-transition-burn2-out{opacity:0;-webkit-filter:contrast(1000%) saturate(1000%);filter:contrast(1000%) saturate(1000%)}.vegas-transition-fade,.vegas-transition-fade2{opacity:0}.vegas-transition-fade-in,.vegas-transition-fade2-in{opacity:1}.vegas-transition-fade2-out{opacity:0}.vegas-transition-flash,.vegas-transition-flash2{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-flash-in,.vegas-transition-flash2-in{opacity:1;-webkit-filter:brightness(1);filter:brightness(1)}.vegas-transition-flash2-out{opacity:0;-webkit-filter:brightness(25);filter:brightness(25)}.vegas-transition-negative,.vegas-transition-negative2{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-negative-in,.vegas-transition-negative2-in{opacity:1;-webkit-filter:invert(0);filter:invert(0)}.vegas-transition-negative2-out{opacity:0;-webkit-filter:invert(100%);filter:invert(100%)}.vegas-transition-slideDown,.vegas-transition-slideDown2{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-slideDown-in,.vegas-transition-slideDown2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideDown2-out{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideLeft,.vegas-transition-slideLeft2{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideLeft-in,.vegas-transition-slideLeft2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideLeft2-out,.vegas-transition-slideRight,.vegas-transition-slideRight2{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.vegas-transition-slideRight-in,.vegas-transition-slideRight2-in{-webkit-transform:translateX(0);transform:translateX(0)}.vegas-transition-slideRight2-out{-webkit-transform:translateX(100%);transform:translateX(100%)}.vegas-transition-slideUp,.vegas-transition-slideUp2{-webkit-transform:translateY(100%);transform:translateY(100%)}.vegas-transition-slideUp-in,.vegas-transition-slideUp2-in{-webkit-transform:translateY(0);transform:translateY(0)}.vegas-transition-slideUp2-out{-webkit-transform:translateY(-100%);transform:translateY(-100%)}.vegas-transition-swirlLeft,.vegas-transition-swirlLeft2{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-swirlLeft-in,.vegas-transition-swirlLeft2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlLeft2-out,.vegas-transition-swirlRight,.vegas-transition-swirlRight2{-webkit-transform:scale(2) rotate(-35deg);transform:scale(2) rotate(-35deg);opacity:0}.vegas-transition-swirlRight-in,.vegas-transition-swirlRight2-in{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0);opacity:1}.vegas-transition-swirlRight2-out{-webkit-transform:scale(2) rotate(35deg);transform:scale(2) rotate(35deg);opacity:0}.vegas-transition-zoomIn,.vegas-transition-zoomIn2{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-transition-zoomIn-in,.vegas-transition-zoomIn2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomIn2-out,.vegas-transition-zoomOut,.vegas-transition-zoomOut2{-webkit-transform:scale(2);transform:scale(2);opacity:0}.vegas-transition-zoomOut-in,.vegas-transition-zoomOut2-in{-webkit-transform:scale(1);transform:scale(1);opacity:1}.vegas-transition-zoomOut2-out{-webkit-transform:scale(0);transform:scale(0);opacity:0}.vegas-animation-kenburns{-webkit-animation:kenburns ease-out;animation:kenburns ease-out}@-webkit-keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes kenburns{0%{-webkit-transform:scale(1.5);transform:scale(1.5)}100%{-webkit-transform:scale(1);transform:scale(1)}}.vegas-animation-kenburnsDownLeft{-webkit-animation:kenburnsDownLeft ease-out;animation:kenburnsDownLeft ease-out}@-webkit-keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownLeft{0%{-webkit-transform:scale(1.5) translate(10%,-10%);transform:scale(1.5) translate(10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDownRight{-webkit-animation:kenburnsDownRight ease-out;animation:kenburnsDownRight ease-out}@-webkit-keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDownRight{0%{-webkit-transform:scale(1.5) translate(-10%,-10%);transform:scale(1.5) translate(-10%,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsDown{-webkit-animation:kenburnsDown ease-out;animation:kenburnsDown ease-out}@-webkit-keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsDown{0%{-webkit-transform:scale(1.5) translate(0,-10%);transform:scale(1.5) translate(0,-10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsLeft{-webkit-animation:kenburnsLeft ease-out;animation:kenburnsLeft ease-out}@-webkit-keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsLeft{0%{-webkit-transform:scale(1.5) translate(10%,0);transform:scale(1.5) translate(10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsRight{-webkit-animation:kenburnsRight ease-out;animation:kenburnsRight ease-out}@-webkit-keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsRight{0%{-webkit-transform:scale(1.5) translate(-10%,0);transform:scale(1.5) translate(-10%,0)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpLeft{-webkit-animation:kenburnsUpLeft ease-out;animation:kenburnsUpLeft ease-out}@-webkit-keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpLeft{0%{-webkit-transform:scale(1.5) translate(10%,10%);transform:scale(1.5) translate(10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUpRight{-webkit-animation:kenburnsUpRight ease-out;animation:kenburnsUpRight ease-out}@-webkit-keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUpRight{0%{-webkit-transform:scale(1.5) translate(-10%,10%);transform:scale(1.5) translate(-10%,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}.vegas-animation-kenburnsUp{-webkit-animation:kenburnsUp ease-out;animation:kenburnsUp ease-out}@-webkit-keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}@keyframes kenburnsUp{0%{-webkit-transform:scale(1.5) translate(0,10%);transform:scale(1.5) translate(0,10%)}100%{-webkit-transform:scale(1) translate(0,0);transform:scale(1) translate(0,0)}}

@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoona107.eot?b5gy7d');
  src: url('fonts/icomoona107.eot?b5gy7d#iefix') format('embedded-opentype'),
    url('fonts/icomoona107.ttf?b5gy7d') format('truetype'),
    url('fonts/icomoona107.woff?b5gy7d') format('woff'),
    url('fonts/icomoona107.svg?b5gy7d#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dial-pad:before {
  content: "\e900";
}

.icon-thumbtack:before {
  content: "\e901";
}

.icon-stopwatch:before {
  content: "\e902";
}

.icon-down-arrow:before {
  content: "\e903";
}

.icon-double-chevron:before {
  content: "\e904";
}

.icon-search:before {
  content: "\e905";
}

.icon-user:before {
  content: "\e906";
}

.icon-dots-menu:before {
  content: "\e907";
}

.icon-star:before {
  content: "\e908";
}

.icon-prev1:before {
  content: "\e909";
}

.icon-next:before {
  content: "\e9c9";
}

.icon-notepad:before {
  content: "\e90a";
}

.icon-steering-wheel:before {
  content: "\e90b";
}

.icon-driving .path1:before {
  content: "\e90c";
}

.icon-driving .path2:before {
  content: "\e90d";
  margin-left: -1em;
}

.icon-driving .path3:before {
  content: "\e90e";
  margin-left: -1em;
}

.icon-driving .path4:before {
  content: "\e90f";
  margin-left: -1em;
}

.icon-driving-license .path1:before {
  content: "\e910";
}

.icon-driving-license .path2:before {
  content: "\e911";
  margin-left: -1em;
}

.icon-driving-license .path3:before {
  content: "\e912";
  margin-left: -1em;
}

.icon-driving-license .path4:before {
  content: "\e913";
  margin-left: -1em;
}

.icon-driving-license .path5:before {
  content: "\e914";
  margin-left: -1em;
}

.icon-driving-license .path6:before {
  content: "\e915";
  margin-left: -1em;
}

.icon-driving-license .path7:before {
  content: "\e916";
  margin-left: -1em;
}

.icon-driving-license .path8:before {
  content: "\e917";
  margin-left: -1em;
}

.icon-driving-license .path9:before {
  content: "\e918";
  margin-left: -1em;
}

.icon-driving-license .path10:before {
  content: "\e919";
  margin-left: -1em;
}

.icon-driving-license .path11:before {
  content: "\e91a";
  margin-left: -1em;
}

.icon-driving-license .path12:before {
  content: "\e91b";
  margin-left: -1em;
}

.icon-shield .path1:before {
  content: "\e91c";
}

.icon-shield .path2:before {
  content: "\e91d";
  margin-left: -1em;
}

.icon-enrollment .path1:before {
  content: "\e91e";
}

.icon-enrollment .path2:before {
  content: "\e91f";
  margin-left: -1em;
}

.icon-enrollment .path3:before {
  content: "\e920";
  margin-left: -1em;
}

.icon-enrollment .path4:before {
  content: "\e921";
  margin-left: -1em;
}

.icon-enrollment .path5:before {
  content: "\e922";
  margin-left: -1em;
}

.icon-enrollment .path6:before {
  content: "\e923";
  margin-left: -1em;
}

.icon-enrollment .path7:before {
  content: "\e924";
  margin-left: -1em;
}

.icon-enrollment .path8:before {
  content: "\e925";
  margin-left: -1em;
}

.icon-enrollment .path9:before {
  content: "\e926";
  margin-left: -1em;
}

.icon-meeting .path1:before {
  content: "\e927";
}

.icon-meeting .path2:before {
  content: "\e928";
  margin-left: -1em;
}

.icon-meeting .path3:before {
  content: "\e929";
  margin-left: -1em;
}

.icon-meeting .path4:before {
  content: "\e92a";
  margin-left: -1em;
}

.icon-license .path1:before {
  content: "\e92b";
}

.icon-license .path2:before {
  content: "\e92c";
  margin-left: -1em;
}

.icon-license .path3:before {
  content: "\e92d";
  margin-left: -1em;
}

.icon-license .path4:before {
  content: "\e92e";
  margin-left: -1em;
}

.icon-license .path5:before {
  content: "\e92f";
  margin-left: -1em;
}

.icon-license .path6:before {
  content: "\e930";
  margin-left: -1em;
}

.icon-license .path7:before {
  content: "\e931";
  margin-left: -1em;
}

.icon-license .path8:before {
  content: "\e932";
  margin-left: -1em;
}

.icon-license .path9:before {
  content: "\e933";
  margin-left: -1em;
}

.icon-license .path10:before {
  content: "\e934";
  margin-left: -1em;
}

.icon-taxi-driver .path1:before {
  content: "\e935";
}

.icon-taxi-driver .path2:before {
  content: "\e936";
  margin-left: -1em;
}

.icon-taxi-driver .path3:before {
  content: "\e937";
  margin-left: -1em;
}

.icon-schedule .path1:before {
  content: "\e938";
}

.icon-schedule .path2:before {
  content: "\e939";
  margin-left: -1em;
}

.icon-schedule .path3:before {
  content: "\e93a";
  margin-left: -1em;
}

.icon-schedule .path4:before {
  content: "\e93b";
  margin-left: -1em;
}

.icon-schedule .path5:before {
  content: "\e93c";
  margin-left: -1em;
}

.icon-schedule .path6:before {
  content: "\e93d";
  margin-left: -1em;
}

.icon-facebook:before {
  content: "\e93e";
}

.icon-twitter:before {
  content: "\e93f";
}

.icon-instagram-logo:before {
  content: "\e940";
}

.icon-hi:before {
  content: "\e941";
}

.icon-youtube:before {
  content: "\e942";
}

.icon-chatting:before {
  content: "\e943";
}

.icon-zoom:before {
  content: "\e944";
}

.icon-whatsapp:before {
  content: "\e945";
}

.icon-call-center .path1:before {
  content: "\e946";
}

.icon-call-center .path2:before {
  content: "\e947";
  margin-left: -1em;
}

.icon-quote:before {
  content: "\e948";
}

.icon-email:before {
  content: "\e949";
}

.icon-qr-code:before {
  content: "\e94a";
}

.icon-location .path1:before {
  content: "\e94b";
}

.icon-location .path2:before {
  content: "\e94c";
  margin-left: -1em;
}

.icon-location .path3:before {
  content: "\e94d";
  margin-left: -1em;
}

.icon-location .path4:before {
  content: "\e94e";
  margin-left: -1em;
}

.icon-location .path5:before {
  content: "\e94f";
  margin-left: -1em;
}

.icon-location .path6:before {
  content: "\e950";
  margin-left: -1em;
}

.icon-location .path7:before {
  content: "\e951";
  margin-left: -1em;
}

.icon-location .path8:before {
  content: "\e952";
  margin-left: -1em;
}

.icon-location .path9:before {
  content: "\e953";
  margin-left: -1em;
}

.icon-pdf:before {
  content: "\e954";
}

.icon-download:before {
  content: "\e955";
}

.icon-map .path1:before {
  content: "\e956";
}

.icon-map .path2:before {
  content: "\e957";
  margin-left: -1em;
}

.icon-map .path3:before {
  content: "\e958";
  margin-left: -1em;
}

.icon-map .path4:before {
  content: "\e959";
  margin-left: -1em;
}

.icon-steering-wheel-1 .path1:before {
  content: "\e95a";
}

.icon-steering-wheel-1 .path2:before {
  content: "\e95b";
  margin-left: -1em;
}

.icon-celebrity .path1:before {
  content: "\e95c";
}

.icon-celebrity .path2:before {
  content: "\e95d";
  margin-left: -1em;
}

.icon-check .path1:before {
  content: "\e95e";
}

.icon-check .path2:before {
  content: "\e95f";
  margin-left: -1em;
}

.icon-check .path3:before {
  content: "\e960";
  margin-left: -1em;
}

.icon-check .path4:before {
  content: "\e961";
  margin-left: -1em;
}

.icon-place:before {
  content: "\e962";
}

.icon-chat .path1:before {
  content: "\e963";
}

.icon-chat .path2:before {
  content: "\e964";
  margin-left: -1em;
}

.icon-chat .path3:before {
  content: "\e965";
  margin-left: -1em;
}

.icon-chat .path4:before {
  content: "\e966";
  margin-left: -1em;
}

.icon-chat .path5:before {
  content: "\e967";
  margin-left: -1em;
}

.icon-minus:before {
  content: "\e968";
}

.icon-plus-sign:before {
  content: "\e969";
}

.icon-symbols:before {
  content: "\e96a";
}

.icon-tool:before {
  content: "\e96b";
}

.icon-money:before {
  content: "\e96c";
}

.icon-symbol:before {
  content: "\e96d";
}

.icon-symbols-1:before {
  content: "\e96e";
}

.icon-history .path1:before {
  content: "\e96f";
}

.icon-history .path2:before {
  content: "\e970";
  margin-left: -1em;
}

.icon-history .path3:before {
  content: "\e971";
  margin-left: -1em;
}

.icon-history .path4:before {
  content: "\e972";
  margin-left: -1em;
}

.icon-history .path5:before {
  content: "\e973";
  margin-left: -1em;
}

.icon-history .path6:before {
  content: "\e974";
  margin-left: -1em;
}

.icon-history .path7:before {
  content: "\e975";
  margin-left: -1em;
}

.icon-wing:before {
  content: "\e976";
}

.icon-receipt .path1:before {
  content: "\e977";
}

.icon-receipt .path2:before {
  content: "\e978";
  margin-left: -1em;
}

.icon-receipt .path3:before {
  content: "\e979";
  margin-left: -1em;
}

.icon-receipt .path4:before {
  content: "\e97a";
  margin-left: -1em;
}

.icon-receipt .path5:before {
  content: "\e97b";
  margin-left: -1em;
}

.icon-receipt .path6:before {
  content: "\e97c";
  margin-left: -1em;
}

.icon-play-button:before {
  content: "\e97d";
}

.icon-share:before {
  content: "\e97e";
}

.icon-verify:before {
  content: "\e97f";
}

.icon-newsletter:before {
  content: "\e980";
}

.icon-chevron:before {
  content: "\e981";
}

.icon-goal .path1:before {
  content: "\e982";
}

.icon-goal .path2:before {
  content: "\e983";
  margin-left: -1em;
}

.icon-goal .path3:before {
  content: "\e984";
  margin-left: -1em;
}

.icon-goal .path4:before {
  content: "\e985";
  margin-left: -1em;
}

.icon-values .path1:before {
  content: "\e986";
}

.icon-values .path2:before {
  content: "\e987";
  margin-left: -1em;
}

.icon-values .path3:before {
  content: "\e988";
  margin-left: -1em;
}

.icon-values .path4:before {
  content: "\e989";
  margin-left: -1em;
}

.icon-values .path5:before {
  content: "\e98a";
  margin-left: -1em;
}

.icon-values .path6:before {
  content: "\e98b";
  margin-left: -1em;
}

.icon-values .path7:before {
  content: "\e98c";
  margin-left: -1em;
}

.icon-values .path8:before {
  content: "\e98d";
  margin-left: -1em;
}

.icon-values .path9:before {
  content: "\e98e";
  margin-left: -1em;
}

.icon-success .path1:before {
  content: "\e98f";
}

.icon-success .path2:before {
  content: "\e990";
  margin-left: -1em;
}

.icon-success .path3:before {
  content: "\e991";
  margin-left: -1em;
}

.icon-success .path4:before {
  content: "\e992";
  margin-left: -1em;
}

.icon-error:before {
  content: "\e993";
}

.icon-automatic-transmission .path1:before {
  content: "\e994";
}

.icon-automatic-transmission .path2:before {
  content: "\e995";
  margin-left: -1em;
}

.icon-automatic-transmission .path3:before {
  content: "\e996";
  margin-left: -1em;
}

.icon-automatic-transmission .path4:before {
  content: "\e997";
  margin-left: -1em;
}

.icon-gear-shift .path1:before {
  content: "\e998";
}

.icon-gear-shift .path2:before {
  content: "\e999";
  margin-left: -1em;
}

.icon-check-mark:before {
  content: "\e99a";
}

.icon-test:before {
  content: "\e99b";
}

.icon-approval:before {
  content: "\e99c";
}

.icon-seat-belt .path1:before {
  content: "\e99d";
}

.icon-seat-belt .path2:before {
  content: "\e99e";
  margin-left: -1em;
}

.icon-seat-belt .path3:before {
  content: "\e99f";
  margin-left: -1em;
}

.icon-seat-belt .path4:before {
  content: "\e9a0";
  margin-left: -1em;
}

.icon-done .path1:before {
  content: "\e9a1";
}

.icon-done .path2:before {
  content: "\e9a2";
  margin-left: -1em;
}

.icon-driver .path1:before {
  content: "\e9a3";
}

.icon-driver .path2:before {
  content: "\e9a4";
  margin-left: -1em;
}

.icon-online-course .path1:before {
  content: "\e9a5";
}

.icon-online-course .path2:before {
  content: "\e9a6";
  margin-left: -1em;
}

.icon-online-course .path3:before {
  content: "\e9a7";
  margin-left: -1em;
}

.icon-online-course .path4:before {
  content: "\e9a8";
  margin-left: -1em;
}

.icon-online-course .path5:before {
  content: "\e9a9";
  margin-left: -1em;
}

.icon-online-course .path6:before {
  content: "\e9aa";
  margin-left: -1em;
}

.icon-online-course .path7:before {
  content: "\e9ab";
  margin-left: -1em;
}

.icon-file .path1:before {
  content: "\e9ac";
}

.icon-file .path2:before {
  content: "\e9ad";
  margin-left: -1em;
}

.icon-file .path3:before {
  content: "\e9ae";
  margin-left: -1em;
}

.icon-file-1 .path1:before {
  content: "\e9af";
  color: rgb(45, 62, 80);
}

.icon-file-1 .path2:before {
  content: "\e9b0";
  margin-left: -1em;
  color: rgb(46, 121, 190);
}

.icon-file-1 .path3:before {
  content: "\e9b1";
  margin-left: -1em;
  color: rgb(46, 121, 190);
}

.icon-check-1:before {
  content: "\e9b2";
}

.icon-sign:before {
  content: "\e9b3";
  color: #04bf61;
}

.icon-arrow-angle-turning-to-right:before {
  content: "\e9b4";
}

.icon-checklist .path1:before {
  content: "\e9b5";
}

.icon-checklist .path2:before {
  content: "\e9b6";
  margin-left: -1em;
}

.icon-menu:before {
  content: "\e9b7";
}

.icon-reply:before {
  content: "\e9b8";
}

.icon-time .path1:before {
  content: "\e9b9";
}

.icon-time .path2:before {
  content: "\e9ba";
  margin-left: -1em;
}

.icon-time .path3:before {
  content: "\e9bb";
  margin-left: -1em;
}

.icon-time .path4:before {
  content: "\e9bc";
  margin-left: -1em;
}

.icon-time .path5:before {
  content: "\e9bd";
  margin-left: -1em;
}

.icon-faq .path1:before {
  content: "\e9be";
}

.icon-faq .path2:before {
  content: "\e9bf";
  margin-left: -1em;
}

.icon-faq .path3:before {
  content: "\e9c0";
  margin-left: -1em;
}

.icon-faq .path4:before {
  content: "\e9c1";
  margin-left: -1em;
}

.icon-faq .path5:before {
  content: "\e9c2";
  margin-left: -1em;
}

.icon-faq .path6:before {
  content: "\e9c3";
  margin-left: -1em;
}

.icon-faq .path7:before {
  content: "\e9c4";
  margin-left: -1em;
}

.icon-avatar:before {
  content: "\e9c5";
}

.icon-cellphone:before {
  content: "\e9c6";
}

.icon-mail:before {
  content: "\e9c7";
}

.icon-type:before {
  content: "\e9c8";
}

/*!
 * Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fad,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-bacteria:before{content:"\e059"}.fa-bacterium:before{content:"\e05a"}.fa-bahai:before{content:"\f666"}.fa-balance-scale:before{content:"\f24e"}.fa-balance-scale-left:before{content:"\f515"}.fa-balance-scale-right:before{content:"\f516"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-biking:before{content:"\f84a"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-border-all:before{content:"\f84c"}.fa-border-none:before{content:"\f850"}.fa-border-style:before{content:"\f853"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-box-tissue:before{content:"\e05b"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buy-n-large:before{content:"\f8a6"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caravan:before{content:"\f8ff"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudflare:before{content:"\e07d"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-alt:before{content:"\f422"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cotton-bureau:before{content:"\f89e"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dailymotion:before{content:"\e052"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-deezer:before{content:"\e077"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-disease:before{content:"\f7fa"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edge-legacy:before{content:"\e078"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-alt:before{content:"\f424"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fan:before{content:"\f863"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-faucet:before{content:"\e005"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-firefox-browser:before{content:"\e007"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-alt:before{content:"\f841"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-pay:before{content:"\e079"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guilded:before{content:"\e07e"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-holding-water:before{content:"\f4c1"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-sparkles:before{content:"\e05d"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-hands-wash:before{content:"\e05e"}.fa-handshake:before{content:"\f2b5"}.fa-handshake-alt-slash:before{content:"\e05f"}.fa-handshake-slash:before{content:"\e060"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-hat-wizard:before{content:"\f6e8"}.fa-hdd:before{content:"\f0a0"}.fa-head-side-cough:before{content:"\e061"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-head-side-mask:before{content:"\e063"}.fa-head-side-virus:before{content:"\e064"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hive:before{content:"\e07f"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hospital-user:before{content:"\f80d"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-house-user:before{content:"\e065"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-icons:before{content:"\f86d"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-ideal:before{content:"\e013"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-innosoft:before{content:"\e080"}.fa-instagram:before{content:"\f16d"}.fa-instagram-square:before{content:"\e055"}.fa-instalod:before{content:"\e081"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-house:before{content:"\e066"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lungs:before{content:"\f604"}.fa-lungs-virus:before{content:"\e067"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-mdb:before{content:"\f8ca"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microblog:before{content:"\e01a"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mixer:before{content:"\e056"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse:before{content:"\f8cc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-octopus-deploy:before{content:"\e082"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-orcid:before{content:"\f8d2"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-arrows:before{content:"\e068"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-perbyte:before{content:"\e083"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-alt:before{content:"\f879"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-square-alt:before{content:"\f87b"}.fa-phone-volume:before{content:"\f2a0"}.fa-photo-video:before{content:"\f87c"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-square:before{content:"\e01e"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-plane-slash:before{content:"\e069"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pump-medical:before{content:"\e06a"}.fa-pump-soap:before{content:"\e06b"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-record-vinyl:before{content:"\f8d9"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-remove-format:before{content:"\f87d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-rust:before{content:"\e07a"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-shield-virus:before{content:"\e06c"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopify:before{content:"\e057"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sink:before{content:"\e06d"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-soap:before{content:"\e06e"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spell-check:before{content:"\f891"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stackpath:before{content:"\f842"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-stopwatch-20:before{content:"\e06f"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-store-alt-slash:before{content:"\e070"}.fa-store-slash:before{content:"\e071"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swift:before{content:"\f8e1"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-tiktok:before{content:"\e07b"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-trailer:before{content:"\e041"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbraco:before{content:"\f8e8"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-uncharted:before{content:"\e084"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-unity:before{content:"\e049"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-unsplash:before{content:"\e07c"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-users-slash:before{content:"\e073"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-vest:before{content:"\e085"}.fa-vest-patches:before{content:"\e086"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-virus:before{content:"\e074"}.fa-virus-slash:before{content:"\e075"}.fa-viruses:before{content:"\e076"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-voicemail:before{content:"\f897"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-watchman-monitoring:before{content:"\e087"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wodu:before{content:"\e088"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-brands-400.eot);src:url(../webfonts/fa-brands-400d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.woff) format("woff"),url(../webfonts/fa-brands-400.ttf) format("truetype"),url(../webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.eot);src:url(../webfonts/fa-regular-400d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.woff) format("woff"),url(../webfonts/fa-regular-400.ttf) format("truetype"),url(../webfonts/fa-regular-400.svg#fontawesome) format("svg")}.fab,.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.eot);src:url(../webfonts/fa-solid-900d41d.eot?#iefix) format("embedded-opentype"),url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.woff) format("woff"),url(../webfonts/fa-solid-900.ttf) format("truetype"),url(../webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}

.mfont{
    color: #001c54;
    font-size: 30px;
    margin-right: 25px;
}