/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --assimox-font: 'Barlow', sans-serif;
    --assimox-font-two: 'Roboto', sans-serif;
    --assimox-font-three: 'freehand521_btregular';
    --assimox-gray: #444444;
    --assimox-gray-rgb: 68, 68, 68;
    --assimox-white: #ffffff;
    --assimox-white-rgb: 255, 255, 255;
    --assimox-base: #e40000;
    --assimox-base-rgb: 241, 213, 81;
    --assimox-black: #0b1a3a;
    --assimox-black-rgb: 11, 26, 58;
    --assimox-primary: #e43934;
    --assimox-primary-rgb: 0, 167, 235;
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body {
    font-family: var(--assimox-font);
    color: var(--assimox-gray);
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--assimox-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--assimox-black);
    margin: 0;
    font-family: var(--assimox-font-two);
}

p {
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--assimox-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    opacity: 0.4;
    z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--assimox-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--assimox-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--assimox-base);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
}


.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    font-size: 14px;
    color: var(--assimox-white);
    font-weight: 700;
    padding: 14px 45px 12px;
    font-family: var(--assimox-font-two);
    background-color: #838284;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: var(--assimox-base);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
    z-index: -1;
}

.thm-btn:hover {
    color: var(--assimox-black);
}

.thm-btn:hover:before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


.section-title {
    position: relative;
    display: block;
    margin-top: -12px;
    margin-bottom: 49px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: var(--assimox-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--assimox-font-two);
    margin-left: 30px;
    z-index: 1;
}

.section-title__tagline.white{
    color: #fff;
}

.section-title__tagline:before {
    position: absolute;
    left: -30px;
    top: 7px;
    width: 20px;
    height: 2px;
    background-color: var(--assimox-primary);
    content: "";
}

.section-title__tagline.white:before{
    background-color: #fff;
}

.section-title__title {
    margin: 0;
    color: var(--assimox-black);
    font-size: 45px;
    line-height: 54px;
    font-weight: 900;
    margin-top: 13px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--assimox-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--assimox-base);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
    background: var(--assimox-black);
    color: var(--assimox-white);
    cursor: pointer;
}

/* Preloader */
.handle-preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    z-index: 9999999;
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 45px auto;
    animation: spinner 1s infinite linear;
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}


.handle-preloader .animation-preloader .txt-loading .letters-loading {
    position: relative;
    display: inline-block;
    font-family: var(--assimox-font);
    font-weight: 700;
    letter-spacing: 15px;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: 0.1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: 0.3s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 0.5s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 0.7s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
    animation-delay: 0.8s;
}

.handle-preloader .loader-section {
    background-color: #ffffff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #000000;
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #000000;
    border-top-color: rgba(0, 0, 0, 0.7);
}

/* AnimaciÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â³n del preloader */
@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--assimox-base);
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--assimox-primary);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
}

.scroll-to-top i {
    color: var(--assimox-white);
    font-size: 18px;
    line-height: 50px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.scroll-to-top:hover {
    background-color: var(--assimox-base);
}

.scroll-to-top:hover i {
    color: #fff;
}


/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.html), pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .6;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: #000000;
}

.xs-sidebar-widget {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    max-width: 460px;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    transition: all 500ms ease 800ms;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 700ms ease 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}


.sidebar-textwidget {
    padding: 50px 44px;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--assimox-black);
    border-radius: 50%;
    color: var(--assimox-black);
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--assimox-base);
    border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo img {
    max-height: 46px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h3 {
    color: var(--assimox-black);
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.xs-sidebar-group .content-inner .content-box {
    position: relative;
    display: block;
    padding-top: 33px;
    padding-bottom: 47px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .content-box p {
    color: #444444;
    font-size: 17px;
}


.xs-sidebar-group .content-inner .sidebar-contact-info {
    position: relative;
    display: block;
}

.xs-sidebar-group .content-inner .sidebar-contact-info h3 {
    color: var(--assimox-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 27px;
}

.sidebar-contact-info ul {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    margin-bottom: 26px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li .inner {
    position: relative;
    display: block;
    padding-left: 45px;
}

.sidebar-contact-info ul li .inner .icon {
    position: absolute;
    top: 3px;
    left: 0;
}

.sidebar-contact-info ul li .inner .icon img {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text {
    position: relative;
    display: block;
}

.sidebar-contact-info ul li .inner .text p {
    line-height: 24px;
    color: #444444;
}

.sidebar-contact-info ul li .inner .text p a {
    color: #444444;
}


.xs-sidebar-group .content-inner .side-content-newsletter-box {
    position: relative;
    display: block;
    padding-top: 49px;
}

.xs-sidebar-group .content-inner .side-content-newsletter-box h3 {
    color: var(--assimox-black);
    font-size: 25px;
    line-height: 30px;
    font-weight: 700;
    margin: 0 0 24px;
}

.side-content-newsletter-box .form-group input[type='email'] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    background-color: rgb(248, 248, 248);
    border: 1px solid #e3dfdf;
    padding-left: 30px;
    padding-right: 20px;
    border-radius: 6px;
    font-family: var(--assimox-font);
    outline: none;
}

.side-content-newsletter-box .form-group button {
    margin-top: 30px;
    border: none;
    border-radius: 28px;
    background-color: var(--assimox-base);
    color: var(--assimox-black);
}

.side-content-newsletter-box .form-group button:hover {
    color: var(--assimox-white);
}

.side-content-newsletter-box .form-group button:before {
    background-color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    transition: all 500ms ease;
    z-index: 999;
}

.main-menu {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__wrapper {
    position: relative;
    display: block;
    padding-left: 65px;
    padding-right: 122px;
    margin-top: 35px;
    z-index: 1;
}

.main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1;
}

.main-menu__left {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__logo {
    position: relative;
    display: block;
    margin-right: 90px;
    padding-top: 17px;
    padding-bottom: 17px;
}

.main-menu__logo img {
    max-height: 46px;
}

.main-menu__main-menu-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu__main-menu-box-inner {
    position: relative;
    display: block;
}

.main-menu__search-nav-sidebar {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.main-menu__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 28px;
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__search:hover {
    color: var(--assimox-base);
}

.main-menu__side-content-icon {
    position: relative;
    display: block;
}

.main-menu__side-content-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    width: 48px;
    border: 1px solid var(--assimox-white);
    border-radius: 50%;
    padding-right: 12px;
}

.icon-dots-menu-1 {
    position: relative;
    display: block;
    height: 2px;
    width: 10px;
    background-color: var(--assimox-white);
}

.icon-dots-menu-2 {
    position: relative;
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--assimox-white);
    margin-top: 5px;
}

.main-menu__right {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f1ece7;
    padding-left: 25px;
    padding-right: 45px;
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0px 23px 29px 0px rgba(0, 0, 0, 0.15);
}

.main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: #154050;
}

.main-menu__call-content {
    margin-left: 25px;
}

.main-menu__call-sub-title {
    font-size: 16px;
    color: #000000;
    line-height: 20px;
}

.main-menu__call-number {
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    margin-top: 10px;
}

.main-menu__call-number a {
    color: #000000;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu__call-number a:hover {
    color: #cb111e;
}

.stricky-header.main-menu {
    background-color: #4f748e;
}

.stricky-header .main-menu__wrapper {
    margin-top: 0;
}


.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 {
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
    margin-left: 45px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
    font-size: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--assimox-white);
    font-weight: 400;
    position: relative;
    -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(--assimox-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    z-index: 99;
    background-color: #0a1936;
    padding: 10px 25px 10px;
    border-top: 2px solid var(--assimox-base);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
    display: none;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.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 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #343c4e;
}

.main-menu .main-menu__list > li > ul > li:last-child,
.main-menu .main-menu__list > li > ul > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li:last-child,
.stricky-header .main-menu__list > li > ul > li > ul > li:last-child {
    border-bottom: 0;
}

.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: none;
    margin-top: 0px;
}

.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;
    font-size: 18px;
    line-height: 30px;
    color: var(--assimox-white);
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0px 12px;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.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(--assimox-base);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
    top: 0;
    left: 112%;
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}


.stricky-header {
    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;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important;
    }
}

.stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--assimox-base);
    cursor: pointer;
}

.mobile-nav__buttons a + a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--assimox-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--assimox-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--assimox-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}

.main-header--dark .main-menu__wrapper {
    padding-right: 0;

    @media (max-width: 991px) {
        padding-right: 30px;
    }

    @media (max-width: 767px) {
        padding-right: 15px;
    }
}

.main-header--dark .main-menu .main-menu__list > li > a,
.main-header--dark.stricky-header .main-menu__list > li > a {
    color: #0f0f0f;
}

.main-header--dark .main-menu .main-menu__list > li.current > a,
.main-header--dark .main-menu .main-menu__list > li:hover > a,
.main-header--dark.stricky-header .main-menu__list > li.current > a,
.main-header--dark.stricky-header .main-menu__list > li:hover > a {
    color: #11aded;
}

.main-header--dark .main-menu .main-menu__list > li > ul > li:hover > a,
.main-header--dark .main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.main-header--dark.stricky-header .main-menu__list > li > ul > li:hover > a,
.main-header--dark.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
    color: #11aded;
}

.main-header--dark .main-menu .main-menu__list > li > ul,
.main-header--dark .main-menu .main-menu__list > li > ul > li > ul,
.main-header--dark.stricky-header .main-menu__list > li > ul,
.main-header--dark.stricky-header .main-menu__list > li > ul > li > ul {
    border-color: #11aded;
}

.main-header--dark .main-menu__call {
    background-color: var(--assimox-white);
}

.main-header--dark .main-menu__search {
    color: #0f0f0f;
}

.main-header--dark .main-menu__search:hover {
    color: #11aded;
}

.main-header--dark .main-menu__side-content-icon .navSidebar-button {
    border-color: #0f0f0f;
    transition: all .4s ease;
}

.main-header--dark .main-menu__side-content-icon .navSidebar-button:hover {
    border-color: #11aded;
}

.main-header--dark .main-menu__side-content-icon .navSidebar-button .icon-dots-menu-2,
.main-header--dark .main-menu__side-content-icon .navSidebar-button .icon-dots-menu-1 {
    background-color: #0f0f0f;
    transition: all .4s ease;
}

.main-header--dark .main-menu__side-content-icon .navSidebar-button:hover .icon-dots-menu-2,
.main-header--dark .main-menu__side-content-icon .navSidebar-button:hover .icon-dots-menu-1 {
    background-color: #11aded;
}

.stricky-header.main-header--dark.main-menu {
    background-color: #fff;
}

.stricky-header.main-header--dark.main-menu .main-menu__call {
    box-shadow: none;
}

.main-header--dark .main-menu .mobile-nav__toggler {
    color: #0f0f0f;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.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__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--assimox-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.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__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--assimox-white);
    cursor: pointer;
}

.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: 0.5em;
}

.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 > .main-menu-border {
    display: none !important;
}

.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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--assimox-font);
    font-weight: 500;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.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(--assimox-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--assimox-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
    width: 30px;
    height: 30px;
    background-color: var(--assimox-base);
    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);
    background-color: #fff;
    color: var(--assimox-base);
}

/* 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;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--assimox-text-dark);
}

.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__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--assimox-white);
    -webkit-transition: 500ms;
    transition: 500ms;
}

.mobile-nav__social a + a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: var(--assimox-base);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--assimox-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.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(--assimox-base);
}

.mobile-nav__contact li > i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--assimox-primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: relative;
    display: block;
    /*margin-bottom: -40px;*/
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-two__top {
    position: relative;
    display: block;
    background-color: #838284;
    padding: 10px 0;
}

.main-header-two__top-wrapper {
    position: relative;
    display: block;
}

.main-header-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-header-two__top-left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__top-number {
    position: relative;
    display: block;
}

.main-header-two__top-number a {
    font-size: 20px;
    color: var(--assimox-white);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__top-number a span {
    font-size: 18px;
    font-weight: 600;
}

.main-header-two__top-text-box {
    position: relative;
    display: block;
    margin-left: 55px;
}

.main-header-two__top-text-box:before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -25px;
    width: 1px;
    background-color: rgba(215, 215, 215, .30);
}

.main-header-two__top-text-box p {
    font-size: 18px;
    color: var(--assimox-white);
    font-weight: 500;
}

.main-header-two__top-text-box p a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ee3c3c;
    font-weight: 600;
    margin-left: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header-two__top-text-box p a:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c73639;
}

.main-header-two__top-text-box p a:hover {
    color: var(--assimox-white);
}

.main-header-two__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__top-right {
    position: relative;
    display: block;
}

.main-header-two__social {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--assimox-white);
}

.main-header-two__social a + a {
    margin-left: 30px;
}

.stricky-header.main-menu-two {
    background-color: var(--assimox-white);
}

.stricky-header.main-menu-two:before {
    background-color: var(--assimox-white);
}

.stricky-header .main-menu-two__wrapper-inner {
    border-radius: 0px;
    padding: 0 0px 0;
}

.main-menu-two:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    background-color: #838284;
    z-index: -1;
    background-color: transparent;
}

.main-menu-two__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-two__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 8px;
    padding: 0 20px 0;
    z-index: 1;
}

.main-menu-two__logo {
    position: relative;
    display: block;
    padding: 22px 0 22px;
}

.main-menu-two__logo img {
    max-height: 46px;
}

.main-menu-two__main-menu-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-two__main-menu-box-inner {
    position: relative;
    display: block;
}

.main-menu-two__search-nav-sidebar {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
    padding: 21px 0px;
}

.main-menu-two__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-menu-two__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 28px;
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-two__side-content-icon {
    position: relative;
    display: block;
}

.main-menu-two__side-content-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    width: 48px;
    background-color: var(--assimox-base);
    border-radius: 50%;
    padding-right: 12px;
}

.icon-dots-menu-2-1 {
    position: relative;
    display: block;
    height: 2px;
    width: 10px;
    background-color: #fff;
}

.icon-dots-menu-2-2 {
    position: relative;
    display: block;
    height: 2px;
    width: 20px;
    background-color: #fff;
    margin-top: 5px;
}


.main-menu-two .main-menu__list > li,
.stricky-header.main-menu-two .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-menu-two .main-menu__list > li + li,
.stricky-header.main-menu-two .main-menu__list > li + li {
    margin-left: 40px;
}

.main-menu-two .main-menu__list > li > a,
.stricky-header.main-menu-two .main-menu__list > li > a {
    font-weight: 600;
    color: var(--assimox-black);
    font-size: 18px;
}

.main-menu-two .main-menu__list > li.current > a,
.main-menu-two .main-menu__list > li:hover > a,
.stricky-header.main-menu-two .main-menu__list > li.current > a,
.stricky-header.main-menu-two .main-menu__list > li:hover > a {
    color: var(--assimox-primary);
}


/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
    position: relative;
    display: block;
    transition: all 500ms ease;
    z-index: 999;
}

.main-header-three__top {
    position: relative;
    display: block;
    background-color: #838284;
    padding: 10px 0;
}

.main-header-three__top-wrapper {
    position: relative;
    display: block;
}

.main-header-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-header-three__top-left {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__top-number {
    position: relative;
    display: block;
}

.main-header-three__top-number a {
    font-size: 20px;
    color: var(--assimox-white);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__top-number a span {
    font-size: 18px;
    font-weight: 600;
}

.main-header-three__top-text-box {
    position: relative;
    display: block;
    margin-left: 55px;
}

.main-header-three__top-text-box:before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -25px;
    width: 1px;
    background-color: rgba(215, 215, 215, .30);
}

.main-header-three__top-text-box p {
    font-size: 18px;
    color: var(--assimox-white);
    font-weight: 500;
}

.main-header-three__top-text-box p a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #ee3c3c;
    font-weight: 600;
    margin-left: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-header-three__top-text-box p a:before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #c73639;
}

.main-header-three__top-text-box p a:hover {
    color: var(--assimox-white);
}

.main-header-three__top-right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__top-right {
    position: relative;
    display: block;
}

.main-header-three__social {
    position: relative;
    display: flex;
    align-items: center;
}

.main-header-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--assimox-white);
}

.main-header-three__social a + a {
    margin-left: 30px;
}

.stricky-header.main-menu-three {
    background-color: var(--assimox-white);
}

.stricky-header.main-menu-three:before {
    background-color: var(--assimox-white);
}

.main-menu-three__wrapper {
    position: relative;
    display: block;
    z-index: 1;
}

.main-menu-three__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    z-index: 1;
}

.main-menu-three__logo {
    position: relative;
    display: block;
    padding: 22px 0 22px;
}

.main-menu-three__logo img {
    max-height: 46px;
}

.main-menu-three__main-menu-box {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu-three__main-menu-box-inner {
    position: relative;
    display: block;
}

.main-menu-three__search-nav-sidebar {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
    padding: 21px 0px;
}

.main-menu-three__search-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 28px;
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-three__side-content-icon {
    position: relative;
    display: block;
}

.main-menu-three__side-content-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    width: 48px;
    background-color: var(--assimox-base);
    border-radius: 50%;
    padding-right: 12px;
}

.icon-dots-menu-2-1 {
    position: relative;
    display: block;
    height: 2px;
    width: 10px;
    background-color: #fff;
}

.icon-dots-menu-2-2 {
    position: relative;
    display: block;
    height: 2px;
    width: 20px;
    background-color: #fff; 
    margin-top: 5px;
}


.main-menu-three .main-menu__list > li,
.stricky-header.main-menu-three .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

.main-menu-three .main-menu__list > li + li,
.stricky-header.main-menu-three .main-menu__list > li + li {
    margin-left: 45px;
}

.main-menu-three .main-menu__list > li > a,
.stricky-header.main-menu-three .main-menu__list > li > a {
    font-weight: 600;
    color: var(--assimox-black);
    font-size: 18px;
}

.main-menu-three .main-menu__list > li.current > a,
.main-menu-three .main-menu__list > li:hover > a,
.stricky-header.main-menu-three .main-menu__list > li.current > a,
.stricky-header.main-menu-three .main-menu__list > li:hover > a {
    color: var(--assimox-primary);
}


/*--------------------------------------------------------------
# Main Header Four
--------------------------------------------------------------*/
.main-menu-four .main-menu__call {
    background-color: transparent;
    box-shadow: none;
}

.main-menu-four .main-menu__call-icon span {
    color: #fff;
}

.main-menu-four .main-menu__call-sub-title {
    color: #fff;
}

.main-menu-four .main-menu__call-number a {
    color: #fff;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%);
    -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: opacity 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease;
    transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--assimox-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--assimox-base);
    border: 0;
}

.search-popup__content .thm-btn i {
    height: auto;
    width: auto;
    background-color: transparent;
    border-radius: 50%;
    color: var(--assimox-black);
    font-size: 26px;
    line-height: inherit;
    text-align: center;
    top: 0;
    margin-right: 0;
    padding-left: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
    color: var(--assimox-white);
}

.search-popup__content .thm-btn:hover:before {
    background-color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--assimox-black);
}

.main-slider .container {
    position: relative;
    padding-top: 242px;
    padding-bottom: 235px;
    z-index: 30;

    @media (max-width: 767px) {
        padding-top: 195px;
        padding-bottom: 150px;
    }
}

.main-slider__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -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__content {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider__sub-title {
    font-size: 35px;
    color: rgba(15, 15, 15, .5);
    font-family: var(--assimox-font-three);
    line-height: 35px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__title {
    position: relative;
    font-size: 65px;
    color: #0f0f0f;
    font-weight: 900;
    line-height: 71px;
    margin-top: 10px;
    margin-bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text {
    font-size: 27px;
    color: #0f0f0f;
    font-weight: 700;
    line-height: 35px;
    margin: 0 0 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text-two {
    font-size: 20px;
    color: #0f0f0f;
    font-weight: 400;
    line-height: 35px;
    font-family: var(--assimox-font-two);
    margin: 0 0 43px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;

    span {
        font-weight: 700;
        text-transform: uppercase;
    }
}

.main-slider__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn {
    color: var(--assimox-white);
    border-radius: 30px;
    overflow: hidden;
    letter-spacing: 1.5px;
    font-size: 15px;
    background-color: #11aded;
}

.main-slider__btn:hover {
    color: var(--assimox-white);
}

.main-slider__btn:before {
    background-color: var(--assimox-black);
}

.main-slider__badge {
    position: absolute;
    left: 64%;
    bottom: -40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(120px);
    transform: translateX(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__badge img {
    max-width: 100%;
}

.main-slider .swiper-slide-active .main-slider__badge,
.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__text,
.main-slider .swiper-slide-active .main-slider__text-two,
.main-slider .swiper-slide-active .main-slider__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.main-slider__nav {
    position: absolute;
    top: 41%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 0 100px;
    height: 0;
    line-height: 0;

    @media (max-width: 1400px) {
        left: 44%;
    }
    @media (max-width: 1300px) {
        left: 100%;
    }
    @media (max-width: 991px) {
        left: 128%;
    }
    @media (max-width: 767px) {
        display: none;
    }
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #7a7c7e;
    background-color: transparent;
    border: 2px solid #7a7c7e;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: #000;
    border: 2px solid #000;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    margin-bottom: 20px;
}

.main-slider__nav .swiper-button-prev i {
    position: relative;
    display: inline-block;
}


/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .swiper-slide {
    position: relative;
    background-color: var(--assimox-black);
}

.main-slider-two .container {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    z-index: 30;
}

@media (max-width: 997px){
    .main-slider-two .container {
        padding-top: 100px !important;
        padding-bottom: 0 !important;
    }
    
    .main-menu-two__wrapper > .container {
        padding: 0;
    }

    .main-menu-two__logo{
        padding: 5px 0;
    }
    
    .main-menu-two__wrapper-inner{
        border-radius: 0;
    }
    
    .testimonial-one__content {
        padding: 30px;
    }
}

.image-layer-two {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -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-two__content {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-two__sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--assimox-white);
    font-family: var(--assimox-font-two);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: var(--assimox-base);
    padding: 4px 25px 1px;
    border-radius: 17.5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
    position: relative;
    font-size: 65px;
    color: var(--assimox-white);
    font-weight: 900;
    line-height: 67px;
    margin-top: 28px;
    margin-bottom: 19px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__text {
    font-size: 38px;
    color: var(--assimox-white);
    font-weight: 700;
    line-height: 48px;
    font-style: italic;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__call {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.main-slider-two__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--assimox-white);
}

.main-slider-two-call__content {
    margin-left: 20px;
}

.main-slider-two-call__content p {
    font-size: 20px;
    color: var(--assimox-white);
    font-weight: 600;
    line-height: 30px;
    font-style: italic;
}

.main-slider-two-call__content h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    font-style: italic;
}

.main-slider-two-call__content h5 span {
    font-size: 20px;
    color: var(--assimox-white);
}

.main-slider-two-call__content h5 a {
    color: var(--assimox-white);
}

.main-slider-two__btn-box {
    position: relative;
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn {
    color: #fff;
    padding-left: 35px;
    padding-right: 25px;
    background-color: var(--assimox-base);
    padding-top: 16px;
    padding-bottom: 14px;
    padding: 15px 25px;
}

.main-slider-two__btn span {
    padding-left: 2px;
    font-size: 12px;
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid var(--assimox-black);
    line-height: 16px;
    margin-left: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-slider-two__btn:hover {
    color: var(--assimox-base);
}

.main-slider-two__btn:before {
    background-color: var(--assimox-black);
}

.main-slider-two__btn:hover span {
    border: 2px solid var(--assimox-base);
    color: var(--assimox-base);
}

.main-slider-two .swiper-slide-active .main-slider-two__title,
.main-slider-two .swiper-slide-active .main-slider-two__sub-title,
.main-slider-two .swiper-slide-active .main-slider-two__text,
.main-slider-two .swiper-slide-active .main-slider-two__call,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.main-slider-two__nav {
    position: absolute;
    top: 41%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 0 100px;
    height: 0;
    line-height: 0;
}


.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #cccccc;
    background-color: transparent;
    border: 2px solid #cccccc;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    padding: 23px 0;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
    color: #fff;
    border: 2px solid #fff;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
    display: none;
}

.main-slider-two__nav .swiper-button-prev {
    margin-bottom: 20px;
}

.main-slider-two__nav .swiper-button-prev i {
    position: relative;
    display: inline-block;
}


/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
    position: relative;
    display: block;
}

.main-slider-three .swiper-slide {
    position: relative;
    background-color: #e4ebf7;
}

.main-slider-three .container {
    position: relative;
    padding-top: 144px;
    padding-bottom: 160px;
    z-index: 30;
}

.main-slider-three__img {
    position: absolute;
    top: 0;
    right: 0;
}

.main-slider-three__img img {
    width: auto;
}

.main-slider-three__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: color-burn;
    z-index: -1;
}

.main-slider-three__shape-1 img {
    width: auto;
}

.main-slider-three__shape-2 {
    position: absolute;
    top: 235px;
    left: 25px;
    border-radius: 50%;
    background-color: rgb(241, 213, 81);
    width: 114px;
    height: 114px;
}

.main-slider-three__shape-3 {
    position: absolute;
    top: 365px;
    left: -205px;
    border-radius: 50%;
    background-color: rgb(34, 89, 176);
    width: 355px;
    height: 355px;
}

.main-slider-three__content {
    position: relative;
    display: block;
    z-index: 1;
}

.main-slider-three__sub-title {
    font-size: 35px;
    color: #838284;
    font-family: var(--assimox-font-three);
    line-height: 35px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title {
    visibility: visible;
    opacity: .50;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.main-slider-three__title {
    font-size: 65px;
    font-weight: 900;
    line-height: 70px;
    color: #838284;
    margin-top: 10px;
    margin-bottom: 27px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__text-1 {
    font-size: 27px;
    font-weight: 700;
    color: #838284;
    line-height: 37px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__text-2 {
    font-size: 20px;
    font-weight: 700;
    color: #838284;
    line-height: 35px;
    margin-top: 14px;
    margin-bottom: 22px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__text-2 span {
    text-transform: uppercase;
}

.main-slider-three__btn-box {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn {
    background-color: var(--assimox-base);
    color: var(--assimox-black);
    border-radius: 28px;
}

.main-slider-three__badge {
    margin-left: 75px;
}

.main-slider-three__badge img {
    width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__text,
.main-slider-three .swiper-slide-active .main-slider-three__text-1,
.main-slider-three .swiper-slide-active .main-slider-three__text-2,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
    position: absolute;
    top: 41%;
    left: 50%;
    z-index: 100;
    transform: translateY(-50%) translateX(-50%);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    padding: 0 180px;
    height: 0;
    line-height: 0;
}


.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #7a7c7e;
    background-color: transparent;
    border: 2px solid #7a7c7e;
    border-radius: 50%;
    margin: 0;
    text-align: center;
    transition: all 500ms ease;
    padding: 23px 0;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
    color: #000;
    border: 2px solid #000;
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
    display: none;
}

.main-slider-three__nav .swiper-button-prev {
    margin-bottom: 20px;
}

.main-slider-three__nav .swiper-button-prev i {
    position: relative;
    display: inline-block;
}


/*--------------------------------------------------------------
# Experience And Rating
--------------------------------------------------------------*/
.experience-and-rating {
    position: relative;
    display: block;
    border-bottom: 1px solid #1a3749;
    margin-top: -30px;
    z-index: 2;
}

.experience-and-rating__wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.experience-and-rating__left {
    position: relative;
    display: block;
    float: left;
    width: 50%;
}

.experience-and-rating__left-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.experience-and-rating__experience {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #154e5f;
    padding-left: 45px;
    padding-right: 35px;
    padding-top: 46px;
    padding-bottom: 55px;
    z-index: 1;
}

.experience-and-rating__experience-shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: .40;
}

.experience-and-rating__experience-year {
    position: relative;
    display: block;
}

.experience-and-rating__experience-year h2 {
    font-size: 135px;
    font-weight: 800;
    font-family: var(--assimox-font);
    color: var(--assimox-white);
    line-height: 135px;
}

.experience-and-rating__experience-year h5 {
    font-size: 10px;
    color: var(--assimox-white);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    line-height: 10px;
}

.experience-and-rating__experience-text-box {
    position: relative;
    max-width: 210px;
    width: 100%;
    margin-left: 35px;
    top: 2px;
}

.experience-and-rating__experience-text-box p {
    font-size: 19px;
    color: var(--assimox-white);
    font-weight: 500;
}

.experience-and-rating__video {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    padding: 90px 0 90px;
}

.experience-and-rating__video-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.experience-and-rating__video-link {
    position: relative;
    display: block;
}

.experience-and-rating__video-icon {
    position: relative;
    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;
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    font-size: 25px;
    color: var(--assimox-black);
    background-color: var(--assimox-base);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.experience-and-rating__video-icon:hover {
    background-color: var(--assimox-primary);
    color: var(--assimox-base);
}

.experience-and-rating__video-link .ripple,
.experience-and-rating__video-icon .ripple:before,
.experience-and-rating__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--assimox-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--assimox-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--assimox-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--assimox-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.experience-and-rating__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.experience-and-rating__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.experience-and-rating__right {
    position: relative;
    display: block;
    float: right;
    width: 50%;
    padding-top: 114px;
    padding-bottom: 63px;
    z-index: 1;
}

.experience-and-rating__right:before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #838284;
    z-index: -1;
}

.experience-and-rating__right-content {
    position: relative;
    display: block;
    max-width: 585px;
    width: 100%;
    float: left;
    padding-left: 70px;
}

.experience-and-rating__rating-box {
    position: relative;
    display: flex;
}

.experience-and-rating__rating-icon {
    position: relative;
    display: block;
}

.experience-and-rating__rating-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--assimox-base);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.experience-and-rating__rating-box:hover .experience-and-rating__rating-icon span {
    transform: scale(.9);
}

.experience-and-rating__rating-text {
    font-size: 23px;
    color: var(--assimox-white);
    margin-left: 40px;
}


/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: #838284;
    padding: 120px 0 113px;
}

.services-one__top {
    position: relative;
    display: block;
    margin-bottom: 69px;
}

.services-one__top-left {
    position: relative;
    display: block;
}

.services-one__top-left .section-title {
    margin-bottom: 0px;
}

.services-one__top-left .section-title__tagline {
    color: #11aded;
}

.services-one__top-left .section-title__tagline:before {
    background-color: #11aded;
}

.services-one__top-left .section-title__title {
    color: var(--assimox-white);
}

.services-one-top__right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 66px;
}

.services-one__top-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.services-one__top-icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: #11aded;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-one-top__right:hover .services-one__top-icon span {
    transform: scale(.9);
}

.services-one__top-text {
    font-size: 20px;
    color: #11aded;
    margin-left: 25px;
}

.services-one__bottom {
    position: relative;
    display: block;
    z-index: 1;
}

.services-one__img {
    position: absolute;
    bottom: 1px;
    right: -166px;
    z-index: -1;
}

.services-one__img img {
    width: auto;
}

.services-one__list-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.services-one__list {
    position: relative;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
}

.services-one__single {
    position: relative;
    display: block;
    border: 1px solid #314a54;
    padding: 39px 40px 32px;
}

.services-one__list:nth-child(1) .services-one__single {
    border-right: 0;
}

.services-one__list:nth-child(2) .services-one__single {
    border-right: 0;
}

.services-one__list:nth-child(4) .services-one__single {
    border-left: 0;
}

.services-one__list:nth-child(5) .services-one__single {
    border-top: 0;
    border-right: 0;
}

.services-one__list:nth-child(6) .services-one__single {
    border-top: 0;
    border-right: 0;
}

.services-one__list:nth-child(7) .services-one__single {
    border-top: 0;
}

.services-one__icon {
    position: relative;
    display: inline-block;
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--assimox-base);
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.services-one__title-box {
    position: relative;
    display: block;
    margin-top: 45px;
    margin-bottom: 26px;
}

.services-one__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 6px;
}

.services-one__title a {
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
    color: var(--assimox-base);
}

.services-one__sub-title {
    font-size: 17px;
    color: #b3dced;
    line-height: 20px;
}

.services-one__read-more {
    position: relative;
    display: block;
}

.services-one__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #11aded;
    font-weight: 700;
    font-family: var(--assimox-font-two);
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__read-more a i {
    padding-left: 10px;
}

.services-one__single:hover .services-one__read-more a {
    color: var(--assimox-base);
}

.services-one__all-services {
    position: relative;
    display: block;
    margin-top: 71px;
}

.services-one__all-services-inner {
    position: relative;
    display: block;
    text-align: center;
}

.services-one__all-services-inner p {
    font-size: 20px;
    color: var(--assimox-white);
}

.services-one__all-services-inner p a {
    position: relative;
    display: inline-block;
    color: #11aded;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__all-services-inner p a:hover {
    color: var(--assimox-base);
}

.services-one__all-services-inner p a:before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #11aded;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__all-services-inner p a:hover::before {
    background-color: var(--assimox-base);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
    position: relative;
    display: block;
    padding: 120px 0 160px;
}

.about-one__left {
    position: relative;
    display: block;
    margin-right: 112px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img {
    position: relative;
    display: block;
}

.about-one__img img {
    width: 100%;
}

.about-one__satisfaction {
    position: absolute;
    bottom: -40px;
    right: -70px;
    background-color: #11aded;
    text-align: center;
    max-width: 220px;
    width: 100%;
    padding: 24px 0 31px;
    border-radius: 7px;
}

.about-one__satisfaction-count-box {
    position: relative;
    display: block;
}

.about-one__satisfaction-count-box h3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    color: var(--assimox-white);
    font-weight: 700;
    font-family: var(--assimox-font) !important;
    line-height: 62px !important;
}

.about-one__satisfaction-letter {
    position: relative;
    top: -6px;
    text-transform: uppercase;
}

.about-one__satisfaction-plus {
    position: relative;
    font-size: 30px;
    top: -14px;
}

.about-one__satisfaction-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--assimox-white);
    line-height: 24px;
}

.about-one__right {
    position: relative;
    display: block;
}

.about-one__right .section-title {
    margin-bottom: 31px;
}

.about-one__text-1 {
    font-size: 20px;
    color: #242424;
    font-weight: 600;
    padding-bottom: 18px;
}

.about-one__text-2 {
    color: #494949;
}

.about-one__points-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 36px;
}

.about-one__points-list {
    position: relative;
    display: block;
}

.about-one__points-list + .about-one__points-list {
    margin-left: 75px;
}

.about-one__points-box li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points-box li + li {
    margin-top: 9px;
}

.about-one__points-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points-icon span {
    font-size: 20px;
    color: #d9072c;
}

.about-one__points-text {
    position: relative;
    display: block;
    margin-left: 15px;
}

.about-one__points-text p {
    font-weight: 700;
    color: #2a2a2a;
    font-family: var(--assimox-font-two);
}


/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
    position: relative;
    display: block;
    background-color: #013e7e;
    padding: 120px 0 120px;
    z-index: 1;
}

.why-choose-one__img-1 {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0% 100%);
}

.why-choose-one__img-1 img {
    width: auto;
}

.why-choose-one__img-1:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -739px;
    right: 0;
    background-color: #9bdffc;
    transform: skewX(-18deg) skewY(87deg);
}

.why-choose-one__content {
    position: relative;
    display: block;
    margin-right: 70px;
}

.why-choose-one__content .section-title {
    margin-bottom: 19px;
}

.why-choose-one__content .section-title__tagline {
    color: #11aded;
}

.why-choose-one__content .section-title__tagline:before {
    background-color: #11aded;
}

.why-choose-one__content .section-title__title {
    color: var(--assimox-white);
}

.why-choose-one__text {
    color: var(--assimox-white);
    padding-bottom: 37px;
}

.why-choose-one__points-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-right: 100px;
}

.why-choose-one__points-box:before {
    content: "";
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #415d7a;
}

.why-choose-one__points {
    position: relative;
    display: block;
    float: left;
}

.why-choose-one__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.why-choose-one__points li + li {
    margin-top: 65px;
}

.why-choose-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.why-choose-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 55px;
    background: rgb(23, 241, 255);
    background: linear-gradient(185deg, rgba(23, 241, 255, 1) 25%, rgba(9, 129, 255, 1) 72%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.why-choose-one__points li:hover .icon span {
    transform: scale(.9);
}

.why-choose-one__points li .text {
    margin-left: 15px;
}

.why-choose-one__points li .text p {
    font-size: 19px;
    color: var(--assimox-white);
    font-weight: 500;
    line-height: 24px;
}

.why-choose-one__points-two {
    margin-left: 90px;
}

/*--------------------------------------------------------------
# Process
--------------------------------------------------------------*/
.process {
    position: relative;
    display: block;
    background-color: #f6f7fa;
    counter-reset: count;
    padding: 120px 0 190px;
}

.process__single {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    border-radius: 5px;
    padding: 27px 35px 39px;
    padding-right: 28px;
    margin-bottom: 30px;
}

.process__count {
    position: absolute;
    top: 0;
    right: 24px;
    height: 60px;
    width: 40px;
    background-color: var(--assimox-base);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.process__count:before {
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 18px;
    line-height: 50px;
    font-weight: 400;
    counter-increment: count;
    content: "0" counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    color: #242424;
    text-align: center;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
}

.process__icon {
    position: relative;
    display: block;
}

.process__icon span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: #000000;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.process__single:hover .process__icon span {
    transform: scale(.9);
}

.process__title-box {
    position: relative;
    display: block;
    margin-top: 13px;
    margin-bottom: 14px;
}

.process__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}

.process__sub-title {
    color: #9a9a9c;
}

.process__text {
    font-size: 17px;
    line-height: 26px;
}


/*--------------------------------------------------------------
# Contact Bar
--------------------------------------------------------------*/
.contact-bar {
    position: relative;
    display: block;
    margin-top: -100px;
    z-index: 1;
}

.contact-bar__inne {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0b1953;
    margin-right: -100px;
    padding-left: 55px;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.contact-bar__inne:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100000px;
    content: "";
    background-color: #0b1953;
    z-index: -1;
}

.contact-bar__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -1000px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: lighten;
    opacity: .40;
    z-index: -1;
}

.contact-bar__left {
    position: relative;
    display: flex;
}

.contact-bar__left-icon {
    position: relative;
    display: block;
}

.contact-bar__left-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--assimox-base);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.contact-bar__left:hover .contact-bar__left-icon span {
    transform: scale(.9);
}

.contact-bar__left-content {
    margin-left: 40px;
    position: relative;
    top: -9px;
}

.contact-bar__title {
    font-size: 40px;
    color: var(--assimox-white);
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 10px;
}

.contact-bar__text {
    font-size: 20px;
    color: var(--assimox-white);
}

.contact-bar__right {
    position: relative;
    display: block;
}

.contact-bar__call {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-bar__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    width: 95px;
    border: 1px dashed var(--assimox-base);
    border-radius: 50%;
}

.contact-bar__call-icon img {
    width: auto;
}

.contact-bar__call-content {
    margin-left: 30px;
}

.contact-bar__call-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-bar__call-number a {
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-bar__call-number a:hover {
    color: var(--assimox-base);
}

.contact-bar__call-time {
    font-size: 20px;
    color: var(--assimox-white);
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    background-color: #eaedf3;
    padding: 215px 0 90px;
    margin-top: -95px;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__img-box {
    position: relative;
    display: block;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.team-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(2, 24, 57, .90);
    border-radius: 5px;
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
    width: 100%;
}

.team-one__img > img {
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img > img {
    transform: scale(1.05);
}

.team-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.team-one__shape-1 > img {
    width: auto;
}

.team-one__icon {
    position: absolute;
    top: 25px;
    right: 16px;
    z-index: 2;
}

.team-one__icon > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    background-color: var(--assimox-white);
    border-radius: 50%;
    font-size: 16px;
    color: #4a4e56;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__icon > a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.team-one__social-box {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
}

.team-one__social {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    padding-top: 4px;
    padding-bottom: 30px;
    border-radius: 30px;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: top center;
}

.team-one__single:hover .team-one__social {
    transform: scaleY(1.0);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.team-one__social li + li {
    margin-top: 15px;
}

.team-one__social li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4e56;
    font-size: 20px;
}

.team-one__content {
    position: absolute;
    bottom: 16px;
    left: 40px;
    z-index: 2;
}

.team-one__name {
    font-size: 21px;
    font-weight: 700;
    line-height: 31px;
}

.team-one__name a {
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__name a {
    color: var(--assimox-base);
}

.team-one__subtitle {
    font-size: 13px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--assimox-white);
    letter-spacing: 0.1em;
    font-family: var(--assimox-font-two);
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    padding: 88px 0 100px;
    z-index: 1;
}

.testimonial-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.testimonial-one__content-box {
    position: relative;
    display: block;
}

.testimonial-one__title-box {
    position: relative;
    display: inline-block;
    margin-left: 33px;
    margin-bottom: 32px;
}

.testimonial-one__title-box:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -33px;
    width: 20px;
    height: 2px;
    background-color: #2b1f48;
}

.testimonial-one__title-box h5 {
    font-size: 14px;
    color: #2b1f48;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 14px;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__single {
    position: relative;
    display: block;
}

.testimonial-one__content {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    border-radius: 10px;
    padding: 48px 40px 63px;
    z-index: 1;
}

.testimonial-one__quote {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.testimonial-one__quote i {
    font-size: 33px;
    color: var(--assimox-primary);
    position: relative;
    display: inline-block;
}

.testimonial-one__text {
    font-size: 20px;
    color: #2e2e2e;
    font-weight: 500;
    font-style: italic;
}

.testimonial-one__shape-1 {
    position: absolute;
    bottom: -46px;
    left: 120px;
}

.testimonial-one__shape-1 > img {
    width: auto !important;
}

.testimonial-one__shape-2 {
    position: absolute;
    left: 90px;
    top: 77px;
    z-index: -1;
}

.testimonial-one__shape-2 > img {
    width: auto !important;
}

.testimonial-one__client-info {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 68px;
    margin-left: 70px;
}

.testimonial-one__client-img {
    position: relative;
    display: block;
    width: 84px;
}

.testimonial-one__client-img > img {
    width: 100% !important;
    border-radius: 50%;
}

.testimonial-one__client-content {
    margin-left: 18px;
}

.testimonial-one__client-name {
    font-size: 18px;
    color: var(--assimox-white);
    font-weight: 700;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.testimonial-one__client-title {
    font-size: 14px;
    color: var(--assimox-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 14px;
    margin-left: 10px;
    margin-top: 6px;
}

.testimonial-one__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: 59px;
    right: 30px;
    text-align: center;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--assimox-white);
    margin: 0px 5px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.testimonial-one__carousel.owl-carousel .owl-dot.active {
    width: 13px;
    height: 13px;
    background-color: var(--assimox-black);
    border: 2px solid var(--assimox-black);
}

.testimonial-one__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.testimonial-one__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
    position: relative;
    display: block;
    background-color: #013e7e;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: lighten;
    opacity: .35;
    z-index: -1;
}

.faq-one__left {
    position: relative;
    display: block;
}

.faq-one__left .section-title__title {
    color: var(--assimox-white);
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border-radius: 0;
    background-color: var(--assimox-white);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 17px 35px 17px;
    padding-left: 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--assimox-gray);
    font-family: var(--assimox-font);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion + .accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    color: var(--assimox-black);
    position: absolute;
    top: 50%;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 8px 35px 39px;
    padding-right: 75px;
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    color: #494949;
    font-size: 18px;
    line-height: 26px;
}

.faq-one__right {
    position: relative;
    display: block;
    margin-left: 100px;
}

.faq-one__form-box {
    position: relative;
    display: block;
    background-color: #f1d551;
    padding: 63px 45px 60px;
}

.faq-one__form-box h2 {
    font-size: 32px;
    color: #242424;
    line-height: 42px;
    font-weight: 900;
    margin-bottom: 5px;
}

.faq-one__form-box p {
    padding-bottom: 7px;
}

.faq-one__form {
    position: relative;
    display: block;
    margin-top: 20px;
}

.faq-one__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.faq-one__form-input-box input[type="text"],
.faq-one__form-input-box input[type="email"] {
    height: 52px;
    width: 100%;
    border: 1px solid #e1cc6b;
    background-color: #f5dc69;
    color: var(--assimox-gray);
    padding-left: 25px;
    padding-right: 25px;
    outline: none;
    display: block;
    border-radius: 3px;
    font-weight: 400;
    font-size: 18px;
}

.faq-one__form-input-box textarea {
    height: 120px;
    width: 100%;
    border: 1px solid #e1cc6b;
    background-color: #f5dc69;
    padding: 15px 25px 15px;
    outline: none;
    border-radius: 3px;
    color: var(--assimox-gray);
    font-weight: 400;
    font-size: 18px;
}

.faq-one__form-input-box.text-message-box {
    position: relative;
    display: block;
    height: 120px;
}

.faq-one__form-btn-box {
    position: relative;
    display: block;
}

.faq-one__form-btn {
    border: none;
    background-color: #838284;
    color: var(--assimox-white);
    width: 100%;
    border-radius: 4px;
}

.faq-one__form-btn:before {
    background-color: var(--assimox-primary);
}

.faq-one__form-btn:hover {
    color: var(--assimox-black);
}

.main-slider__form-btn:hover:before {
    height: 500%;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
    position: relative;
    display: block;
    background-color: #f0f2f6;
    padding: 120px 0 90px;
}

.blog-one__top {
    position: relative;
    display: block;
    margin-bottom: 49px;
}

.blog-one__top-left {
    position: relative;
    display: block;
}

.blog-one__top-left .section-title {
    margin-bottom: 0;
}

.blog-one__top-right {
    position: relative;
    display: block;
}

.blog-one__top-text-1 {
    color: #494949;
    line-height: 26px;
}

.blog-one__bottom {
    position: relative;
    display: block;
}

.blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.blog-one__img-box {
    position: relative;
    display: block;
}

.blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.blog-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--assimox-black-rgb), .40);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
    border-radius: var(--assimox-bdr-radius);
    z-index: 1;
}

.blog-one__single:hover .blog-one__img:before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.blog-one__single.active .blog-one__img:before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.blog-one__img img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
    transform: scale(1.05);
}

.blog-one__single.active .blog-one__img img {
    transform: scale(1.05);
}

.blog-one__content-box {
    position: relative;
    display: block;
    background-color: #f0f2f6;
    padding-top: 34px;
    transform: translateY(-40px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 2;
}

.blog-one__single:hover .blog-one__content-box {
    transform: translateY(0px);
}

.blog-one__single.active .blog-one__content-box {
    transform: translateY(0px);
}

.blog-one__date {
    position: relative;
    display: block;
    margin-left: 40px;
}

.blog-one__date p {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    font-family: var(--assimox-font-two);
    letter-spacing: 0.1em;
    color: #6e6e6e;
}

.blog-one__date p span {
    position: relative;
    display: inline-block;
    color: var(--assimox-primary);
    margin-right: 25px;
}

.blog-one__date p span::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -40px;
    height: 2px;
    width: 30px;
    background-color: var(--assimox-primary);
}

.blog-one__date p span::after {
    position: absolute;
    top: 6px;
    right: -12px;
    bottom: 6px;
    width: 2px;
    background-color: var(--assimox-primary);
    content: "";
}

.blog-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    margin-top: 9px;
}

.blog-one__title a {
    color: #242424;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-one__title a:hover {
    color: var(--assimox-primary);
}


/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
    background-color#838284;
    z-index: 1;
}

.site-footer__top {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 24px 0 22px;
    z-index: 1;
}

.site-footer__inner {
    position: relative;
    display: block;
    padding: 0 80px 0;
}

.site-footer__contact-info {
    position: relative;
    display: block;
}

.site-footer__contact-points {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__contact-points li {
    position: relative;
    display: flex;
}

.site-footer__contact-points li:before {
    position: absolute;
    top: -25px;
    bottom: -23px;
    right: -50px;
    width: 1px;
    background-color: #d7d7d7;
    content: "";
}

.site-footer__contact-points li:last-child:before {
    display: none;
}

.site-footer__contact-points li .icon {
    position: relative;
    display: inline-block;
}

.site-footer__contact-points li .icon img {
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    filter: brightness(0);
}

.site-footer__contact-points li:hover img {
    transform: scale(.9);
}

.site-footer__contact-points li .content {
    position: relative;
    display: block;
    margin-left: 27px;
}

.site-footer__contact-points li .content h4 {
    font-size: 18px;
    font-weight: 400;
    line-height: 19px;
    color: #000;
    font-weight: 500;
    font-family: var(--assimox-font);
}

.site-footer__contact-points li .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #575757;
    font-family: var(--assimox-font);
}

.site-footer__contact-points li .content a {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #575757;
    font-family: var(--assimox-font);
}

.site-footer__contact-points li:last-child .content a {
    font-size: 22px;
    font-weight: 500;
    padding-top: 2px;
}

.site-footer__middle {
    position: relative;
    display: block;
    padding-top: 63px;
    padding-bottom: 41px;
}

.footer-widget__about {
    position: relative;
    display: block;
    margin-top: 4px;
}

.footer-widget__logo {
    position: relative;
    display: block;
}

.footer-widget__logo img {
    max-height: 46px;
}

.site-footer__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    color: #696d77;
    margin-top: 25px;
}

.footer-widget__useful-links {
    position: relative;
    display: block;
    margin-left: 40px;
}

.footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.footer-widget__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: var(--assimox-primary);
}

.footer-widget__useful-links-list {
    position: relative;
    display: block;
}

.footer-widget__useful-links-list li + li {
    margin-top: 6px;
}

.footer-widget__useful-links-list li a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: #696d77;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-widget__useful-links-list li a:hover {
    color: #000;
}

.footer-widget__services {
    position: relative;
    display: block;
    margin-left: 60px;
}

.footer-widget__newsletter {
    position: relative;
    display: block;
}

.footer-widget__newsletter .footer-widget__title-box {
    margin-bottom: 21px;
}

.footer-widget__newsletter-text {
    font-size: 17px;
    line-height: 22px;
    color: #696d77;
}

.footer-widget__subscribe-box {
    position: relative;
    display: block;
    margin-top: 17px;
    margin-bottom: 30px;
}

.footer-widget__subscribe-input-box {
    position: relative;
    display: block;
}

.footer-widget__subscribe-input-box input[type="email"] {
    height: 47px;
    width: 100%;
    background-color: transparent;
    border: 1px solid #2e3034;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    color: #696d77;
    padding-left: 20px;
    padding-right: 60px;
    border-radius: 3px;
}

.footer-widget__subscribe-btn {
    position: absolute;
    top: 1px;
    right: 0;
    width: 54px;
    bottom: 1px;
    border: none;
    background-color: #edd45e;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-size: 10px;
    color: var(--assimox-white);
    padding: 0;
    margin: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__subscribe-btn:hover {
    background-color: var(--assimox-white);
}

.footer-widget__subscribe-btn img {
    width: auto;
}

.site-footer__social {
    position: relative;
    display: flex;
    align-items: center;
}

.site-footer__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 17px;
    border: 1px solid #9da2ae;
    border-radius: 50%;
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__social a:hover {
    border: 1px solid var(--assimox-base);
    background-color: var(--assimox-base);
    color: var(--assimox-black);
}

.site-footer__social a + a {
    margin-left: 14px;
}

.site-footer__bottom {
    position: relative;
    display: block;
}

.site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--assimox-white-rgb), .10);
    padding: 20px 0 29px;
}

.site-footer__bottom-text {
    color: #696d77;
}

.site-footer__bottom-text a {
    color: #696d77;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
    color: var(--assimox-base);
}

.site-footer__bottom-text-two {
    position: relative;
    display: flex;
}

.site-footer__bottom-text-two p {
    font-size: 17px;
    line-height: 27px;
    color: #696d77;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-text-two p a {
    color: #696d77;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__bottom-text-two p a:hover {
    color: var(--assimox-base);
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-two__left {
    position: relative;
    display: block;
    margin-right: 60px;
}

.about-two__img-box {
    position: relative;
    display: block;
}

.about-two__img {
    position: relative;
    display: block;
}

.about-two__img img {
    width: 100%;
    border-radius: 8px;
}

.about-two__experience-box {
    position: absolute;
    right: -30px;
    bottom: -32px;
    max-width: 202px;
    width: 100%;
    background-color: var(--assimox-base);
    border-radius: 10px;
    text-align: center;
    padding: 31px 27px 39px;
}

.about-two__experience-box span {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
    color: #fff;
}

.about-two__experience-box p {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    color: #fff;
    margin-top: 7px;
}

.about-two__right {
    position: relative;
    display: block;
}

.about-two__right .section-title {
    margin-bottom: 27px;
    margin-right: -46px;
}

.about-two__text-1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #242424;
}

.about-two__points {
    position: relative;
    display: block;
    margin-top: 27px;
    margin-bottom: 27px;
}

.about-two__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-two__points li + li {
    margin-top: 6px;
}

.about-two__points li .icon {
    position: relative;
    display: inline-block;
    top: 1px;
}

.about-two__points li .icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 9px;
    background-color: #d6481d;
    border-radius: 50%;
    color: var(--assimox-white);
}

.about-two__points li .text {
    position: relative;
    display: block;
    margin-left: 10px;
}

.about-two__points li .text p {
    font-weight: 600;
    color: #0e2a4e;
}

.about-two__text-2 {
    position: relative;
    display: block;
}

.about-two__btn-and-call-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.about-two__btn-box {
    position: relative;
    display: block;
}

.about-two__btn {
    font-size: 14px;
    padding: 15px 50px 15px;
    background-color: var(--assimox-base);
}

.about-two__call-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 33px;
}

.about-two__call-box .icon {
    position: relative;
    display: inline-block;
    top: 3px;
    margin-right: 16px;
}

.about-two__call-box .icon span {
    position: relative;
    display: inline-block;
    font-size: 38px;
    color: #000000;
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.about-two__call-box:hover .icon span {
    transform: scale(.9);
}

.about-two__call-box .text {
    position: relative;
    display: block;
}

.about-two__call-box .text h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    font-family: var(--assimox-font);
}

.about-two__call-box .text h3 a {
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-two__call-box .text h3 a:hover {
    color: var(--assimox-primary);
}

.about-two__call-box .text p {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: var(--assimox-black);
    font-family: var(--assimox-font-two);
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.services-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 575px;
    background-color: var(--assimox-primary);
    z-index: -1;
}

.services-two__top {
    position: relative;
    display: block;
}

.services-two__top .section-title__title {
    color: var(--assimox-white);
}

.services-two__top .section-title {
    margin-bottom: 69px;
}

.services-two__left {
    position: relative;
    display: block;
}

.services-two__right {
    position: relative;
    display: block;
    margin-left: 292px;
    margin-top: 20px;
}

.services-two__right-text {
    font-size: 20px;
    line-height: 22px;
    color: var(--assimox-white);
}

.services-two__right-btn {
    position: relative;
    display: inline-block;
}

.services-two__right-btn a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__right-btn a::before {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #0f99d3;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__right-btn a:hover {
    color: var(--assimox-white);
}

.services-two__right-btn a:hover:before {
    background-color: var(--assimox-white);
}

.services-two__bottom {
    position: relative;
    display: block;
}

.services-two__bottom .container {
    max-width: 1300px;
}

.services-two__carousel {
    position: relative;
    display: block;
}

.services-two__single {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.services-two__img {
    position: relative;
    display: block;
}

.services-two__img img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.services-two__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px;
}

.services-two__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.services-two__title a {
    color: #222222;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__title a:hover {
    color: var(--assimox-base);
}

.services-two__text {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 24px;
    margin-top: 8px;
}

.services-two__text::before {
    position: absolute;
    bottom: -25px;
    left: 86px;
    width: 34px;
    height: 3px;
    background-color: #d01818;
    content: "";
}

.services-two__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.services-two__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.services-two__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.services-two__carousel.owl-theme .owl-nav {
    position: relative;
    bottom: 0;
    margin-top: 60px;
}

.services-two__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__carousel.owl-theme .owl-nav .owl-next span {
    font-weight: 900;
}

.services-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-two__carousel.owl-theme .owl-nav .owl-prev span {
    font-weight: 900;
}

.services-two__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.services-two__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.services-two__carousel.owl-theme .owl-nav .owl-next span,
.services-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-two__carousel.owl-theme .owl-nav .owl-next:hover,
.services-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    border: 2px solid var(--assimox-black);
    color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Our Mission
--------------------------------------------------------------*/
.our-mission {
    position: relative;
    display: block;
    padding-bottom: 120px;
    z-index: 1;
}

.our-mission__left {
    position: relative;
    display: block;
    margin-right: 43px;
}

.our-mission__left .section-title {
    margin-bottom: 29px;
}

.our-mission__text-1 {
    color: #49494A;
}

.our-mission__person {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 44px;
}

.our-mission__person-signeture {
    position: absolute;
    top: 5px;
    right: 90px;
}

.our-mission__person-signeture img {
    width: auto;
}

.our-mission__person-img {
    position: relative;
    display: block;
}

.our-mission__person-img img {
    width: 100%;
    border-radius: 50%;
}

.our-mission__person-content {
    position: relative;
    display: block;
    margin-left: 30px;
}

.our-mission__person-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    color: #161837;
    font-family: var(--assimox-font);
}

.our-mission__person-content p {
    line-height: 27px;
    color: #161837;
}

.our-mission__right {
    position: relative;
    display: block;
    margin-top: 33px;
}

.our-mission__single {
    position: relative;
    display: block;
}

.our-mission__title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: var(--assimox-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--assimox-font-two);
    margin-left: 30px;
}

.our-mission__title:before {
    position: absolute;
    left: -30px;
    top: 7px;
    width: 20px;
    height: 2px;
    background-color: var(--assimox-primary);
    content: "";
}

.our-mission__text-2 {
    color: #494949;
    margin-top: 12px;
}

/*--------------------------------------------------------------
# Vission
--------------------------------------------------------------*/
.vission {
    position: relative;
    display: block;
    z-index: 1;
}

.vission__wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.vission__left {
    position: relative;
    display: block;
    float: left;
    width: 40%;
    min-height: 615px;
}

.vission__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.vission__right {
    position: relative;
    display: block;
    float: right;
    width: 60%;
    background-color: #067eca;
    overflow: hidden;
    z-index: 1;
}

.vission__bg-img {
    position: absolute;
    right: 0;
    left: -103px;
    top: -124px;
    bottom: -180px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: soft-light;
    opacity: .70;
    z-index: -1;
}

.vission__right-inner {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 778px;
    width: 100%;
    float: left;
    padding: 95px 0 98px;
}

.vission__count-area {
    position: relative;
    display: block;
    max-width: 220px;
    width: 100%;
    padding-left: 63px;
    padding-right: 50px;
}

.vission__count-area::before {
    content: "";
    position: absolute;
    top: -9px;
    bottom: -23px;
    right: 0;
    width: 1px;
    background-color: rgba(var(--assimox-white-rgb), .35);
}

.vission__count-box {
    position: relative;
    display: block;
}

.vission__count-box li {
    position: relative;
    display: block;
}

.vission__count-box li + li {
    margin-top: 95px;
}

.vission__count-box li h3 {
    font-size: 50px;
    font-weight: 900;
    line-height: 50px !important;
    font-family: var(--assimox-font-two) !important;
    color: var(--assimox-white);
    text-transform: uppercase;
}

.vission__successful-letter {
    font-size: 50px;
    font-weight: 900;
    line-height: 50px !important;
    font-family: var(--assimox-font-two) !important;
    color: var(--assimox-white);
    text-transform: uppercase;
    position: relative;
    top: 11px;
}

.vission__successful-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 23px;
    color: var(--assimox-white);
    margin-top: 3px;
}

.vission__btn {
    position: relative;
    display: block;
    margin-top: 16px;
}

.vission__btn a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--assimox-font-two);
    color: var(--assimox-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.vission__btn a:hover {
    color: var(--assimox-black);
}

.vission__btn a span {
    font-size: 18px;
    position: relative;
    top: 3px;
    margin-right: 16px;
}


.company-vission {
    position: relative;
    display: block;
    padding-left: 54px;
}

.company-vission .section-title__tagline {
    color: var(--assimox-white);
}

.company-vission .section-title__tagline:before {
    background-color: var(--assimox-white);
}

.company-vission .section-title__title {
    color: var(--assimox-white);
}

.company-vission .section-title {
    margin-bottom: 32px;
}

.company-vission__text-1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--assimox-white);
}

.company-vission__text-2 {
    color: var(--assimox-white);
    margin-top: 30px;
}

/*------------------------------------------
  flixible price
--------------------------------------------*/
.flixible-price {
    position: relative;
    display: block;
    background-color: #ecf0f7;
    padding: 120px 0 120px;
    z-index: 10;
}

.flixible-price .section-title {
    margin-bottom: 43px;
}

.flixible-price .section-title__tagline {
    margin-left: 0;
}

.flixible-price .row {
    --bs-gutter-x: 100px;
}

.flixible-price__box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.flixible-price__box ul {
    position: relative;
    display: block;
    padding: 0;
}

.flixible-price__box ul li {
    position: relative;
    display: block;
    z-index: 1;
}

.flixible-price__box ul li + li {
    margin-top: 24px;
}

.flixible-price__box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    right: 0;
    height: 2px;
    border-bottom: 2px dotted var(--assimox-black);
    z-index: -1;
}

.flixible-price__box ul li span {
    position: relative;
    display: inline-block;
    background-color: #ecf0f7;
    padding-right: 10px;
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.flixible-price__box ul li b {
    position: relative;
    display: inline-block;
    float: right;
    padding-left: 10px;
    font-weight: 500;
    background-color: #ecf0f7;
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.flixible-price__btn-box {
    position: relative;
    display: block;
    padding-top: 33px;
}

.flixible-price__btn {
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    font-weight: 700;
    padding: 11px 31px 11px;
}

.flixible-price__btn i {
    position: relative;
    font-size: 23px;
    top: 5px;
    margin-left: 8px;
}

.flixible-price__btn:hover {
    color: var(--assimox-white);
}

.flixible-price__btn:hover i {
    color: var(--assimox-white);
}

.flixible-price__btn:hover::before {
    background-color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-Two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.blog-Two .blog-one__content-box {
    background-color: #fff;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    box-shadow: 0px 0px 65.8px 4.2px rgba(0, 0, 0, 0.08);
    padding: 45px 0 24px;
}

.feature-one__single {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    margin-bottom: 16px;
}

.feature-one__single-2::before {
    display: none;
}

.feature-one__single::before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -1px;
    width: 1px;
    right: 40px;
    background-color: #d0d0d0;
}

.feature-one__icon {
    position: relative;
    display: inline-block;
}

.feature-one__icon::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -17px;
    width: 49px;
    height: 49px;
    background-color: #f1d551;
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-one__single:hover .feature-one__icon::before {
    transform: scale(1.2);
}

.feature-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: #295eb2;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
    transform: scale(0.9);
}

.feature-one__content {
    position: relative;
    display: block;
    margin-left: 42px;
}

.feature-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.feature-one__title a {
    color: #242424;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.feature-one__title a:hover {
    color: var(--assimox-primary);
}

.feature-one__text {
    color: #242424;
    line-height: 26px;
    margin-top: 7px;
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
    position: relative;
    display: block;
    padding: 120px 0 115px;
}

.about-three__left {
    position: relative;
    display: block;
    margin-right: 63px;
}

.about-three__left .section-title {
    margin-bottom: 24px;
}

.about-three__text-1 {
    font-size: 21px;
    font-weight: 600;
}

.about-three__text-2 {
    position: relative;
    display: block;
    margin-top: 27px;
    margin-bottom: 26px;
}

.about-three__text-3 {
    position: relative;
    display: block;
}

.about-three__points-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 29px;
}

.about-three__points {
    position: relative;
    display: block;
}

.about-three__points + .about-three__points {
    margin-left: 104px;
}

.about-three__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-three__points li + li {
    margin-top: 6px;
}

.about-three__points li .icon {
    position: relative;
    display: inline-block;
    top: 2px;
}

.about-three__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #057def;
}

.about-three__points li .text {
    position: relative;
    display: block;
    margin-left: 12px;
}

.about-three__points li .text p {
    font-weight: 500;
    color: #000000;
}

.about-three__right {
    position: relative;
    display: block;
}

.about-three__img-box {
    position: relative;
    display: block;
}

.about-three__img-2 {
    position: absolute;
    bottom: -189px;
    right: 60px;
}

.about-three__img-2 img {
    width: auto;
}

.about-three__img {
    position: relative;
    display: block;
}

.about-three__img img {
    width: 100%;
}

.about-three__count-box {
    position: absolute;
    left: -33px;
    bottom: -127px;
    background-color: #11aded;
    max-width: 240px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    padding-bottom: 26px;
}

.about-three__count-box h3 {
    font-size: 62px;
    font-weight: 700;
    line-height: 62px !important;
    font-family: var(--assimox-font) !important;
    color: var(--assimox-white);
    text-transform: uppercase;
}

.about-three__letter {
    font-size: 62px;
    font-weight: 700;
    line-height: 72px !important;
    font-family: var(--assimox-font) !important;
    color: var(--assimox-white);
    text-transform: uppercase;
    top: 18px;
    position: relative;
}

.about-three__plus {
    font-size: 40px;
    font-weight: 700;
    line-height: 46px !important;
    font-family: var(--assimox-font) !important;
    color: var(--assimox-white);
    position: relative;
    top: -1px;
}

.about-three__count-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--assimox-white);
}

/*--------------------------------------------------------------
# Services Three
--------------------------------------------------------------*/
.services-three {
    position: relative;
    display: block;
    background-color: #f0f2f6;
    overflow: hidden;
    padding: 120px 0 70px;
}

.services-three__top {
    position: relative;
    display: block;
    margin-bottom: 65px;
}

.services-three__top .section-title {
    margin-bottom: 21px;
}

.services-three__text {
    position: relative;
    display: block;
}

.services-three__text a {
    font-size: 19px;
    font-weight: 700;
    color: #df0b0b;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__text a:hover {
    color: var(--assimox-black);
}

.services-three__single {
    position: relative;
    display: block;
    border: 1px solid #cfcfcf;
    padding: 39px 38px 38px;
}

.services-three__single-1 {
    border-right: 0;
}

.services-three__single-2 {
    border-right: 0;
}

.services-three__single-3 {
    border-right: 0;
}

.services-three__single-4 {
    border-right: 0;
}

.services-three__icon {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.services-three__icon::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 1px;
    width: 36px;
    height: 36px;
    background-color: var(--assimox-base);
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: -1;
}

.services-three__single:hover .services-three__icon::before {
    transform: scale(1.2);
}

.services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: #013e7e;
    transition-delay: 0.1s;
    transition: all 500ms ease;
}

.services-three__single:hover .services-three__icon span {
    transform: rotateY(180deg);
    transition-delay: 0.1s;
}

.services-three__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 28px;
}

.services-three__title a {
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__title a:hover {
    color: var(--assimox-base);
}

.services-three__text {
    color: #494949;
}

.services-three__read-more {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-three__read-more a {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--assimox-font-two);
    text-transform: uppercase;
    letter-spacing: 0.045em;
    color: #11aded;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__read-more a:hover {
    color: var(--assimox-black);
}

.services-three__read-more a span {
    margin-left: 5px;
}

.services-three__carousel .owl-stage-outer {
    border-right: 1px solid #cfcfcf;
}

.services-three__carousel.owl-theme .owl-nav {
    position: relative;
    margin-top: 50px;
}

.services-three__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #cccccc;
    background-color: transparent;
    border: 2px solid #cccccc;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__carousel.owl-theme .owl-nav .owl-next span {
    font-weight: 900;
}

.services-three__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    color: #cccccc;
    background-color: transparent;
    border: 2px solid #cccccc;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-three__carousel.owl-theme .owl-nav .owl-prev span {
    font-weight: 900;
}

.services-three__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 10px;
}

.services-three__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 10px;
}

.services-three__carousel.owl-theme .owl-nav .owl-next span,
.services-three__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-three__carousel.owl-theme .owl-nav .owl-next:hover,
.services-three__carousel.owl-theme .owl-nav .owl-prev:hover {
    border: 2px solid var(--assimox-black);
    color: var(--assimox-black);
}


/*--------------------------------------------------------------
# Our Mission Two
--------------------------------------------------------------*/
.our-mission__two {
    position: relative;
    display: block;
    padding: 120px 0 112px;
}


.our-mission__two .our-mission__right {
    margin-top: 166px;
}

/*--------------------------------------------------------------
# Project One
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 120px 0 220px;
    background-color: #f0f4fb;
}

.project-one__top {
    position: relative;
    display: block;
}

.project-one__bottom {
    position: relative;
    display: block;
}

.project-one__bottom .container {
    max-width: 1600px;
}

.project-one__single {
    position: relative;
    display: block;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    z-index: 1;
}

.project-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(2, 22, 41, .50);
    border-radius: 5px;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    background-position: center center;
    z-index: 1;
}

.project-one__single:hover .project-one__img:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}

.project-one__img img {
    width: 100%;
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1.05);
}

.project-one__content {
    position: absolute;
    left: 30px;
    bottom: 26px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.project-one__single:hover .project-one__content {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.4s;
}

.project-one__title {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--assimox-font);
}

.project-one__title a {
    color: #fff;
}

.project-one__button {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(20deg) translateX(100%);
    -ms-transform: perspective(400px) rotateX(20deg) translateX(100%);
    transform: perspective(400px) rotateX(20deg) translateX(100%);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 2;
}

.project-one__single:hover .project-one__button {
    opacity: 1.0;
    -webkit-transform: perspective(400px) rotateX(0deg) translateX(0%);
    -ms-transform: perspective(400px) rotateX(0deg) translateX(0%);
    transform: perspective(400px) rotateX(0deg) translateX(-0%);
    transition-delay: .3s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
}

.project-one__button a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--assimox-white);
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.project-one__button a:hover {
    background-color: #ecba16;
}

.project-one__button a + a {
    margin-top: 5px;
}

.project-one__button a > img {
    width: auto !important;
}

.project-one__carousel.owl-theme .owl-nav {
    position: absolute;
    top: -132px;
    right: 200px;
}

.project-one__carousel.owl-theme .owl-nav .owl-next {
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 50%;
    color: #a7afb6;
    background-color: transparent;
    border: 2px solid #a7afb6;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__carousel.owl-theme .owl-nav .owl-next span {
    font-weight: 900;
}

.project-one__carousel.owl-theme .owl-nav .owl-prev {
    height: 44px;
    width: 44px;
    line-height: 44px;
    border-radius: 50%;
    color: #a7afb6;
    background-color: transparent;
    border: 2px solid #a7afb6;
    font-size: 16px;
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-one__carousel.owl-theme .owl-nav .owl-prev span {
    font-weight: 900;
}

.project-one__carousel.owl-theme .owl-nav .owl-next {
    margin-left: 5px;
}

.project-one__carousel.owl-theme .owl-nav .owl-prev {
    margin-right: 5px;
}

.project-one__carousel.owl-theme .owl-nav .owl-next span,
.project-one__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-one__carousel.owl-theme .owl-nav .owl-next:hover,
.project-one__carousel.owl-theme .owl-nav .owl-prev:hover {
    border: 2px solid var(--assimox-black);
    color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Contact Bar
--------------------------------------------------------------*/
.contact-bar__two {
    position: relative;
    display: block;
    margin-top: -100px;
    z-index: 2;
}

.contact-bar__two-inne {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--assimox-white);
    margin-right: -100px;
    padding-left: 55px;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.contact-bar__two-inne:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100000px;
    content: "";
    background-color: var(--assimox-white);
    z-index: -1;
}

.contact-bar__two-left {
    position: relative;
    display: flex;
}

.contact-bar__two-left-icon {
    position: relative;
    display: block;
}

.contact-bar__two-left-icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--assimox-primary);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.contact-bar__two-left:hover .contact-bar__two-left-icon span {
    transform: scale(.9);
}

.contact-bar__two-left-content {
    margin-left: 40px;
    position: relative;
    top: -9px;
}

.contact-bar__two-title {
    font-size: 40px;
    color: var(--assimox-black);
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 10px;
}

.contact-bar__two-text {
    font-size: 20px;
    color: var(--assimox-black);
}

.contact-bar__two-right {
    position: relative;
    display: block;
}

.contact-bar__two-call {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-bar__two-call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    width: 95px;
    border: 1px dashed var(--assimox-primary);
    border-radius: 50%;
}

.contact-bar__two-call-icon img {
    width: auto;
}

.contact-bar__two-call-content {
    margin-left: 30px;
}

.contact-bar__two-call-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-bar__two-call-number a {
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-bar__two-call-number a:hover {
    color: var(--assimox-base);
}

.contact-bar__two-call-time {
    font-size: 20px;
    color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
    position: relative;
    display: block;
    padding: 174px 0 100px;
    margin-top: -96px;
    z-index: 1;

}

/*------------------------------------------
  Flixible Price Two
--------------------------------------------*/
.flixible-price__two {
    position: relative;
    display: block;
    background-color: #fbfcfd;
    padding: 120px 0 120px;
    z-index: 10;
}

.flixible-price__two .section-title__tagline {
    color: #d90429;
    margin-left: 0;
}

.flixible-price__two .section-title__tagline:before {
    background-color: #d90429;
}

.flixible-price__two .section-title__tagline::after {
    position: absolute;
    right: -30px;
    top: 7px;
    width: 20px;
    height: 2px;
    background-color: #d90429;
    content: "";
}

.flixible-price__two .section-title {
    margin-bottom: 43px;
}

.flixible-price__two .row {
    --bs-gutter-x: 100px;
}

.flixible-price__two-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.flixible-price__two-box ul {
    position: relative;
    display: block;
    padding: 0;
}

.flixible-price__two-box ul li {
    position: relative;
    display: block;
    z-index: 1;
}

.flixible-price__two-box ul li + li {
    margin-top: 24px;
}

.flixible-price__two-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    right: 0;
    height: 2px;
    border-bottom: 2px dotted var(--assimox-black);
    z-index: -1;
}

.flixible-price__two-box ul li span {
    position: relative;
    display: inline-block;
    background-color: #fbfcfd;
    padding-right: 10px;
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.flixible-price__two-box ul li b {
    position: relative;
    display: inline-block;
    float: right;
    padding-left: 10px;
    font-weight: 500;
    background-color: #fbfcfd;
    color: #0e2a4e;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.flixible-price__two-btn-box {
    position: relative;
    display: block;
    padding-top: 33px;
}

.flixible-price__two-btn {
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    font-weight: 700;
    padding: 11px 31px 11px;
}

.flixible-price__two-btn i {
    position: relative;
    font-size: 23px;
    top: 5px;
    margin-left: 8px;
}

.flixible-price__two-btn:hover {
    color: var(--assimox-white);
}

.flixible-price__two-btn:hover i {
    color: var(--assimox-white);
}

.flixible-price__two-btn:hover::before {
    background-color: var(--assimox-black);
}


/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    display: block;
    background-color: #eff2f5;
    padding: 120px 0 112px;
}

.contact-one__shape-1 {
    position: absolute;
    top: -46px;
    left: -63px;
    opacity: .40;
}

.contact-one__shape-1 {
    width: auto;
}

.contact-one__left {
    position: relative;
    display: block;
}

.contact-one__left .section-title {
    margin-bottom: 12px;
}

.contact-one__phone {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-one__phone-img {
    position: relative;
    display: block;
    width: 70px;
}

.contact-one__phone-img img {
    width: 100%;
    border-radius: 50%;
}

.contact-one__phone-content {
    margin-left: 30px;
}

.contact-one__phone-content p {
    color: #444444;
    font-weight: 600;
}

.contact-one__phone-content h4 {
    font-size: 22px;
    line-height: 22px;
    font-family: var(--assimox-font);
    margin-top: 2px;
    font-weight: 600;
}

.contact-one__phone-content h4 a {
    color: #0b1970;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-one__phone-content h4 a:hover {
    color: var(--assimox-base);
}

.contact-one__time {
    color: #444444;
}

.contact-one__address {
    position: relative;
    display: block;
    margin-top: 20px;
}

.contact-one__address h4 {
    font-size: 18px;
    color: #444444;
    font-weight: 600;
    font-family: var(--assimox-font);
}

.contact-one__address p {
    color: #444444;
}

.contact-one__right {
    position: relative;
    display: block;
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: var(--assimox-white);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 18px;
    color: #444444;
    display: block;
    border: 1px solid #dbdcdd;
    border-radius: 8px;
}

.contact-one__input-box textarea {
    font-size: 18px;
    color: #444444;
    height: 200px;
    width: 100%;
    background-color: var(--assimox-white);
    padding: 18px 30px 30px;
    border: 1px solid #dbdcdd;
    border-radius: 8px;
    outline: none;
    margin-bottom: 0px;
}

.contact-one__btn {
    background-image: -moz-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(217, 4, 41) 0%, rgb(217, 24, 23) 57%, rgb(217, 44, 4) 100%);
    border: none;
    width: 100%;
    border-radius: 4px;
    font-size: 15px;
}

.contact-one__btn:hover {
    color: var(--assimox-white);
}

.contact-one__btn:hover:before {
    background-color: var(--assimox-black);
}

.contact-one__btn span {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 2px solid var(--assimox-white);
    border-radius: 50%;
    color: var(--assimox-white);
    font-size: 10px;
    text-align: center;
    line-height: 17px;
    top: -1px;
    margin-left: 13px;
    transition: all 0.5s linear;
}

.contact-one__input-box.text-message-box {
    height: 200px;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    overflow: hidden;
    padding:60px 0 30px;
    z-index: 10;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
}

.page-header__title {
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
    text-transform: capitalize;
    line-height: 70px;
}

.thm-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.thm-breadcrumb li {
    position: relative;
    display: block;
    padding-right: 14px;
    margin-right: 13px;
    color: #ffffff;
}

.thm-breadcrumb li:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background-color: #ffffff;
    transform: rotate(12deg);
}

.thm-breadcrumb li:last-child:before {
    display: none;
}

.thm-breadcrumb li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.thm-breadcrumb li a {
    color: #ffffff;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-details__left {
    position: relative;
    display: block;
}

.blog-details__top {
    position: relative;
    display: block;
}

.blog-details__img-box {
    position: relative;
    display: block;
}

.blog-details__img {
    position: relative;
    display: block;
}

.blog-details__img img {
    width: 100%;
}

.blog-details__meta-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-details__date {
    position: relative;
    display: block;
}

.blog-details__date p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: var(--assimox-primary);
    letter-spacing: 0.02em;
}

.blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 46px;
    top: 2px;
}

.blog-details__meta li {
    position: relative;
    display: block;
}

.blog-details__meta li:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 8px;
    left: -17px;
    background-color: #666666;
    width: 1px;
    transform: rotate(15deg);
}

.blog-details__meta li:first-child:before {
    display: none;
}

.blog-details__meta li + li {
    margin-left: 35px;
}

.blog-details__meta li a {
    color: #666666;
}

.blog-details__bottom {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    margin-left: 40px;
    padding-left: 30px;
    padding-top: 31px;
    margin-top: -55px;
}

.blog-detals__content-box {
    position: relative;
    display: block;
    margin-top: 44px;
}

.blog-details__title-1 {
    font-size: 34px;
    font-weight: 900;
    line-height: 44px;
    margin-bottom: 20px;
}

.blog-detals__two-colum-box {
    position: relative;
    display: block;
    margin-top: 44px;
}

.blog-detals__two-colum-box-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 42px;
    margin-bottom: 16px;
    color: #242424;
}

.blog-detals__two-colum-text {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-detals__two-colum-text li {
    color: #444444;
}

.blog-detals__two-colum-text li + li {
    margin-left: 40px;
}

.blog-details__text-2 {
    color: #444444;
    padding-top: 46px;
}

.blog-details__text-2 a {
    color: #444444;
    display: inline-block;
    text-decoration: underline;
}

.comment-one-box {
    position: relative;
    display: block;
    margin-top: 55px;
}

.comment-one__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 42px;
    margin-bottom: 23px;
    color: #242424;
}

.comment-one {
    position: relative;
    display: block;
    border: 1px solid #e8eaf2;

}

.comment-one__single {
    position: relative;
    display: flex;
    border-bottom: 1px solid #dee1ed;
    padding: 25px 25px 35px;
}

.comment-one__image {
    position: relative;
    display: block;
    max-width: 70px;
    width: 100%;
}

.comment-one__image img {
    width: 100%;
}

.comment-one__content {
    margin-left: 30px;
    margin-top: -2px;
}

.comment-one__content h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    font-family: var(--assimox-font);
}

.comment-one__content p {
    color: #444444;
    line-height: 23px;
    padding-top: 8px;
    padding-bottom: 12px;
}

.comment-one__content h4 {
    font-size: 18px;
    color: #aeaeae;
    font-weight: 500;
    font-family: var(--assimox-font);
    line-height: 18px;
}

.comment-one__content h4 a {
    color: #d90429;
    position: relative;
    display: inline-block;
    padding-left: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-one__content h4 a:hover {
    color: var(--assimox-primary);
}

.comment-one__single--four {
    padding-left: 125px;
}

.comment-one__single.border-none {
    border-bottom: 0;
}

.comment-one__single-2 {
    background-color: #f7f7f7;
}

.comment-one__single-5 {
    background-color: #f7f7f7;
}

.comment-form {
    position: relative;
    display: block;
    margin-top: 55px;
}

.comment-one__form {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    padding: 50px 35px 40px;
    border: 1px solid #dee1ed;
}

.comment-form__title {
    font-size: 32px;
    font-weight: 900;
    line-height: 42px;
    margin-bottom: 20px;
    color: #242424;
}

.comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 45px;
    width: 100%;
    border: 1px solid #eeeeee;
    background-color: var(--assimox-white);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 17px;
    color: #737373;
    display: block;
}

.comment-form__input-box textarea {
    font-size: 18px;
    color: #737373;
    height: 174px;
    width: 100%;
    border: 1px solid #eeeeee;
    background-color: var(--assimox-white);
    padding: 15px 20px 15px;
    outline: none;
    margin-bottom: 0px;
    font-weight: 400;
}

.comment-form__btn-box {
    position: relative;
    display: block;
    margin-top: 50px;
}

.comment-form__btn {
    border: none;
    border-radius: 30px;
    background-color: var(--assimox-base);
    color: #010101;
    font-size: 15px;
    padding: 13px 48px 13px;
}

.comment-form__btn:hover {
    color: var(--assimox-white);
}

.comment-form__btn::before {
    background-color: var(--assimox-black);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }
}

.sidebar {
    position: relative;
    display: block;
    margin-left: 30px;
}

.sidebar__title {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 26px;
    font-weight: 700;
    color: #0b1a3a;
    font-family: var(--assimox-font);
}

.sidebar__title:before {
    content: "";
    position: absolute;
    bottom: 8px;
    right: -33px;
    width: 20px;
    height: 2px;
    background-color: #0b1a3a;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: #f7f7f7;
    padding-left: 20px;
    height: 50px;
    width: 100%;
    padding-right: 80px;
    border-radius: 5px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: #444444;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #444444;
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #444444;
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: #444444;
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: #444444;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: #444444;
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: #7c7c7c;
    font-size: 19px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.sidebar__category {
    position: relative;
    display: block;
    margin-top: 40px;
    margin-bottom: 63px;
    z-index: 1;
}

.sidebar__category .sidebar__title {
    margin-bottom: 11px;
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li a {
    color: var(--assimox-gray);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 5px 0 7px;
    border-bottom: 1px solid #d5cac3;
}

.sidebar__category-list li:hover a {
    color: var(--assimox-black);
}

.sidebar__category-list li:last-child a {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #d3d3d3;
    text-align: center;
    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;
    font-size: 16px;
}

.sidebar__category-list li:hover a span {
    color: var(--assimox-black);
}

.sidebar__post {
    position: relative;
    display: block;
    z-index: 1;
}

.sidebar__post .sidebar__title {
    margin-left: 0px;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 16px;
}

.sidebar__post-list li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.sidebar__post-image {
    margin-right: 25px;
}

.sidebar__post-image > img {
    width: 70px;
}

.sidebar__post-content {
    position: relative;
    display: block;
    top: 1px;
}

.sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: var(--assimox-font);
}

.sidebar__post-content h3 a {
    color: #242424;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__post-content h3 a:hover {
    color: #d90429;
}

.sidebar__post-content p {
    font-size: 15px;
    color: #7c7777;
    font-weight: 600;
}

.sidebar__tags {
    position: relative;
    display: block;
    margin-top: 45px;
    z-index: 1;
}

.sidebar__tags-list {
    margin-top: -10px;
    margin-left: -10px;
}

.sidebar__tags-list a {
    font-size: 16px;
    color: var(--assimox-gray);
    border: 1px solid #e4e4e4;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: inline-block;
    padding: 3px 25px 3px;
    margin-left: 10px;
}

.sidebar__tags-list a + a {
    margin-left: 14px;
    margin-top: 10px;
}

.sidebar__tags-list a:hover {
    color: var(--assimox-white);
    background: var(--assimox-primary);
    border: 1px solid var(--assimox-primary);
}

/*--------------------------------------------------------------
# Blog Grid Single
--------------------------------------------------------------*/
.blog-grid {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-grid__single {
    position: relative;
    display: block;
    margin-bottom: 89px;
}


.blog-grid__img-box {
    position: relative;
    display: block;
}

.blog-grid__img {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: #000000;
}

.blog-grid__img img {
    width: 100%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.blog-grid__single:hover .blog-grid__img img {
    opacity: 0.30;
    transform: scale(1.05);
    transition: all 0.5s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.blog-grid__content-box {
    position: relative;
    display: block;
    background-color: var(--assimox-white);
    padding-top: 31px;
    padding-left: 35px;
    margin-left: 40px;
    margin-top: -55px;
}

.blog-grid__meta-box {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-grid__date {
    position: relative;
    display: block;
}

.blog-grid__date p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    color: var(--assimox-primary);
    letter-spacing: 0.02em;
}

.blog-grid__meta {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 46px;
    top: 2px;
}

.blog-grid__meta li {
    position: relative;
    display: block;
}

.blog-grid__meta li:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 8px;
    left: -17px;
    background-color: #666666;
    width: 1px;
    transform: rotate(15deg);
}

.blog-grid__meta li:first-child:before {
    display: none;
}

.blog-grid__meta li + li {
    margin-left: 35px;
}

.blog-grid__meta li a {
    color: #666666;
}

.blog-grid__content {
    position: relative;
    display: block;
    margin-top: 45px;
}

.blog-grid__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 41px;
    text-transform: capitalize;
}

.blog-grid__title a {
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-grid__title a:hover {
    color: var(--assimox-primary);
}

.blog-grid__text {
    position: relative;
    display: block;
    padding-top: 18px;
    padding-bottom: 15px;
}

.blog-grid__btn-box {
    position: relative;
    display: block;
}

.blog-grid__btn {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--assimox-font-two);
    color: var(--assimox-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-grid__btn:hover {
    color: var(--assimox-black);
}

.blog-page__pagination {
    position: relative;
    display: block;
    text-align: center;
    margin-top: -20px;
}

.blog-page__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 7px;
}

.blog-page__pagination .pg-pagination li:last-child {
    margin-right: 0;
}

.blog-page__pagination .pg-pagination li a {
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    background-color: #fff;
    font-weight: 600;
    border-radius: 50%;
    font-size: 18px;
    border: 1px solid #a3a3a3;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.blog-page__pagination .pg-pagination li a:hover {
    background-color: var(--assimox-gray);
    color: var(--assimox-white);
    border: 1px solid var(--assimox-gray);
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/
.blog-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.blog-page .blog-grid__single {
    margin-bottom: 69px;
}

.blog-page .blog-page__pagination {
    position: relative;
    display: block;
    text-align: left;
    margin-left: 72px;
    margin-top: -20px;
}

.blog-page .sidebar__tags-list a:hover {
    color: var(--assimox-black);
    background: var(--assimox-base);
    border: 1px solid var(--assimox-base);
}


/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 110px 0 112px;
}

.project-details__left {
    position: relative;
    display: block;
}

.project-details__title-1 {
    position: relative;
    display: inline-block;
    font-size: 40px;
    font-weight: 900;
    line-height: 50px;
}

.project-details__title-1::before {
    content: "";
    position: absolute;
    bottom: 11px;
    right: -53px;
    width: 35px;
    height: 2px;
    background-color: var(--assimox-primary);
}

.project-details__text-1 {
    margin-top: 21px;
    margin-bottom: 26px;
}

.project-details__text-2 {
    position: relative;
    display: block;
}

.project-details__title-2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-top: 34px;
    margin-bottom: 13px;
}

.project-details__text-3 {
    position: relative;
    display: block;
}

.project-details__text-4 {
    margin-top: 26px;
    margin-bottom: 34px;
}

.project-details__quote-box {
    position: relative;
    display: block;
}

.project-details__quote-icon {
    position: relative;
    display: block;
}

.project-details__quote-icon img {
    width: auto;
}

.project-details__quote-text {
    color: #6e6e6e;
    font-style: italic;
    padding-top: 6px;
    padding-bottom: 10px;
}

.project-details__client-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #5aa0d1;
}

.project-details__title-3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin-top: 38px;
    margin-bottom: 13px;
}

.project-details__text-5 {
    color: #004444;
}

.project-details__right {
    position: relative;
    display: block;
    margin-top: 10px;
}

.project-details__img-1 {
    position: relative;
    display: block;
}

.project-details__img-1 img {
    width: 100%;
}

.project-details__img-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.project-details__img-2 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-details__img-2 img {
    width: 100%;
}

.project-details__img-3 {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-details__img-3 img {
    width: 100%;
}

.project-details__img-4 {
    position: relative;
    display: block;
}

.project-details__img-4 img {
    width: 100%;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
    position: relative;
    display: block;
    background-color: #eaedf3;
    padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Company History
--------------------------------------------------------------*/
.company-history {
    position: relative;
    display: block;
}

.company-history__inner {
    position: relative;
    display: block;
}

.company-history__border {
    position: absolute;
    top: 210px;
    left: 57px;
    height: 636px;
    width: 1px;
    background-color: #d2d2d2;
}

.company-history__list {
    position: relative;
    display: block;
    border-top: 1px solid #e0e0e0;
    padding: 110px 0 90px;
}

.company-history__list li {
    position: relative;
    display: block;
    padding-left: 170px;
}

.company-history__list li + li {
    margin-top: 60px;
}

.company-history__year {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    width: 110px;
    background-color: var(--assimox-primary);
    border-radius: 50%;
    top: 9px;
    left: 0;
}

.company-history__year p {
    font-size: 32px;
    color: var(--assimox-white);
    font-weight: 600;
    line-height: 32px;
}

.company-history__content {
    position: relative;
    display: block;
}

.company-history__title {
    font-size: 34px;
    font-weight: 900;
    line-height: 44px;
    margin-bottom: 9px;
}

.company-history__text {
    color: #444444;
}

.company-history__img-boxes {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 62px;
}

.company-history__img-one {
    position: relative;
    display: block;
    max-width: 400px;
    margin-bottom: 30px;
}

.company-history__img-one img {
    width: 100%;
    border-radius: 10px;
}

.company-history__img-two {
    position: relative;
    display: block;
    max-width: 400px;
    margin-left: 30px;
    margin-bottom: 30px;
}

.company-history__img-two img {
    width: 100%;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-page .section-title {
    margin-bottom: 56px;
}

.contact-page .section-title__text {
    color: #666666;
    font-weight: 400;
    padding-top: 19px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__form {
    position: relative;
    display: block;
}

.contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    background-color: transparent;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 18px;
    color: #797979;
    display: block;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.contact-page__input-box textarea {
    font-size: 18px;
    color: #797979;
    height: 220px;
    width: 100%;
    background-color: transparent;
    padding: 18px 30px 30px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    outline: none;
    margin-bottom: 0px;
}

.contact-page__btn-box {
    position: relative;
    display: block;
    padding-top: 20px;
}

.contact-page__btn {
    border: none;
    border-radius: 30px;
    font-size: 15px;
    background-color: var(--assimox-base);
    color: #fff;
}

.contact-page__btn:hover {
    color: var(--assimox-white);
}

.contact-page__btn::before {
    background-color: var(--assimox-black);
}

.contact-page__input-box.text-message-box {
    height: 220px;
}

.contact-page__right {
    position: relative;
    display: block;
    margin-top: -9px;
    margin-left: 70px;
}

.contact-page__content {
    position: relative;
    display: block;
    background-color: var(--assimox-base);
    padding: 15px;
}

.contact-page__content-title {
    position: relative;
    display: inline-block;
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    margin-bottom: 41px;
    color: #fff;
}

.contact-page__content-title:before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    height: 2px;
    width: 50px;
    background-color: #fff;
}

.contact-page__text {
    color: #fff;
}

.contact-page__email {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--assimox-font);
    margin-top: 19px;
}

.contact-page__email a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__email a:hover {
    color: var(--assimox-primary);
}

.contact-page__call-box {
    position: relative;
    display: block;
    border-top: 1px solid #cbcdd2;
    padding-top: 32px;
    margin-top: 39px;
}

.contact-page__call-sub-title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    line-height: 24px;
    font-family: var(--assimox-font-two);
}

.contact-page__call-number {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 19px;
    margin-bottom: 28px;
}

.contact-page__call-number a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.contact-page__call-number a:hover {
    color: var(--assimox-primary);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
    background-color: #ebebeb;
}

.google-map__two {
    position: relative;
    display: block;
    border: none;
    height: 460px;
    width: 100%;
    mix-blend-mode: luminosity;
}


/*--------------------------------------------------------------
# Coupons And Offer
--------------------------------------------------------------*/
.Coupons-and-offer {
    position: relative;
    display: block;
    padding: 120px 0 70px;
}

.coupons-and-offer__inner {
    position: relative;
    display: block;
}

.coupons-and-offer__inner .section-title {
    margin-bottom: 29px;
}

.coupons-and-offer__text {
    position: relative;
    display: block;
}

.coupons-and-offer__list {
    position: relative;
    display: block;
    margin-top: 13px;
    margin-bottom: 67px;
}

.coupons-and-offer__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.coupons-and-offer__list li + li {
    margin-top: 8px;
}

.coupons-and-offer__list li .icon {
    position: relative;
    display: inline-block;
    top: 4px;
}

.coupons-and-offer__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--assimox-primary);
}

.coupons-and-offer__list li .text {
    position: relative;
    display: block;
    margin-left: 20px;
}

.coupons-and-offer__list li p {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--assimox-black);
}

.coupons-and-offer__title {
    font-size: 30px;
    font-weight: 900;
    line-height: 40px;
}

.coupons-and-offer__text-2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: var(--assimox-black);
    margin-top: 6px;
    margin-bottom: 46px;
}

.coupons-box {
    position: relative;
    display: block;
    margin-right: 200px;
}

.coupons-box__single {
    position: relative;
    display: block;
    background-color: #edd45e;
    border: 2px dashed #7d7d7d;
    padding: 33px 57px 36px;
    overflow: hidden;
    margin-bottom: 50px;
}

.coupons-box__shape-1 {
    position: absolute;
    top: 14px;
    right: -43px;
    width: 253px;
    height: 253px;
    background-color: #075f82;
    border-radius: 50%;
}

.coupons-box__img {
    position: absolute;
    top: 21px;
    right: -40px;
}

.coupons-box__img img {
    width: auto;
}

.coupons-box__content {
    position: relative;
    display: block;
    max-width: 630px;
    width: 100%;
}

.coupons-box__title {
    font-size: 33px;
    font-weight: 900;
    line-height: 43px;
}

.coupons-box__text {
    font-weight: 600;
    color: var(--assimox-black);
    padding-top: 6px;
    padding-bottom: 8px;
}

.coupons-box__text-two {
    color: #827434;
}

.coupons-box__single-two {
    position: relative;
    display: block;
    background-color: #28bdf9;
    border: 2px dashed #075f82;
    padding: 33px 55px 36px 0px;
    overflow: hidden;
    margin-bottom: 50px;
}

.coupons-box__shape-2 {
    position: absolute;
    top: 14px;
    left: -43px;
    width: 253px;
    height: 253px;
    background-color: #075f82;
    border-radius: 50%;
}

.coupons-box__img-two {
    position: absolute;
    top: 21px;
    left: -40px;
}

.coupons-box__img-two img {
    width: auto;
}

.coupons-box__content-two {
    position: relative;
    display: block;
    margin-left: 280px;
    max-width: 630px;
    width: 100%;
}

.coupons-box__title-two {
    font-size: 33px;
    font-weight: 900;
    line-height: 43px;
}

.coupons-box__text {
    font-weight: 600;
    color: var(--assimox-black);
    padding-top: 6px;
    padding-bottom: 8px;
}

.coupons-box__text-three {
    color: #056d97;
}

/*--------------------------------------------------------------
# Finance
--------------------------------------------------------------*/
.finance {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.finance__left {
    position: relative;
    display: block;
    margin-top: 40px;
}

.finance__left-content {
    position: relative;
    display: block;
}

.finance__left-content-img {
    position: relative;
    display: block;
}

.finance__left-content-img img {
    width: 100%;
}

.finance__left-content-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background-color: var(--assimox-primary);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.finance__left-content-img::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0px;
    bottom: 0;
    height: 65px;
    background-color: var(--assimox-base);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.finance__left-content-title {
    position: relative;
    display: block;
    background-color: var(--assimox-base);
    padding-top: 18px;
    padding-left: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.finance__left-content-title h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 32px;
}

.finance__left-content-title h3 span {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.finance__left-content-title h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    margin-top: 12px;
}

.finance__left-content-btn-box {
    position: relative;
    display: block;
    margin-top: 25px;
    float: right;
}

.finance__left-content-btn {
    padding-left: 30px;
    padding-right: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--assimox-primary);
}

.finance__left-content-btn:hover {
    color: var(--assimox-white);
}

.finance__left-content-btn span {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 2px solid var(--assimox-white);
    border-radius: 50%;
    color: var(--assimox-white);
    font-size: 10px;
    text-align: center;
    line-height: 17px;
    top: -1px;
    margin-left: 13px;
    transition: all 0.5s linear;
}

.finance__left-content-btn:hover span {
    color: var(--assimox-white);
    border: 2px solid var(--assimox-white);
}

.finance__left-content-btn::before {
    background-color: var(--assimox-black);
}

.finance__img {
    position: relative;
    display: block;
}

.finance__img img {
    width: 100%;
}

.finance__right {
    position: relative;
    display: block;
    margin-left: 52px;
}

.finance__right .section-title {
    margin-bottom: 29px;
}

.finance__text-1 {
    position: relative;
    display: block;
}

.finance__text-2 {
    margin-top: 26px;
    margin-bottom: 36px;
}

.finance__text-3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #090d30;
}

.finance__text-4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #090d30;
    margin-top: 28px;
    margin-bottom: 56px;
}

.finance__logo-box {
    position: relative;
    display: flex;
    align-items: center;
}

.finance__logo-1 {
    position: relative;
    display: block;
    top: 10px;
    margin-left: -17px;
    margin-right: 95px;
}

.finance__logo-1 img {
    width: auto;
}

.finance__logo-2 {
    position: relative;
    display: block;
}

.finance__logo-2 img {
    width: auto;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
}

/*--------------------------------------------------------------
# Special Offer
--------------------------------------------------------------*/
.special-offer {
    position: relative;
    display: block;
    padding: 120px 0 70px;
}

.special-offer .section-title {
    margin-bottom: 16px;
}

.special-offer__text {
    margin-bottom: 42px;
}


/*--------------------------------------------------------------
# Flixible Price Three
--------------------------------------------------------------*/
.flixible-price-three {
    position: relative;
    display: block;
    background-color: #ecf0f7;
    padding: 120px 0 89px;
    z-index: 10;
}

/*--------------------------------------------------------------
# AMC Plans
--------------------------------------------------------------*/
.amc-plans {
    position: relative;
    display: block;
    padding-top: 120px;
}

.amc-plans__left {
    position: relative;
    display: block;
    margin-right: 25px;
    margin-left: -55px;
    margin-top: 74px;
}

.amc-plans__img {
    position: relative;
    display: block;
}

.amc-plans__img img {
    width: 100%;
}

.amc-plans__right {
    position: relative;
    display: block;
    margin-left: -20px;
}

.amc-plans__single {
    position: relative;
    display: block;
    background-color: #f0f1f9;
    padding: 0 39px 30px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

.amc-plans__price-box {
    position: relative;
    display: inline-block;
    background-color: var(--assimox-primary);
    padding: 12px 35px 11px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.amc-plans__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--assimox-white);
    line-height: 32px;
}

.amc-plans__price span {
    font-size: 20px;
}

.amc-plans__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 32px;
    margin-bottom: 21px;
    text-align: left;
}

.amc-plans__list {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.amc-plans__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.amc-plans__list li + li {
    margin-top: 12px;
}

.amc-plans__list li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.amc-plans__list li .icon i {
    font-size: 15px;
    color: #0c31bd;
}

.amc-plans__list li .text {
    margin-left: 15px;
}

.amc-plans__list li .text p {
    font-size: 18px;
    color: #0e2a4e;
    font-weight: 500;
}

.amc-plans__arrow {
    position: relative;
    display: block;
}

.amc-plans__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--assimox-black);
    height: 40px;
    width: 40px;
    margin: 0 auto;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.amc-plans__arrow a:hover {
    color: var(--assimox-primary);
}

.amc-plans__arrow a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 12px;
    height: 40px;
    width: 40px;
    background-color: #edd45e;
    border-radius: 50%;
    z-index: -1;
}

/*--------------------------------------------------------------
# Additional Services One
--------------------------------------------------------------*/
.additional-services-one {
    position: relative;
    display: block;
    background-color: #eceef2;
    overflow: hidden;
    padding: 120px 0 90px;
}

.additional-services-one .section-title {
    margin-bottom: 16px;
}

.additional-services-one__text {
    margin-bottom: 55px;
}

.additional-services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.additional-services-one__img {
    position: relative;
    display: block;
    background-color: var(--assimox-black);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.additional-services-one__img img {
    width: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.additional-services-one__single:hover .additional-services-one__img img {
    transform: scale(1.05);
    opacity: .50;
}

.additional-services-one__content {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--assimox-white);
    padding: 25px 0 20px;
}

.additional-services-one__content h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 13px;
    color: #122033;
}

.additional-services-one__content h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    font-family: var(--assimox-font);
    color: #122033;
}

.additional-services-one__content h3 span {
    font-size: 28px;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.services-details__left {
    position: relative;
    display: block;
    margin-right: 23px;
}

.services-details__img {
    position: relative;
    display: block;
}

.services-details__img img {
    width: 100%;
}

.services-details__right {
    position: relative;
    display: block;
    margin-left: 44px;
    margin-right: -20px;
}

.services-details__right .section-title {
    margin-bottom: 22px;
}

.services-details__text-1 {
    position: relative;
    display: block;
}

.services-details__points-list {
    position: relative;
    display: block;
    margin-top: 24px;
    margin-bottom: 24px;
}

.services-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.services-details__points-list li + li {
    margin-top: 4px;
}

.services-details__points-list li .icon {
    position: relative;
    display: inline-block;
    top: 3px;
}

.services-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #05a9eb;
}

.services-details__points-list li .text {
    position: relative;
    display: block;
    margin-left: 20px;
}

.services-details__points-list li .text {
    font-size: 19px;
    font-weight: 500;
    line-height: 28px;
    color: #242424;
}

.services-details__text-2 {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# About Quality
--------------------------------------------------------------*/
.about-quality {
    position: relative;
    display: block;
    background-color: #f8f8fa;
    padding: 120px 0 0;
}

.about-quality__left {
    position: relative;
    display: block;
    margin-right: 50px;
}

.about-quality__left::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -10000px;
    bottom: 0;
    right: 175px;
    background-color: #838284;
}

.about-quality__img {
    position: relative;
    display: block;
}

.about-quality__img img {
    width: 100%;
}

.about-quality__right {
    position: relative;
    display: block;
    margin-left: 23px;
}

.about-quality__right .section-title {
    margin-bottom: 19px;
}

.about-quality__text-2 {
    padding-top: 22px;
    padding-bottom: 35px;
}

.about-quality__points {
    position: relative;
    display: block;
}

.about-quality__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-quality__points li + li {
    margin-top: 11px;
}

.about-quality__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    color: var(--assimox-primary);
    border-radius: 50%;
    border: 2px solid var(--assimox-primary);
    font-size: 10px;
}

.about-quality__points li .text {
    margin-left: 20px;
}

.about-quality__points li .text p {
    font-size: 20px;
    color: #444444;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Video Gallery
--------------------------------------------------------------*/
.video-gallery {
    position: relative;
    display: block;
    padding: 120px 0 111px;
}

.video-gallery__left {
    position: relative;
    display: block;
    margin-right: 30px;
    margin-top: -11px;
}

.video-gallery__title-one {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 18px;
}

.video-gallery__text-1 {
    padding-bottom: 32px;
}

.video-gallery__img-boxes {
    position: relative;
    display: block;
}

.video-gallery__img-boxes .row {
    --bs-gutter-x: 15px;
}

.video-gallery__img-single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.video-gallery__img-single img {
    width: 100%;
}

.video-gallery__video-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.video-gallery__video-icon {
    position: relative;
    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;
    width: 57px;
    height: 57px;
    line-height: 57px;
    text-align: center;
    font-size: 20px;
    color: var(--assimox-white);
    background-color: #dcd6d3;
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: 1;
}

.video-gallery__video-icon:hover {
    background-color: var(--assimox-black);
    color: var(--assimox-white);
}

.video-gallery__video-icon:before {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background-color: #fd4a36;
    content: "";
    border-radius: 50%;
    z-index: -1;
}

.video-gallery__video-link .ripple,
.video-gallery__video-icon .ripple:before,
.video-gallery__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 57px;
    height: 57px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--assimox-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--assimox-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--assimox-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--assimox-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.video-gallery__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video-gallery__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}


.video-gallery__service {
    position: relative;
    display: block;
    padding-top: 39px;
}

.video-gallery__service-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    margin-bottom: 18px;
}

.video-gallery__service-points-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 24px;
}

.video-gallery__service-points {
    position: relative;
    display: block;
    float: left;
}

.video-gallery__service-points li {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery__service-points li + li {
    margin-top: 8px;
}

.video-gallery__service-points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.video-gallery__service-points li .icon i {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: var(--assimox-primary);
}

.video-gallery__service-points li .text {
    margin-left: 20px;
}

.video-gallery__service-points li .text p {
    color: #242424;
    font-weight: 700;
    font-family: var(--assimox-font-two);
}

.video-gallery__service-points--2 {
    margin-left: 112px;
}

.video-gallery__right {
    position: relative;
    display: block;
}

.video-gallery__right-sidebar {
    position: relative;
    display: block;
}

.video-gallery__right-content {
    position: relative;
    display: block;
    overflow: hidden;
}

.video-gallery__right-content-img {
    position: relative;
    display: block;
}

.video-gallery__right-content-img img {
    width: 100%;
}

.video-gallery__right-content-img::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 85px;
    background-color: var(--assimox-primary);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.video-gallery__right-content-img::after {
    position: absolute;
    content: '';
    left: 0;
    right: -1px;
    bottom: 0;
    height: 65px;
    background-color: var(--assimox-base);
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    z-index: 2;
}

.video-gallery__right-content-title {
    position: relative;
    display: block;
    background-color: var(--assimox-base);
    padding-top: 18px;
    padding-left: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.video-gallery__right-content-title h3 {
    font-size: 30px;
    color: var(--assimox-black);
    font-weight: 700;
    line-height: 32px;
}

.video-gallery__right-content-title h3 span {
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
}

.video-gallery__right-content-title h2 {
    font-size: 32px;
    color: var(--assimox-black);
    font-weight: 700;
    line-height: 32px;
    margin-top: 12px;
}

.video-gallery__right-content-btn-box {
    position: relative;
    display: block;
    margin-top: 25px;
    float: right;
}

.video-gallery__right-content-btn {
    padding-left: 30px;
    padding-right: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--assimox-primary);
}

.video-gallery__right-content-btn:before {
    background-color: var(--assimox-black);
}

.video-gallery__right-content-btn span {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 2px solid var(--assimox-white);
    border-radius: 50%;
    color: var(--assimox-white);
    font-size: 10px;
    text-align: center;
    line-height: 17px;
    top: -1px;
    margin-left: 13px;
    transition: all 0.5s linear;
}

.video-gallery__right-content-btn:hover {
    color: var(--assimox-white);
}

.video-gallery__right-sidebar-download {
    position: relative;
    display: block;
    margin-top: 57px;
}

.video-gallery__right-sidebar-download h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 25px;
}

.video-gallery__download-btn {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
    text-transform: capitalize;
    font-family: var(--assimox-font);
    font-size: 20px;
    font-weight: 600;
    background-color: var(--assimox-base);
    color: var(--assimox-black);
}

.video-gallery__download-btn:before {
    background-color: var(--assimox-black);
}

.video-gallery__download-btn:hover {
    color: var(--assimox-white);
}

.video-gallery__download-btn span {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 2px solid var(--assimox-black);
    border-radius: 50%;
    color: var(--assimox-black);
    font-size: 10px;
    text-align: center;
    line-height: 17px;
    top: -1px;
    margin-left: 13px;
    transition: all 0.5s linear;
}

.video-gallery__download-btn:hover span {
    color: var(--assimox-white);
    border: 2px solid var(--assimox-white);
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    position: relative;
    display: block;
    background-color: #f4f7fc;
    padding: 120px 0 90px;
}


/*--------------------------------------------------------------
# Appointment Page
--------------------------------------------------------------*/
.appointment-page {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.appointment-title {
    position: relative;
    display: block;
    margin-top: -9px;
    padding-bottom: 52px;
}

.appointment-title h2 {
    color: #0e2a4e;
    font-size: 45px;
    line-height: 53px;
    font-weight: 900;
    margin: 0 0 20px;
}

.appointment-title p {
    margin: 0;
}


.appointment-form-box {
    position: relative;
    display: block;
    max-width: 790px;
    width: 100%;
}

.appointment-form .single-box .inner-title {
    position: relative;
    display: block;
    padding-bottom: 16px;
}

.appointment-form .single-box .inner-title h3 {
    color: var(--assimox-black);
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    font-family: var(--assimox-font);
}

.appointment-form {
    position: relative;
    display: block;
}

.appointment-form .single-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
}

.appointment-form .single-box.selectbox {
    overflow: inherit;
}

.appointment-form .single-box .jobsite-address input {
    margin-bottom: 20px;
}


.appointment-checkbox {
    position: relative;
    display: block;
}

.appointment-checkbox .single-checkbox {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
}

.appointment-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #444444;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--assimox-font);
}

.appointment-checkbox input[type="checkbox"] {
    display: none;
}

.appointment-checkbox input[type="checkbox"] + label span {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: #f4f4f4;
    border: 1px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.appointment-checkbox label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #000000;
    font-size: 9px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    background-color: transparent;
    font-weight: 900;
    transition: all 300ms ease;
}

.appointment-checkbox input[type="checkbox"]:checked + label span {
    border-color: #16232a;
}

.appointment-checkbox input[type="checkbox"]:checked + label span:before {
    opacity: 1;
}


.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #dddddd;
    width: 100%;
    height: 40px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    transition: all 500ms ease;
    font-family: var(--assimox-font);
}

.appointment-form textarea {
    height: 180px;
}

.appointment-form .date-box {
    position: relative;
    display: block;
    width: 270px;
}

.appointment-form .date-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #898989;
    font-size: 16px;
}

.appointment-form .date-box .icon span:before {
    position: relative;
    top: 2px;
}


.appointment-form .time-box {
    position: relative;
    display: block;
    width: 270px;
}

.appointment-form .time-box .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: #898989;
    font-size: 16px;
}

.appointment-form .time-box .icon span:before {
    position: relative;
    top: 2px;
}


.newsletter-checkbox {
    position: relative;
    display: block;
}

.newsletter-checkbox label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #444444;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--assimox-font);
}

.newsletter-checkbox input[type="checkbox"] {
    display: none;
}

.newsletter-checkbox input[type="checkbox"] + label span {
    position: absolute;
    display: block;
    top: 8px;
    left: 0;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    background-color: #f4f4f4;
    border: 1px solid #8e8f8f;
    cursor: pointer;
    border-radius: 0;
    transition: all 300ms ease;
}

.newsletter-checkbox label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #000000;
    font-size: 9px;
    line-height: 13px;
    text-align: center;
    border-radius: 50%;
    opacity: 0;
    background-color: transparent;
    font-weight: 900;
    transition: all 300ms ease;
}

.newsletter-checkbox input[type="checkbox"]:checked + label span {
    border-color: #16232a;
}

.newsletter-checkbox input[type="checkbox"]:checked + label span:before {
    opacity: 1;
}


.appointment-form .select-box {
    position: relative;
    display: block;
    width: 100%;
}

.appointment-form .nice-select {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 0px;
    border: solid 1px #dddddd;
    width: 100%;
    height: 40px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    line-height: 38px;
    outline: none;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.2s ease-in-out;
    font-family: var(--assimox-font);
}

.appointment-form .nice-select:after {
    position: absolute;
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    color: #aeaeae;
    font-size: 15px;
    top: 0px;
    right: 25px;
    bottom: 0;
    margin: 0px;
    font-weight: 700;
    border: none !important;
    transform: rotate(0deg) !important;
}

.appointment-form .nice-select .list {
    background-color: #ffffff;
    border-radius: 0px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 0px 0 0px;
    margin-top: 10px;
}

.appointment-form .nice-select .option {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    line-height: 40px;
    min-height: 40px;
}

.appointment-form-button {
    position: relative;
    display: block;
}

.appointment-form-button .thm-btn {
    border: none;
    background-color: var(--assimox-base);
    color: var(--assimox-black);
    border-radius: 28px;
}

.appointment-form-button .thm-btn:hover {
    color: var(--assimox-white);
}

.appointment-form-button .thm-btn:before {
    background-color: var(--assimox-black);
}


/* Date Picker Css */

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--assimox-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--assimox-base) none repeat scroll 0 0;
    border: 2px solid var(--assimox-base);
    border-radius: 0;
    color: var(--assimox-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: var(--assimox-black) !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--assimox-black) !important;
    background: var(--assimox-black) !important;
    color: var(--assimox-white) !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--assimox-white);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: var(--assimox-black);
    color: var(--assimox-white);
    border-color: var(--assimox-black);
}

#ui-datepicker-div.ui-widget {
    font-family: var(--assimox-font);
}

/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 104px;
}

.faq-page .section-title {
    margin-bottom: 52px;
}

.faq-page .section-title__text {
    padding-top: 10px;
    color: #444444;
}

.faq-page__search {
    position: relative;
    display: block;
    padding-bottom: 52px;
}

.faq-page__search-form {
    position: relative;
}

.faq-page__search-form input[type="search"] {
    display: block;
    border: 1px solid #e0e0e0;
    outline: none;
    background-color: transparent;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
    padding-left: 25px;
    height: 60px;
    width: 100%;
    padding-right: 55px;
    border-radius: 5px;
}

.faq-page__search-form button[type="submit"] {
    background-color: transparent;
    color: #e0e0e0;
    font-size: 19px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45px;
    outline: none;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

.faq-page__left {
    position: relative;
    display: block;
}

.faq-page__right {
    position: relative;
    display: block;
}

.faq-page .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border-radius: 0;
    border: 0;
}

.faq-page .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 11px 20px 11px;
    padding-left: 55px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 22px;
    color: #111e37;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--assimox-font);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page .faq-one-accrodion .accrodion + .accrodion {
    margin-top: 20px;
}

.faq-page .faq-one-accrodion .accrodion-title h4::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 15px;
    color: var(--assimox-black);
    position: absolute;
    top: 50%;
    left: -45px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.faq-page .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f068";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-page .faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 55px 13px;
    margin-top: 0;
}

.faq-page .faq-one-accrodion .accrodion-content p {
    margin: 0;
    color: #444444;
    font-size: 17px;
}

/*--------------------------------------------------------------
# Ask Question
--------------------------------------------------------------*/
.ask-question {
    position: relative;
    display: block;
    background-color: #edf1f4;
    padding: 109px 0 120px;
    overflow: hidden;
    z-index: 1;
}

.ask-question__img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.ask-question__img img {
    width: auto;
}

.ask-question__inner {
    position: relative;
    display: block;
}

.ask-question__title {
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
    padding-bottom: 46px;
}

.ask-question__form {
    position: relative;
    display: block;
    margin-right: 100px;
}

.ask-question__input-box {
    position: relative;
    display: block;
    margin-bottom: 23px;
}

.ask-question__input-box input[type="text"],
.ask-question__input-box input[type="email"] {
    height: 65px;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #e3e3e3;
    background-color: transparent;
    padding: 0;
    outline: none;
    font-size: 18px;
    color: #444444;
    display: block;
    font-weight: 400;
}

.ask-question__input-box textarea {
    font-size: 18px;
    color: #444444;
    height: 150px;
    width: 100%;
    border: 0;
    background-color: transparent;
    padding: 0;
    outline: none;
    font-weight: 400;
}

.ask-question__btn-box {
    position: relative;
    display: block;
    padding-top: 7px;
}

.ask-question__btn {
    border: none;
    border-radius: 28px;
    background-color: var(--assimox-base);
    color: var(--assimox-black);
}

.ask-question__btn:hover {
    color: var(--assimox-white);
}

.ask-question__btn:before {
    background-color: var(--assimox-black);
}

.ask-question__input-box.text-message-box {
    height: 150px;
    padding-top: 17px;
    border-bottom: 2px solid #e3e3e3;
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
    position: relative;
    display: block;
    padding: 120px 0 65px;
}

.project-page__single {
    position: relative;
    display: block;
    margin-bottom: 52px;
}

.project-page__single:hover .project-page__img:Hover{
    filter: brightness(50%);
}

.project-page__img {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    transition: 300ms;
}

.project-page__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--assimox-base-rgb), .90);
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
}

.project-page__single:hover .project-page__img:before {
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
}

.project-page__img img {
    width: 100%;
    border-radius: 5px;
}

.project-page__link-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: top;
    transition: all 1000ms ease;
}

.project-page__single:hover .project-page__link-text {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 500ms;
}

.project-page__link-text a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    color: #242424;
    letter-spacing: 0.1em;
    font-family: var(--assimox-font-two);
    font-weight: 700;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-page__link-text a:hover {
    color: var(--assimox-primary);
}

.project-page__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 22px;
}

.project-page__title-box {
    position: relative;
    display: block;
}

.project-page__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
}

.project-page__title a {
    color: #242424;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 18px;
}

.project-page__title a:hover {
    color: var(--assimox-primary);
}

.project-page__sub-title {
    font-size: 15px;
    color: #242424;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-family: var(--assimox-font-two);
    line-height: 15px;
    margin-top: 5px;
}

.project-page__arrow {
    position: relative;
    display: block;
    top: 7px;
}

.project-page__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border: 2px solid #c4c4c4;
    border-radius: 50%;
    font-size: 15px;
    color: var(--assimox-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-page__arrow a:hover {
    border: 2px solid var(--assimox-black);
    color: var(--assimox-black);
}


/*--------------------------------------------------------------
# Services Page
--------------------------------------------------------------*/
.services-page {
    position: relative;
    display: block;
    padding: 120px 0 0;
}

.services-page .section-title {
    margin-bottom: 52px;
}

.services-page__sec-title-text {
    padding-top: 19px;
}

.services-page__list-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.services-page__list {
    position: relative;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
}

.services-page__single {
    position: relative;
    display: block;
    border: 1px solid #cfcfcf;
    padding: 39px 38px 38px;
}

.services-page__list:nth-child(1) .services-page__single {
    border-right: 0;
    border-bottom: 0;
}

.services-page__list:nth-child(2) .services-page__single {
    border-right: 0;
    border-bottom: 0;
}

.services-page__list:nth-child(3) .services-page__single {
    border-right: 0;
    border-bottom: 0;
}

.services-page__list:nth-child(4) .services-page__single {
    border-bottom: 0;
}

.services-page__list:nth-child(5) .services-page__single {
    border-right: 0;
}

.services-page__list:nth-child(6) .services-page__single {
    border-right: 0;
}

.services-page__list:nth-child(7) .services-page__single {
    border-right: 0;
}

.services-page__icon {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.services-page__icon::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 1px;
    width: 36px;
    height: 36px;
    background-color: var(--assimox-base);
    border-radius: 50%;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
    z-index: -1;
}

.services-page__single:hover .services-page__icon::before {
    transform: scale(1.2);
}

.services-page__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: #013e7e;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-page__single:hover .services-page__icon span {
    transform: scale(0.9);
}

.services-page__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 15px;
    margin-top: 28px;
}

.services-page__title a {
    color: var(--assimox-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-page__title a:hover {
    color: var(--assimox-base);
}

.services-page__text {
    color: #494949;
}

.services-page__read-more {
    position: relative;
    display: block;
    margin-top: 19px;
}

.services-page__read-more a {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--assimox-font-two);
    text-transform: uppercase;
    letter-spacing: 0.045em;
    color: #11aded;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-page__read-more a:hover {
    color: var(--assimox-black);
}

.services-page__read-more a span {
    margin-left: 5px;
}

.services-page__bottom {
    position: relative;
    display: block;
    margin-top: 30px;
}

.services-page__img {
    position: relative;
    display: block;
    max-width: 560px;
    width: 100%;
    margin: 0 auto 0;
}

.services-page__img img {
    width: 100%;
}

/*--------------------------------------------------------------
# contact Bar Three
--------------------------------------------------------------*/
.contact-bar-three {
    margin-top: -30px;
    padding-bottom: 120px;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--assimox-white);
    box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

body.boxed-wrapper .main-menu__wrapper {
    padding-left: 30px;
}

body.boxed-wrapper .main-menu__logo {
    margin-right: 55px;
}

body.boxed-wrapper .why-choose-one__img-1 {
    max-width: 55%;
}

a.fixed-call-us-button {
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 999;
    background: var(--assimox-primary);
    width: 50px;
    height: 50px;
    text-align: center;
    transition: 300ms;
    border-radius: 100%;
    transition: 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: white;
}

a.fixed-call-us-button img {
    width: 28px;
}

a.fixed-call-us-button:Hover {
    background: rgb(34, 44, 65);
    color: #fff;
}

@media (max-width: 996px) {
    .main-slider-two .swiper-container,
    .main-slider-two .swiper-wrapper,
    .main-slider-two .swiper-slide {
        height: 50vh !important;
    }

    .main-slider-two__title {
        font-size: 36px !important;
        line-height: 1.1;
        margin-top: 10px !important;
    }

    .main-slider-two__sub-title {
        font-size: 10px !important;
    }
    
    .main-slider-two__description{
        font-size: 14px;
        line-height: 1.4;
    }
    
    .main-slider-two__btn{
        padding: 7px 20px;
    }
}

.gallery-img{
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: 300ms;
    margin-bottom: 20px;
}

.gallery-img:hover{
    filter: brightness(50%);
}

.project-details h1,
.project-details h2,
.project-details h3,
.project-details h4,
.project-details h5,
.project-details h6,
.project-details p{
    margin-bottom: 10px;
}


@media (min-width: 997px){
    .scroll-to-top{
        bottom: 100px !important;
    }
}

.main-slider-two__description{
    color: #fff;
    visibility: hidden;
    margin-bottom: 25px;
    font-weight: 600;
}

@media (max-width: 996px){
    .about-two__left{
        margin-right: 0;
    }
    
    .about-two__img img{
        height: 300px;
        object-fit: cover;
    }
}

.site-footer .site-footer__contacts {
    margin-top: 20px;
}

.site-footer .site-footer__contacts li{
    margin-bottom: 10px;
}

.site-footer .site-footer__contacts li .content > p:first-child{
    font-size: 13px;
    opacity: .5;
    margin: 0;
}

.site-footer .site-footer__contacts li .content > a{
    font-size: 15px;
    font-weight: 600;
    transition: 300ms;
}

.site-footer .site-footer__contacts li .content > a:Hover{
    color:red;
}

.contact-section {
    background: #eee;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.contact-section .section-title__title {
    font-size: 25px;
    margin: 0;
}

.contact-section .section-title{
    padding-bottom: 20px;
    margin-bottom: 0;
}

.contact-section p{
    margin-bottom: 40px;
}

.services-two__title {
    font-size: 19px;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.services-two__content {
    padding: 30px 15px;
}

.about-items-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.about-items-container > div{
    width: calc(33.3% - 30px);
    margin: 15px;
    background: var(--assimox-primary);
    color: #fff;
    padding: 30px;
}

.about-items-container > div h3{
    color: #fff;
}

@media (max-width: 998px){
    .about-items-container {
        margin-left: 0;
        margin-right: 0;
    }
    
    .about-items-container > div{
        width: 100%;
        margin: 15px 0;
    }
}