/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/

:root {
    --white-color: #ffffff;
    --primary-color: #CB5C1C;
    --secondary-color: #062136;
    --section-bg-color: #ffeeee;
    --custom-btn-bg-color: #062136;
    --custom-btn-bg-hover-color: #CB5C1C;
    --dark-color: #062136;
    --p-color: #717275;
    --border-color: #CB5C1C;
    --link-hover-color: #CB5C1C;
    --body-font-family: 'Sofia Sans', sans-serif;
    --title-font-family: 'Josefin Sans', sans-serif;
    --h1-font-size: 62px;
    --h2-font-size: 58px;
    --h3-font-size: 48px;
    --h4-font-size: 32px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 18px;
    --menu-font-size: 14px;
    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    color: var(--dark-color);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-semibold);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    list-style: none;
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    display: inline-block;
    color: var(--dark-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/

.section-title-wrap {
    position: relative;
}

.section-title-wrap p {
    font-size: 20px;
    font-family: var(--body-font-family);
}

.section-title {
    /* background: var(--section-bg-color); */
    color: var(--dark-color);
    border-radius: var(--border-radius-large);
    font-weight: var(--font-weight-bold);
    font-family: var(--title-font-family);
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

main {
    position: relative;
    z-index: 1;
}

.section-bg {
    background-color: var(--section-bg-color);
}

@media (max-width:575.98px) {
    .section-title {
        font-size: 30px;
    }
    .section-title-wrap p {
        font-size: 16px;
    }
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/

.custom-icon {
    color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/

.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
}

.custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/

.navbar .popover {
    width: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.navbar .popover-content {
    text-align: center;
    margin-top: auto;
    padding-top: 60px;
}

.navbar .dropdown-menu>li>a.maintainHover {
    color: #cb5c1c;
    background-color: #ffede2;
}

.navbar-nav .dropdown-menu .nav-link {
    font-size: 16px;
    margin: 4px 0;
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover .arrow,
.popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover .arrow {
    border-width: 11px;
}

.popover .arrow:after {
    border-width: 10px;
    content: "";
}

.popover.top .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, 0.25);
    border-bottom-width: 0;
}

.popover.top .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    border-top-color: #ffffff;
    border-bottom-width: 0;
}

.popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}

.popover.right .arrow:after {
    bottom: -10px;
    left: 1px;
    border-right-color: #ffffff;
    border-left-width: 0;
}

.popover.bottom .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    border-top-width: 0;
}

.popover.bottom .arrow:after {
    top: 1px;
    margin-left: -10px;
    border-bottom-color: #ffffff;
    border-top-width: 0;
}

.popover.left .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, 0.25);
    border-right-width: 0;
}

.popover.left .arrow:after {
    right: 1px;
    bottom: -10px;
    border-left-color: #ffffff;
    border-right-width: 0;
}

.login-btn a {
    border-radius: 100rem;
    text-transform: uppercase;
    color: var(--dark-color);
    font-size: 14px;
}

.login-btn img {
    width: 22px;
}

.tel {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

.tel img {
    width: 22px;
}

.tel:hover img {
    filter: invert(34%) sepia(88%) saturate(951%) hue-rotate(352deg) brightness(97%) contrast(88%);
}

@media (max-width:1199.98px) {
    .tel {
        font-size: 16px;
    }
    .tel img {
        width: 20px;
    }
}

@media (max-width:575.98px) {
    .login-btn a {
        font-size: 0;
        padding: 9px;
        background-color: #ffefe9;
    }
    .login-btn img {
        width: 20px;
    }
    .login-btn:hover a {
        background-color: var(--custom-btn-bg-hover-color);
        color: var(--white-color);
    }
    .login-btn:hover img {
        filter: brightness(0) invert(1);
    }
}


/*****************/

.try-btn {
    font-size: 15px;
    padding: 10px 14px;
}

.navbar .custom-border-btn.try-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    opacity: 0.8;
}

.cd-nav-trigger span,
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 24px;
    background: #2e3233;
}

.cd-nav-trigger span {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -2px;
    -webkit-transition: background 0.3s 0.3s;
    -moz-transition: background 0.3s 0.3s;
    transition: background 0.3s 0.3s;
}

.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
    content: '';
    right: 0;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    -moz-transition: -moz-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
}

.cd-nav-trigger span::before {
    /* menu icon top line */
    top: -6px;
}

.cd-nav-trigger span::after {
    /* menu icon bottom line */
    top: 6px;
}


/* .cd-nav-trigger.nav-is-visible span {
    background: rgba(46, 50, 51, 0);
} */


/* .cd-nav-trigger.nav-is-visible span::before,
.cd-nav-trigger.nav-is-visible span::after {
    background: #2e3233;
}



.cd-nav-trigger.nav-is-visible span::before {
    -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
    -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
    transform: translateX(4px) translateY(-3px) rotate(45deg);
}

.cd-nav-trigger.nav-is-visible span::after {
    -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
    -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
    transform: translateX(4px) translateY(2px) rotate(-45deg);
} */

@media only screen and (min-width: 991.98px) {
    .cd-nav-trigger {
        display: none;
    }
}

@media only screen and (max-width: 1199.98px) {
    .cd-primary-nav,
    .cd-primary-nav ul {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 370px;
        max-width: 100%;
        background: #fff;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition: -webkit-transform 0.3s;
        -moz-transition: -moz-transform 0.3s;
        transition: transform 0.3s;
        margin: 0;
    }
    .cd-primary-nav a,
    .cd-primary-nav ul a {
        display: block;
        height: 70px;
        line-height: 70px;
        padding: 0 20px;
        color: var(--secondary-color);
        font-family: var(--title-font-family);
        font-size: 20px;
        font-weight: var(--font-weight-semibold);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-bottom: 1px solid #e3e3e3;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform, opacity;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
        -moz-transition: -moz-transform 0.3s, opacity 0.3s;
        transition: transform 0.3s, opacity 0.3s;
    }
    .cd-primary-nav.is-hidden,
    .cd-primary-nav ul.is-hidden {
        /* secondary navigations hidden by default */
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
    .cd-primary-nav.moves-out>li>a,
    .cd-primary-nav ul.moves-out>li>a {
        /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        opacity: 0;
    }
}

.cd-primary-nav ul {
    padding: 0;
}

.cd-primary-nav .see-all a {
    color: #69aa6f;
}

.cd-primary-nav .cd-nav-gallery li a {
    font-size: 18px;
}

@media only screen and (max-width: 1199.98px) {
    .cd-primary-nav {
        visibility: hidden;
        -webkit-transition: visibility 0s 0.3s;
        -moz-transition: visibility 0s 0.3s;
        transition: visibility 0s 0.3s;
        height: calc(100vh - 78px);
        margin-top: 78px;
    }
    .cd-primary-nav.nav-is-visible {
        visibility: visible;
        -webkit-transition: visibility 0s 0s;
        -moz-transition: visibility 0s 0s;
        transition: visibility 0s 0s;
    }
}

.cd-primary-nav .go-back a::before,
.cd-primary-nav .go-back a::after {
    /* arrow goes on the left side - go back button */
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -moz-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    -o-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
}

@media only screen and (min-width: 1200px) {
    .cd-primary-nav>.has-children>a {
        /* main navigation arrows on larger devices */
        padding-right: 30px !important;
    }
    .cd-primary-nav .go-back a {
        padding-left: 20px;
    }
    .cd-primary-nav .go-back a::before,
    .cd-primary-nav .go-back a::after {
        left: 1px;
    }
}

.cd-search-trigger {
    border-radius: 100rem;
}

.cd-search-trigger img {
    width: 22px;
}

.cd-search {
    position: absolute;
    height: 50px;
    width: 100%;
    top: 78px;
    left: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-search form {
    height: 100%;
    width: 100%;
}

.cd-search input {
    border-radius: 0;
    border: none;
    background: #ffffff;
    height: 100%;
    width: 100%;
    padding: 0 5%;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.cd-search input::-webkit-input-placeholder {
    color: #c9cbc4;
}

.cd-search input::-moz-placeholder {
    color: #c9cbc4;
}

.cd-search input:-moz-placeholder {
    color: #c9cbc4;
}

.cd-search input:-ms-input-placeholder {
    color: #c9cbc4;
}

.cd-search input:focus {
    outline: none;
}

.cd-search.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.nav-is-fixed .cd-search {
    position: fixed;
}

@media only screen and (min-width: 992px) {
    .cd-search {
        height: 80px;
        top: 78px;
    }
    .cd-search input {
        padding: 0 1em;
        font-size: 20px;
    }
}

.cd-overlay {
    position: fixed;
    z-index: 1;
    height: calc(100vh - 78px);
    width: 100%;
    top: 78px;
    left: 0;
    cursor: pointer;
    background-color: #062136;
    visibility: hidden;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}

.cd-overlay.is-visible {
    opacity: 0.8;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}

@media only screen and (max-width: 1199.98px) {
    .cd-overlay.is-visible.search-is-visible {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .has-children>a::before,
    .has-children>a::after {
        right: 20px;
        -webkit-transform-origin: 9px 50%;
        -moz-transform-origin: 9px 50%;
        -ms-transform-origin: 9px 50%;
        -o-transform-origin: 9px 50%;
        transform-origin: 9px 50%;
    }
    .has-children>a {
        padding-right: 40px;
    }
    .cd-primary-nav .go-back a {
        padding-left: 40px;
    }
    .has-children>a,
    .go-back a {
        position: relative;
    }
    .has-children>a::before,
    .has-children>a::after,
    .go-back a::before,
    .go-back a::after {
        /* arrow icon in CSS - for element with nested unordered lists */
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -3px;
        display: inline-block;
        height: 2px;
        width: 10px;
        background: #464c4e;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .has-children>a::before,
    .go-back a::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .has-children>a::after,
    .go-back a::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media (max-width:575.98px) {
    .cd-search-trigger {
        background-color: #ffefe9;
        padding: 8px 9px;
    }
    .cd-search-trigger img {
        width: 20px;
    }
    .cd-search-trigger:hover {
        background-color: var(--custom-btn-bg-hover-color);
    }
    .cd-search-trigger:hover img {
        filter: brightness(0) invert(1);
    }
    .try-btn {
        font-size: 13px;
        padding: 10px;
    }
    .cd-primary-nav,
    .cd-primary-nav ul {
        width: 100%;
    }
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/

header {
    min-height: 90px;
    padding-top: 90px;
}

.navbar {
    background-color: #fff;
    /* position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9; */
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
}

.navbar .navbar-brand,
.navbar .navbar-brand:hover {
    color: var(--white-color);
}

.logo-image {
    width: 80px;
    height: auto;
}

.navbar-brand,
.navbar-brand:hover {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    display: inline-block;
}

.navbar-brand span {
    font-family: var(--title-font-family);
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--secondary-color);
    font-family: var(--title-font-family);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 16px;
    padding-left: 16px;
}

.navbar-nav .nav-link.show~ul.dropdown-menu.dropdown-menu-light.show {
    opacity: 1;
    pointer-events: auto;
    left: 0;
    -moz-box-shadow: 0px 10px 10px 0 #cacaca;
    -webkit-box-shadow: 0px 10px 10px 0 #cacaca;
    box-shadow: 0px 3px 10px 0 #cacaca;
}

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

.navbar .dropdown-menu {
    background: var(--white-color);
    box-shadow: none;
    border: 0;
    border-radius: 0;
    display: inherit;
    opacity: 0;
    min-width: 9rem;
    margin-top: 0;
    padding: 13px 0 10px 0;
    transition: all 0.3s;
    pointer-events: none;
    width: 460px;
    height: calc(100vh - 88px);
    position: absolute;
    left: -100%;
    top: calc(100% + 1px);
}

.navbar .dropdown-menu h2 {
    margin: 56px auto 28px 12px;
    font-size: 40px;
}

.navbar .dropdown-menu li a {
    width: 90%;
    border-radius: 8px;
    padding: 14px 12px 10px;
    text-transform: capitalize;
}


/* 
.navbar .dropdown-menu li a.nav-link::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 38px;
    font-weight: 200;
} */

.nav-right-panel {
    padding-top: 100px;
}

.nav-right-panel h5 {
    margin-bottom: 20px;
}

.nav-right-panel p {
    font-size: 16px;
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-medium);
}

.navbar .nav-right-panel a.sub-link {
    font-size: 16px;
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-semibold);
    padding: 0;
    color: var(--link-hover-color);
}

.navbar .nav-right-panel a.sub-link:hover {
    color: var(--dark-color);
}

.navbar .dropdown-item {
    display: inline-block;
    color: var(--p-bg-color);
    font-family: var(--title-font-family);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
    background: transparent;
    color: var(--secondary-color);
}

.navbar .dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--menu-font-size);
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
}

@media screen and (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        margin-top: 0;
        pointer-events: auto;
    }
}

.navbar .custom-border-btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translate(0);
}

.navbar .custom-border-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

.cd-nav-trigger {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
    position: fixed;
    top: 35px;
    left: 20px;
}

.cd-nav-trigger:focus {
    outline: none;
    box-shadow: none;
}

.cd-nav-trigger[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.cd-nav-trigger[aria-expanded="true"] .navbar-toggler-icon:before,
.cd-nav-trigger[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
}

.cd-nav-trigger[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.cd-nav-trigger[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.cd-nav-trigger.navbar-toggler-icon {
    background: var(--secondary-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.cd-nav-trigger .navbar-toggler-icon:before,
.cd-nav-trigger .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--secondary-color);
    width: 30px;
    height: 2px;
    content: '';
}

.cd-nav-trigger .navbar-toggler-icon::before {
    top: -8px;
}

.cd-nav-trigger .navbar-toggler-icon::after {
    top: 8px;
}

.nav-submenu img {
    max-width: 130px;
    width: 100%;
}

@media (max-width:1440.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 10px;
    }
}

@media (max-width:1199.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 13px;
        padding: 8px 8px;
    }
}

@media (max-width:991.98px) {
    header {
        min-height: 78px;
        padding-top: 78px;
    }
}


/*---------------------------------------
  Top Section        
-----------------------------------------*/

.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.description p {
    font-size: 24px;
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-medium);
    padding-top: 10px;
}

.hero-action .btn {
    height: 52px;
    line-height: 52px;
    padding: 0 1.75rem;
}

.hero-img img {
    width: 34rem;
    max-width: 100%;
}

.head-background {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    max-width: 70rem;
    clear: both;
    z-index: -1;
}

.head-background img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    position: relative;
    right: -100px;
}

@media (max-width:1440.98px) {
    .logo-image {
        width: 60px;
    }
}

@media (max-width:991.98px) {
    .head-background {
        background: url(../images/hero-bg-900.svg) no-repeat bottom center;
        background-size: cover;
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width:575.98px) {
    .hero-section {
        padding-top: 60px;
    }
    .description p {
        font-size: 18px;
    }
}

.industry-solutions-section .custom-block-full {
    min-height: 400px;
}

@media (max-width:767.98px) {
    .industry-solutions-section .custom-block-full {
        min-height: 100%;
    }
}


/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/

.solutions-section {
    background-image: url('../images/templatemo-wave-banner.jpg');
    background-repeat: no-repeat;
    background-size: 108% 76%;
    background-position: top;
}

.owl-carousel {
    text-align: center;
}

.owl-carousel-image {
    display: block;
}

.owl-carousel .owl-item {
    opacity: 1;
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
}

.owl-carousel-info-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.owl-carousel-info {
    position: relative;
    padding: 30px 0;
    text-align: center;
}

.owl-carousel-info h4 {
    font-size: 22px;
    line-height: 1.5;
    min-height: 60px;
    font-family: var(--body-font-family);
}

.owl-carousel-info p {
    font-size: 18px;
}

.owl-carousel-info a {
    font-weight: var(--font-weight-semibold);
    line-height: normal;
}

.owl-carousel-info a:hover {
    color: var(--white-color);
}

.owl-carousel .owl-dots {
    background-color: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-radius: var(--border-radius-large);
    display: inline-block;
    margin: auto;
    margin-top: 40px;
    padding: 15px 25px;
    padding-bottom: 7px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}


/*---------------------------------------
  Indistries Solutions   
-----------------------------------------*/

.industries-info a.demo-btn {
    font-size: 18px;
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-medium);
    color: var(--custom-btn-bg-hover-color);
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.industries-info a.demo-btn:hover {
    color: var(--dark-color);
}

@media screen and (max-width:767.98px) {
    .industries-info a.demo-btn {
        position: relative;
        left: 0;
        bottom: 0;
    }
}


/*---------------------------------------
  Request demo         
-----------------------------------------*/

.request-demo {
    position: relative;
}

.request-demo-cover {
    background-color: var(--custom-btn-bg-color);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 1;
}

.pattern-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: brightness(0.5);
    opacity: 0.2;
    z-index: -1;
}

.pattern-1 img {
    height: 100%;
}

.request-demo-cover p {
    font-family: var(--body-font-family);
    width: 70%;
}

.request-thumb {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.request-thumb img {
    height: 400px;
}

.btn.request-btn:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
    border-color: var(--white-color);
}

@media (max-width:991.98px) {
    .request-demo.section-padding {
        padding-top: 0;
    }
    .request-thumb img {
        width: 100%;
        height: auto;
    }
}

@media (max-width:767.98px) {
    .request-thumb {
        left: 31px;
        right: auto;
        bottom: 48px;
    }
    .request-demo-cover p {
        width: 100%;
    }
    .request-thumb img {
        height: 100px;
    }
    .btn.request-btn {
        padding-left: 85px;
        transform: translate(0);
    }
}

@media (max-width:575.98px) {
    .request-thumb {
        left: 10px;
    }
    .request-demo-cover .section-title {
        font-size: 24px;
    }
    .request-demo-cover p {
        font-size: 16px;
    }
}


/* Pattern */

.background_overlap {
    position: relative;
    height: 100%;
}

.work_bg {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
}

.work_bg img {
    object-fit: cover;
}

.padding--partial {
    height: 18vw;
}


/*---------------------------------------
  Innovation Features           
-----------------------------------------*/

.innovation-features {
    background: #ffede2;
    border-radius: var(--border-radius-medium);
    position: relative;
    padding: 24px 24px 35px;
    transition: all 0.3s ease;
    height: 100%;
}

.bg-light-1 {
    background-color: #ececf1;
}

.innovation-features:hover {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: transparent;
    transform: translateY(-3px);
}

.innovation-features .custom-block-icon-wrap {
    background-color: var(--white-color);
    width: 70px;
    height: 70px;
    border-radius: 100rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-features:hover .custom-block-icon-wrap {
    box-shadow: inset 1px 1px 3px #bbbbbb;
}

.innovation-features .custom-block-icon-wrap img {
    width: 40px;
}

.btn-primary.explore-btn {
    position: absolute;
    bottom: -24px;
    transform: translateY(0px);
    border-width: 2px;
    font-weight: var(--border-radius-medium);
}

.bg-light-1 .btn-primary.explore-btn {
    background-color: var(--custom-btn-bg-color);
    border-color: var(--custom-btn-bg-color);
}

.innovation-features:hover .btn-primary.explore-btn {
    background-color: var(--white-color);
    color: var(--custom-btn-bg-hover-color);
}

.innovation-features.bg-light-1:hover .btn-primary.explore-btn {
    color: var(--custom-btn-bg-color);
}


/*---------------------------------------
  How we work? 
-----------------------------------------*/

.how-we-work {
    position: relative;
    background-color: rgb(6 33 54 / 7%);
}

.how-we-work p {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    font-family: var(--body-font-family);
    width: 100%;
    max-width: 500px;
}

.discover-btn {
    background-color: var(--custom-btn-bg-color);
    border-color: var(--custom-btn-bg-color);
}

.discover-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/

.custom-block {
    border: 2px solid rgb(6 33 54 / 27%);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 24px;
    transition: all 0.3s ease;
}

.custom-block:hover {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
    border-color: transparent;
    transform: translateY(-3px);
}

.custom-block-info {
    display: block;
}

.custom-block-info h5 a {
    font-size: 22px;
    font-family: var(--body-font-family);
}

.custom-block-info p {
    font-family: var(--body-font-family);
}

.custom-block-image-wrap {
    position: relative;
    display: block;
}

.custom-block-image-wrap>a {
    display: block;
}

.custom-block-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 112px;
    height: 112px;
    object-fit: cover;
}

.custom-block .custom-block-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.custom-block-btn-group {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.custom-block-icon {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    font-size: var(--p-font-size);
    color: var(--white-color);
    text-align: center;
    width: 32.5px;
    height: 32.5px;
    line-height: 32.5px;
    transition: all 0.3s;
}

.custom-block-icon:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.custom-block .custom-btn {
    font-size: var(--menu-font-size);
    padding: 7px 15px;
}

.custom-block-full {
    background-color: var(--white-color);
}

.custom-block-full:hover {
    border-color: transparent;
}

.custom-block-full .custom-block-info {
    padding: 30px 0;
    padding-bottom: 0;
}

.custom-block-full .custom-block-image {
    width: 100%;
    height: 150px;
}

.custom-block-top small {
    color: var(--p-color);
    font-family: var(--title-font-family);
}

.custom-block-overlay {
    border-color: transparent;
    padding: 0;
}

.custom-block-overlay .custom-block-image {
    margin: auto;
    width: 100%;
    height: 210px;
    transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
    padding: 15px;
    padding-bottom: 0;
}

.custom-block-overlay-info {
    padding: 20px;
}

.custom-block-image-detail-page {
    overflow: hidden;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-medium);
    /* border: 1px solid #e8e8e8; */
}

.custom-block-image-detail-page img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/*---------------------------------------
  Article Section   
-----------------------------------------*/

.article-section {
    position: relative;
}

.article-info {
    grid-template-columns: 0.7fr 1fr;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid hsl(206deg 80% 12% / 9%);
}

.articles-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-details {
    position: relative;
}

.article-details small {
    font-family: var(--body-font-family);
    margin-bottom: 10px;
}

.article-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width:767.98px) {
    .article-info {
        grid-template-columns: 1fr;
    }
}


/*---------------------------------------
  Meet Section               
-----------------------------------------*/

.partner-section {
    background-color: #edeff1;
    padding: 40px 0;
}

.partner-slider {
    position: relative;
}

.partner-slider .owl-stage {
    display: flex;
    align-items: center;
}


/*---------------------------------------
  Discover               
-----------------------------------------*/

.discover-section {
    position: relative;
    z-index: 2;
}

.discover-section .discover-link {
    color: var(--custom-btn-bg-hover-color);
    font-weight: var(--font-weight-medium);
    font-family: var(--title-font-family);
    text-decoration: underline;
}

.discover-section .discover-link:hover {
    color: var(--dark-color);
}


/*---------------------------------------
  Support Section
-----------------------------------------*/

.support-section {
    position: relative;
    background-color: rgb(6 33 54 / 7%);
}

.support-section p {
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    font-family: var(--body-font-family);
    width: 100%;
    max-width: 500px;
}

.submit-btn {
    background-color: var(--custom-btn-bg-color);
    border-color: var(--custom-btn-bg-color);
    width: 160px;
    max-width: 100%;
}

.submit-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

.info-text {
    line-height: 24px;
    left: 80px;
    top: -112px;
    transform: rotate(0deg);
    position: absolute;
    z-index: -1;
    width: auto;
    font-weight: var(--font-weight-semibold);
    font-family: var(--body-font-family);
    font-size: 18px;
}

.shapes {
    position: absolute;
    z-index: -1;
    left: 25px;
    top: -80px;
    z-index: 1;
    width: auto;
    transform: rotate(75deg);
}

@media screen and (max-width:767.98px) {
    .submit-btn {
        width: 100%;
    }
    .info-text {
        left: auto;
        right: 0;
    }
    .shapes {
        right: 55px;
        left: auto;
    }
}


/*---------------------------------------
  How to use?               
-----------------------------------------*/

.how-to-use-section {
    position: relative;
    z-index: 2;
}

.video-btn {
    height: 100%;
}

.video-gallery {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.video-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-medium);
    background: #000;
    cursor: pointer;
}

.video-gallery .gallery-item img {
    position: relative;
    display: block;
    opacity: 0.45;
    /* width: calc(100% + 23px); */
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(-23px, 0, 0);
    backface-visibility: hidden;
}

.video-gallery .gallery-item .gallery-item-caption {
    padding: 2em;
    color: #fff;
}

.video-gallery .gallery-item .gallery-item-caption,
.video-gallery .gallery-item .gallery-item-caption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-gallery .gallery-item h2 {
    overflow: hidden;
    padding: 0.5em 0;
    font-size: 30px;
    color: var(--white-color);
    font-weight: var(--font-weight-medium);
    font-family: var(--body-font-family);
}

.video-gallery .gallery-item h2,
.video-gallery .gallery-item p {
    position: relative;
    margin: 0;
    z-index: 10;
}

.video-gallery .gallery-item p {
    /* font-size: 16px; */
    padding: 1em 0;
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    transform: translate3d(10%, 0, 0);
    font-family: var(--body-font-family);
    color: var(--white-color);
}

.video-gallery .gallery-item:hover img {
    opacity: 0.3;
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption {
    text-align: left;
}

.video-gallery .gallery-item h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15%;
    height: 1px;
    background: #fff;
    transition: transform 0.3s;
    transform: translate3d(-100%, 0, 0);
}

.video-gallery .gallery-item:hover h2::after {
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item:hover p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.video-gallery .gallery-item .gallery-item-caption .play-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
    margin: 0 auto;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-family: var(--title-font-family);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.video-gallery .gallery-item .gallery-item-caption .play-icon i {
    font-size: 30px;
    padding-right: 10px;
}

@media screen and (max-width: 767.98px) {
    .video-gallery .gallery-item h2::after {
        transform: translate3d(0, 0, 0);
    }
    .video-gallery .gallery-item p {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/*---------------------------------------
  Sales page - Top Section        
-----------------------------------------*/

.other-section {
    position: relative;
    /* background: rgb(6 33 54 / 7%); */
}

.acts-bg:after {
    content: '';
    background: rgb(6 33 54 / 90%);
    width: 100%;
    height: 520px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    backdrop-filter: blur(2px);
}

.acts-bg::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background: #062136 url(../images/sales-bg.jpg) no-repeat center bottom;
    background-size: cover;
    width: 100%;
    height: 520px;
    z-index: -1;
}

.sales-content {
    position: relative;
    left: -150px;
    top: 100px;
    padding: 50px;
    background: var(--white-color);
    width: calc(100% + 120px);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, .10);
}

.ss-p {
    font-size: 20px;
    color: var(--p-color);
}

@media only screen and (max-width: 1199.98px) and (min-width: 480.98px) {
    .sales-content h1 {
        font-size: 48px;
    }
    .sales-content p {
        font-size: 18px;
    }
}

@media (max-width:991.98px) {
    .other-section {
        background: var(--secondary-color);
        padding-top: 100px !important;
    }
    .acts-bg:after {
        display: none;
    }
    .custom-block-image-detail-page {
        height: auto;
    }
    .sales-content {
        left: 0;
        top: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
        width: 100%;
        box-shadow: none;
    }
    .sales-content h1,
    .sales-content p {
        color: var(--white-color);
    }
}

@media (max-width:575.98px) {
    .other-section {
        padding-top: 60px;
    }
    .acts-bg:after {
        height: 250px;
    }
    .ss-p {
        font-size: 18px;
    }
}


/*---------------------------------------
  Sales page - Sell Section   
-----------------------------------------*/

.divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
}

.sales-cloud {
    position: relative;
    background-color: #faf2f0;
    padding-bottom: 150px;
}

.sales-cloud .section-title-wrap p {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.sales-reports img {
    max-width: 800px;
    width: 100%;
}


/**/

.sales-product-section h2 {
    width: 100%;
    max-width: 90%;
}

.solution-info {
    border-radius: var(--border-radius-medium);
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    padding-bottom: 200px !important;
    height: 100%;
}

.solution-info ul li {
    list-style: disc;
}

.info-1 {
    background-color: #fff3e7;
}

.info-1:hover {
    background-color: transparent;
    border-color: var(--custom-btn-bg-hover-color);
}

.info-2 {
    background-color: #ececec;
}

.info-2:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
}

.info-3 {
    background-color: #e7f1ff;
}

.info-3:hover {
    background-color: transparent;
    border-color: #86aade;
}

.info-4 {
    background-color: #e7ffea;
}

.info-4:hover {
    background-color: transparent;
    border-color: #87c7b4;
}

.info-5 {
    background-color: #e7e8ff;
}

.info-5:hover {
    background-color: transparent;
    border-color: #a6a7db;
}

.info-6 {
    background-color: #ffe7e7;
}

.info-6:hover {
    background-color: transparent;
    border-color: #d6a3a3;
}

.solution-info a.learn-btn {
    font-size: 18px;
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-medium);
    color: var(--bs-link-color);
}

.solution-info a.learn-btn:hover {
    color: var(--dark-color);
}

.solution-info .sales-thumb {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 200px;
    height: 200px;
}

.solution-info .sales-thumb img {
    max-width: 200px;
}


/**/

.sales-solutions {
    position: relative;
}

.sales-nav {
    position: sticky;
    top: 120px;
}

.sales-nav .nav-link {
    padding: 1rem 2rem;
    font-size: 20px;
    text-align: left;
    width: 280px;
    margin-bottom: 20px;
    background-color: #f2f2f2;
    border-radius: var(--border-radius-medium);
}

.ss-sales-wrap {
    border: 1px solid #ececec;
    transition: all 0.5s ease;
    position: relative;
    background-color: #fff;
    background: linear-gradient(to left, #fff 50%, #062136 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 1s ease;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, .07);
}

.ss-sales-wrap:hover {
    background-position: left bottom;
    transition: all 1s ease;
    overflow: hidden;
    box-shadow: none;
}

.ss-sales-wrap:hover h5 {
    color: var(--white-color);
}

.ss-sales-wrap:hover p {
    opacity: 0;
    transition: all 1.5s ease;
    pointer-events: none;
}

.ss-sales-wrap a.more-btn {
    -webkit-text-stroke: 1px #8D8D9C;
    color: transparent;
}

.ss-sales-wrap:hover a.more-btn {
    opacity: 1;
}

.ss-sales-wrap a.more-btn .bi {
    position: absolute;
    bottom: -60px;
    right: 20px;
    font-size: 100px;
    transition: all 1s ease;
}

.ss-sales-wrap:hover a.more-btn .bi {
    font-size: 150px;
    bottom: -90px;
}

.ss-sales-wrap a.more-btn span {
    font-size: 0;
    opacity: 0;
}

.ss-sales-wrap:hover a.more-btn span {
    opacity: 1;
    font-size: 18px;
    position: absolute;
    left: 48px;
    bottom: 20px;
    color: #fff;
    -webkit-text-stroke: aliceblue;
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-medium);
}

.ss-sales-wrap a.more-btn:hover span {
    opacity: 0.5;
}

@media screen and (max-width:1199.98px) {
    .sales-product-section.section-padding {
        padding-top: 30px;
    }
}

@media screen and (max-width:991.98px) {
    .sales-product-section.section-padding {
        padding-top: 60px;
    }
    .sales-nav .nav-link {
        padding: 1rem 1.5rem;
        font-size: 16px;
        width: auto;
        margin: 10px 6px;
    }
}

@media screen and (max-width:575.98px) {
    .ss-sales-wrap:hover a.more-btn span {
        left: 24px;
    }
}

@media screen and (max-width:480.98px) {
    .sales-nav .nav-link {
        width: 100%;
    }
}


/**/

.sales-promot {
    position: relative;
}

.sales-promot .sp-thumb img {
    max-width: 500px;
    width: 100%;
}

.row-shadow {
    box-shadow: 0px 4px 4px rgba(100, 109, 152, 0.06);
    background: rgb(6 33 54 / 5%);
    border-radius: var(--border-radius-medium);
}

@media screen and (max-width:575.98px) {
    .row-shadow {
        border-radius: 0;
    }
}


/**/

.connect-box {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.connect-box img {
    width: 450px;
}

.Try-free-section {
    position: relative;
}

@media screen and (max-width:480.98px) {
    .Try-free-section a {
        width: 100%;
    }
}


/*---------------------------------------
  Contract Compliance page - Top Section        
-----------------------------------------*/

.cc-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.cc-bg::after {
    content: '';
    background: rgb(6 33 54 / 90%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    backdrop-filter: blur(2px);
}

.contract-content {
    position: relative;
    z-index: 1;
}


/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/

.about-image {
    border-radius: var(--border-radius-medium);
    display: block;
}

.team-thumb-cover {
    margin: 0 auto;
    border: 2px solid rgb(6 33 54 / 33%);
    border-radius: 100rem;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-thumb {
    position: relative;
    overflow: hidden;
    width: 240px;
    height: 240px;
    border-radius: 100rem;
    margin: 0 auto;
}

.team-thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.team-thumb:hover img {
    filter: grayscale(1);
}

.team-info {
    text-align: center;
}


/*---------------------------------------
  CONTACT US         
-----------------------------------------*/

.request-section {
    position: relative;
}

.platform-detail ul {
    padding: 0;
    margin: 0;
}

.platform-detail ul li img {
    width: 18px;
    position: relative;
    top: 3px;
}


/*---------------------------------------
  PAGINATION               
-----------------------------------------*/

.pagination {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-large);
    padding: 20px;
}

.page-link {
    border: 0;
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    margin: 0 5px;
    padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.page-item:first-child .page-link {
    margin-right: 10px;
}

.active>.page-link,
.page-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/

.custom-form .form-floating {
    margin-bottom: 24px;
}

.custom-form .form-control {
    border-radius: var(--border-radius-small);
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    outline: none;
}

.custom-form .form-select {
    border-radius: var(--border-radius-small);
}

.custom-form textarea.form-control {
    height: auto;
}

.custom-form .form-floating>textarea.form-control:focus {
    padding-bottom: 10px;
}

.form-floating>label {
    padding-left: 20px;
}

.custom-form button[type="submit"] {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    border-radius: var(--border-radius-large);
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--dark-color);
    border-color: var(--dark-color);
    color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/

.site-footer {
    padding-top: 70px;
    padding-bottom: 100px;
    background-color: var(--custom-btn-bg-color);
    position: relative;
    z-index: 0;
}

.site-footer>.container {
    position: relative;
}

.site-footer-title {
    color: var(--white-color);
}

.site-footer a {
    color: var(--white-color);
}

.footer-logo {
    width: 140px;
    height: auto;
}

.site-footer-thumb a img {
    display: block;
    width: 120px;
    min-width: 120px;
    height: auto;
}

.site-footer-link-item {
    display: block;
    list-style: none;
}

.site-footer-link-item a {
    opacity: 0.7;
}

.site-footer-link-item a:hover {
    opacity: 1;
}

.site-footer-link {
    color: var(--white-color);
    font-size: var(--p-font-size);
    line-height: inherit;
}

.copyright-text {
    background-color: var(--custom-btn-bg-hover-color);
    position: relative;
    z-index: 1;
}

.copyright-text p {
    color: var(--white-color);
    font-size: 16px;
}

.bgp-image {
    background: url('../images/pattern.svg') no-repeat bottom right;
    background-size: cover;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 580px;
    z-index: -1;
    opacity: 0.1;
}

@media screen and (max-width:575.98px) {
    .site-footer-link-item {
        font-size: 16px;
    }
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/

.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: #16354c;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--p-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/

@media screen and (min-width: 2160.98px) {
    .solutions-section {
        background-size: 100% 90%;
    }
}

@media screen and (max-width: 1240.98px) {
    .solutions-section {
        background-size: 116%;
    }
    h1 {
        font-size: 58px;
        transition: all 0.5s ease-in-out;
    }
    h2 {
        transition: all 0.5s ease-in-out;
        font-size: 48px;
    }
}

@media screen and (max-width: 991.98px) {
    h1 {
        transition: all 0.5s ease-in-out;
        font-size: 48px;
    }
    h2 {
        transition: all 0.5s ease-in-out;
        font-size: 36px;
    }
    h3 {
        transition: all 0.5s ease-in-out;
        font-size: 32px;
    }
    h4 {
        transition: all 0.5s ease-in-out;
        font-size: 28px;
    }
    h5 {
        transition: all 0.5s ease-in-out;
        font-size: 20px;
    }
    h6 {
        transition: all 0.5s ease-in-out;
        font-size: 18px;
    }
    .solutions-section {
        background-size: 160% 66%;
    }
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .navbar-nav {
        background-color: var(--primary-color);
        border-radius: var(--border-radius-medium);
        padding: 30px;
    }
    .navbar-nav .nav-link {
        padding: 5px 0;
    }
    .navbar-nav .dropdown-menu {
        position: relative;
        left: 10px;
        opacity: 1;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 10px;
        margin-bottom: 15px;
    }
    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }
    .nav-tabs .nav-link:first-child {
        margin-right: 5px;
    }
    .nav-tabs .nav-link {
        font-size: var(--copyright-font-size);
        padding: 10px;
    }
    .copyright-text {
        text-align: center;
    }
}

@media screen and (max-width: 540.98px) {
    .solutions-section {
        background-size: 180% 65%;
        padding-bottom: 0;
    }
    .custom-block .custom-block-top {
        flex-direction: column;
    }
    .custom-block .custom-block-top small:last-child {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480.98px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
}

.error-message {
    display: none;
    color: red;
    font-size: 14px;
    font-family: inherit;
    margin-top: 5px;
}

.display-none {
    display: none;
}

.error input {
    border: 1px solid red !important;
}

.error .form-label {
    color: red !important;
}

.error .error-message {
    display: block !important;
}

.success-message {
    display: block;
    padding-top: 10px;
    color: green;
}