@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Sefu - Insurance & Finance HTML5 Template
    Author: creativegigs
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. variables
    03. mixins
    04. common
    05. overlay
    06. header
    07. breadcrumb 
    08. mobile-menu
    09. search
    09. custom-animation
    10. btn
    11. custom-container
    12. slider
    13. what-do
    14. about
    15. fact
    16. services
    17. contact
    18. cta
    19. blog
    20. testimonial
    21. chose-us
    22. faq
    23. video
    24. team
    25. plan
    26. case
    27. dark-mode
    28. footer

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/* 1. Theme default css */
@font-face {
    font-family: 'Circular Std';
    src: url("../fonts/CircularStd-black.eot");
    src: local("Circular Std black"), local("CircularStd-black"), url("../fonts/CircularStd-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Black.woff2") format("woff2"), url("../fonts/CircularStd-Black.woff") format("woff"), url("../fonts/CircularStd-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Circular Std';
    src: url("../fonts/CircularStd-Medium.eot");
    src: local("Circular Std Medium"), local("CircularStd-Medium"), url("../fonts/CircularStd-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Medium.woff2") format("woff2"), url("../fonts/CircularStd-Medium.woff") format("woff"), url("../fonts/CircularStd-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Circular Std';
    src: url("../fonts/CircularStd-Bold.eot");
    src: local("Circular Std Bold"), local("CircularStd-Bold"), url("../fonts/CircularStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Bold.woff2") format("woff2"), url("../fonts/CircularStd-Bold.woff") format("woff"), url("../fonts/CircularStd-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Circular Std Book';
    src: url("../fonts/CircularStd-Book.eot");
    src: local("Circular Std Book"), local("CircularStd-Book"), url("../fonts/CircularStd-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/CircularStd-Book.woff2") format("woff2"), url("../fonts/CircularStd-Book.woff") format("woff"), url("../fonts/CircularStd-Book.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Circular Std Book";
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    font-style: normal;
    color: #343434;
}

.f-left {
    float: left;
}

.widget ul li a {
    color: black
}

.widget ul li a > span {
    float: right;
}

.fix {
    overflow: hidden;
}

a,
.button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: var(--brand_color);
    outline: medium none;
}

label,
button:focus, input:focus, input:focus, textarea, textarea:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Circular Std";
    color: #050020;
    line-height: 1.1;
    font-style: normal;
    font-weight: 700;
    text-transform: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Circular Std Book";
    color: #343434;
    margin-bottom: 1.5rem;
}

label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

*::-moz-selection {
    background: black;
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: black;
    color: white;
    text-shadow: none;
}

::selection {
    background: black;
    color: white;
    text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
    color: black;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: black;
    font-size: 14px;
    opacity: 1;
}

/*--
    - position Classes
-----------------------------------------*/
.pos-rel {
    position: relative;
}

.pos-abl {
    position: absolute;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
    overflow: hidden;
}

.clear {
    clear: both;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
    background: #f6f3f1;
}

.grey-bg-soft {
    background: #F3F7FC;
}

.pink-bg {
    background: #fff2f2;
}

.white-bg {
    background: white;
}

.black-bg {
    background: black;
}

.yellow-soft-bg {
    background: #FFF3D4;
}

.sky-blue-bg {
    background: #c1e6e7;
}

.heding-bg {
    background: #050020;
}

.theme-bg {
    background: var(--brand_color);
}

/*--
    - color
-----------------------------------------*/
.white-color {
    color: white;
}

.black-color {
    color: black;
}

.theme-color {
    color: var(--brand_color);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .pad-bottom-sm {
        padding-bottom: 100px;
    }
}

.left-line {
    position: relative;
}

.left-line::before {
    content: "";
    background: white;
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 2px;
    z-index: 1;
}

/*--
section-title
----------------------------------------*/
.section-title h6 {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title h3 {
    font-size: 62px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-bottom:26px
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title h3 {
        font-size: 45px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title h3 {
        font-size: 45px !important;
    }
}

@media (max-width: 767px) {
    .section-title h3 {
        font-size: 36px !important;
    }
}

.section-title .round-line {
    position: relative;
    display: inline-block;
}

.section-title .round-line::before {
    position: absolute;
    content: '';
    left: -23px;
    top: -15px;
    width: 215px;
    background-repeat: no-repeat;
    height: 104px;
    /*z-index: 999;*/
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title .round-line::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-title .round-line::before {
        display: none;
    }
}

.section-title-2 h3::before {
    display: none;
}

.sub-title {
    color: rgba(0, 0, 0, 0.8);
    font-size: 24px;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.section-title-3 h3 {
    font-size: 60px !important;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title-3 h3 {
        font-size: 45px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-3 h3 {
        font-size: 45px !important;
    }
}

@media (max-width: 767px) {
    .section-title-3 h3 {
        font-size: 36px !important;
    }
}

.section-title-3 .highlight-text {
    position: relative;
    z-index: 1;
    display: inline-block;
    color: var(--brand_color);
}

.section-title-3 .highlight-text::before {
    content: '';
    position: absolute;
    height: 5px;
    width: 100%;
    left: 0;
    bottom: -8px;
    padding-top: 8px;
    z-index: 1;
    background: var(--brand_color);
}

.section-title-4 h3 {
    color: black;
    font-size: 62px;
    font-family: "PT Serif", serif;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-title-4 h3 {
        font-size: 45px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title-4 h3 {
        font-size: 45px !important;
    }
}

@media (max-width: 767px) {
    .section-title-4 h3 {
        font-size: 36px !important;
    }
}

.section-title-4 .round-line {
    display: inline-block;
    position: relative;
}

.section-title-4 .round-line::before {
    position: absolute;
    content: '';
    left: -23px;
    width: 215px;
    height: 104px;
    z-index: 999999;
}

@media (max-width: 767px) {
    .section-title-4 .round-line::before {
        display: none;
    }
}

.sub-title-2 {
    color: rgba(14, 14, 14, 0.8);
    font-size: 24px;
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1.7;
}

.skew-bg {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.skew-bg::before {
    top: 0px;
    transform: skew(45deg) scaleX(0);
    width: 160%;
    height: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    content: "";
    position: absolute;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.skew-bg::after {
    top: 0px;
    transform: skew(45deg) scaleX(0);
    width: 160%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    content: "";
    position: absolute;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
}

.swipe-right {
    position: relative;
    z-index: 1;
}

.swipe-right::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.popup-video {
    color: white;
    background: var(--brand_color);
    border-radius: 50%;
    font-size: 14px;
    line-height: 100px;
    display: inline-block;
    width: 100px;
    height: 100px;
    text-align: center;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    position: relative;
    z-index: 1;
    animation: pulseBig infinite 5s linear;
}

.popup-video:hover {
    color: white;
    background: var(--brand_color);
}

/*================ preloader css ====================*/
#preloader {
    background: #fff;
    height: 100%;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#preloader .loading {
    display: flex;
}

#preloader .ctn-preloader {
    padding-left: 15px;
    padding-right: 15px;
}

#preloader .spinner {
    animation: spinner 3s infinite linear;
    border-radius: 50%;
    border: 3px solid #f1f6f8;
    border-left-color: var(--brand_color);
    border-top-color: var(--brand_color);
    margin: 0 auto 0em auto;
    position: absolute;
    left: -40px;
    right: -40px;
    bottom: -40px;
    top: -40px;
}

#preloader .spinner:before {
    content: "";
    width: 20px;
    height: 20px;
    border: 6px solid #fff;
    box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
    background: var(--brand_color);
    position: absolute;
    right: 31px;
    top: 41px;
    border-radius: 50%;
}

@media (max-width: 576px) {
    #preloader .spinner:before {
        top: 18px;
    }
}

#preloader .round_spinner {
    border-width: 1px;
    border-color: #eef3f4;
    border-style: solid;
    border-radius: 50%;
    background-color: #fdfdfd;
    box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14);
    width: 248px;
    height: 248px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 40px auto 80px;
}

#preloader .round_spinner .text img {
    max-width: 80%;
    max-height: 240px;
}

@media (max-width: 576px) {
    #preloader .round_spinner {
        width: 155px;
        height: 155px;
    }
}

#preloader .round_spinner h4 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 0;
}

#preloader .round_spinner h4 span {
    font-weight: 700;
}

#preloader .head {
    color: black;
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5.2px;
    text-transform: uppercase;
    text-align: center;
    font-family: "Roboto", sans-serif;
    margin: 5% 0 1% 0;
    padding: 0;
}

#preloader p {
    color: var(--p_color);
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border: none;
    margin: 0;
    padding: 0;
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg);
    }
}

/*---------------------------------------------------- */
/*----------------------------------------------------*/

#scrollUp {
    background: var(--brand_color);
    width: 50px;
    height: 50px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
}

#scrollUp:hover{
    background: var(--secondary_color);
}
#scrollUp i {
    color: white;
}

/*--
    - Overlay
------------------------------------------*/
.overlay-soft {
    position: relative;
    z-index: 1;
}

.overlay-soft::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

[data-overlay] {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

[data-overlay]::before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
    background-color: white;
}

[data-overlay="dark"]::before {
    background-color: var(--brand_color);
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
    opacity: 0.1;
}

[data-opacity="2"]::before {
    opacity: 0.2;
}

[data-opacity="3"]::before {
    opacity: 0.3;
}

[data-opacity="4"]::before {
    opacity: 0.4;
}

[data-opacity="5"]::before {
    opacity: 0.5;
}

[data-opacity="6"]::before {
    opacity: 0.6;
}

[data-opacity="7"]::before {
    opacity: 0.7;
}

[data-opacity="8"]::before {
    opacity: 0.8;
}

[data-opacity="9"]::before {
    opacity: 0.9;
}

.main-header-area {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    padding: 20px 50px 16px 50px;
}
.main-header-area.has-titlebar-bg{
    position: unset
}

.main-header-area .logo-img img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header-area {
        padding: 20px 0 16px 0;
    }
}

@media (max-width: 767px) {
    .main-header-area {
        padding: 20px 0 16px 0;
    }
}

.main-header-area .logo-img .logo-1a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.logo-img .logo-2 {
    display: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header-area .logo-img .logo-3 {
        display: inline-block;
    }
    .main-header-area .logo-img .logo-1a {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-header-area .logo-img .logo-3 {
        display: inline-block;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header-area .logo-img .logo-3 {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .main-header-area .logo-img .logo-3 {
        display: inline-block;
    }
}

.main-header-area.menu-sticky {
    padding: 0 50px 0 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-header-area.menu-sticky {
        padding: 23px 0 15px 0;
    }
}

@media (max-width: 767px) {
    .main-header-area.menu-sticky {
        padding: 23px 0 15px 0;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .main-header-area.menu-sticky {
        padding: 7px 0 8px 0;
    }
}

.main-header-area.menu-sticky .logo-img .logo-1a {
    display: none !important;
}

.main-header-area.menu-sticky .logo-img .logo-2 {
    display: inline-block;
}

.main-header-area.menu-sticky .logo-img .logo-3 {
    display: none !important;
}

.main-menu {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.main-menu > ul {
    padding: 0px;
    margin: 0px;
}
.main-menu > ul > li > ul,
.main-menu > ul > li > ul > li > ul{
    list-style:none
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-menu {
        margin: 0;
    }
}

.main-menu > ul > li {
    display: inline-block;
    position: relative;
    margin-right: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-menu ul li {
        margin-right: 38px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-menu ul li {
        margin-right: 20px;
    }
}

.main-menu ul li > a {
    color: white;
    font-size: 20px;
    line-height: 1;
    font-family: "Circular Std Book";
    padding: 40px 0;
    display: inline-block;
    position: relative;
    font-weight: 400;
}

.main-menu ul li > a span {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.main-menu ul li > a span.badge {
    padding: 0.15em 0.2em;
    font-size: 60%;
    font-weight: 400;
    text-transform: initial;
}

.main-menu ul li > a i {
    font-size: 14px;
    line-height: 1;
}

.main-menu ul li > a.active {
    color: var(--brand_color);
}

.main-menu ul li:hover > a {
    color: var(--brand_color);
}

.main-menu ul li:hover > a span {
    background: var(--brand_color);
}

.main-menu ul li ul.submenu {
    background: white none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    left: -29px;
    opacity: 0;
    position: absolute;
    top: 119%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    min-width: max-content;
    z-index: 9;
    border-top: 4px solid var(--brand_color);
    text-align: left;
    padding: 10px 0;
}

.main-menu ul li ul.submenu li {
    position:relative
}

.main-menu ul li ul.submenu li a {
    padding: 10px 28px;
    display: block;
    margin: 0;
    border: 0;
    color: #050020;
    line-height: 25px;
}

.main-menu ul li ul.submenu li a::before {
    display: none;
}
.main-menu ul li ul.submenu li a i {
    position: absolute;
    line-height: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    font-size: 12px;
    height: 0px;
    transform: rotate(-90deg);
    right: 15px;
    opacity: .8;
}
.main-menu ul li:hover .submenu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}
.main-menu ul li ul.submenu li ul.submenu.third {
    position: absolute;
    left: 100%;
    top: 100%;
    opacity: 0;
    transition: .3s all
}
.main-menu ul li ul.submenu li:hover ul.submenu.third {
    opacity:1;
    top:10%;
    left: 100%;
    border-top:none
}
.menu-sticky {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background: #050020;
    top: 0;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.menu-sticky .logo {
    transform: translateY(2px);
}

.menu-sticky .hamburger-menu {
    top: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-sticky .hamburger-menu {
        top: 35px;
    }
}

/* Hamburger-menu */
.hamburger-menu {
    display: inline-block;
}

.hamburger-menu > a {
    display: inline-block;
    font-size: 25px;
    color: var(--brand_color);
}

.side-mobile-menu {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .side-mobile-menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .side-mobile-menu {
        display: block;
    }
    .fact-list li:last-child .fact-one.fact-three {
        margin-top: 0px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .side-mobile-menu {
        display: block;
    }
}

.offset-sidebar {
    display: block;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offset-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .offset-sidebar {
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .offset-sidebar {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-head-two .main-menu li {
        margin-right: 35px;
    }
}

.main-head-two .main-menu li a {
    color: black;
}

.menu-sticky .main-menu li:hover > a,.main-menu li:hover > a,.main-head-two.menu-sticky .main-menu li:hover a,.main-menu .nav-item.current-menu-parent > .nav-link,.main-menu .nav-item.current-menu-item > .nav-link,.main-head-two.menu-sticky .main-menu li ul.submenu li.current-menu-item a,.main-head-two .main-menu li.current-menu-parent > a,
.main-head-two .main-menu li.current-menu-item > a,.main-head-two .main-menu li:hover > a,.main-head-two .main-menu li.active > a {
    color: var(--brand_color);
}

.main-head-two.menu-sticky .main-menu li a {
    color: white;
}
.main-head-two.menu-sticky .main-menu li ul.submenu li a {
    color: black;
}

.main-head-two.menu-sticky .main-menu li ul.submenu li:hover > a {
    color: var(--brand_color);
}

.main-head-three {
    padding-left: 0;
    padding-right: 0;
}

.main-head-three.menu-sticky {
    background: white;
    padding-left: 0;
    padding-right: 0;
}

.main-head-three.menu-sticky .header-bg {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.header-top-cta {
    position: relative;
    z-index: 2;
}

.header-top-cta ul li span {
    color: black;
    font-size: 18px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    margin-left: 38px;
}

.header-bg {
    border-radius: 8px;
    box-shadow: 0px -10px 20px rgba(0, 54, 110, 0.06);
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-top-cta > .logo-img .logo-3 {
    display: none
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-menu-3 {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-menu-3 ul li {
        margin-right: 37px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .main-menu-3 ul li {
        margin-right: 17px;
    }
}

.main-menu-3 ul li > a {
    color: black;
    padding: 25px 0;
}
.main-menu-3 ul li ul.submenu li:hover > a{
    color:var(--brand_color);
}

.main-menu-3 ul li ul.submenu {
    top: 130%;
}

.main-menu-3 ul li:hover ul.submenu {
    top: 113%;
}

.header-right-widget .dropdown-menu {
    min-width: 170px;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 25px 50px 0px rgba(213, 216, 223, 0.5);
    border: 1px solid #f8f8f8;
    border-radius: 0;
    top: 20px;
}

@media (max-width: 767px) and (orientation: landscape) {
    .header-right-widget .dropdown-menu {
        top: 165px !important;
    }
}

.header-right-widget .dropdown-menu ul li a {
    display: block;
    padding: 0 15px;
    font-size: 15px;
    color: #767a89;
    line-height: 35px;
    text-transform: uppercase;
}

.header-right-widget .quote-btn {
    /*transform: translateY(4px);*/
}

.language-switcher button {
    color: black;
    font-size: 18px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.language-switcher button::after {
    display: none;
}

.page-title-area {
    position: relative;
    z-index: 1;
}

.page-t-height {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

.page-t-height::before {
    content: '';
    position: absolute;
    background-color: white;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-t-height::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-t-height::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-t-height::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 767px) {
    .page-t-height::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

.page-style-text {
    color: white;
    font-size: 120px;
    font-family: "Beginning of Summer";
    font-weight: 100;
    position: absolute;
    left: auto;
    right: 12.8%;
    top: 57%;
    transform: translateY(-50%);
    z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-style-text {
        font-size: 100px;
        left: 60%;
        right: 0;
        display: inline-block !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-style-text {
        left: 65%;
        display: inline-block;
    }
}

.page-title-wrapper {
    position: relative;
    z-index: 2;
}

.page-title-wrapper .page-title {
    color: black;
    font-size: 90px;
    font-weight: 400;
    display: inline-block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-wrapper .page-title {
        font-size: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-wrapper .page-title {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .page-title-wrapper .page-title {
        font-size: 42px;
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-title-wrapper .page-title {
        font-size: 45px;
    }
}

.page-title-wrapper .page-title .round-line {
    position: relative;
    display: inline-block;
}

.page-title-wrapper .page-title .round-line::before {
    position: absolute;
    content: '';
    left: -26px;
    top: -22px;
    width: 201px;
    height: 137px;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-wrapper .page-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-wrapper .page-title .round-line::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-title-wrapper .page-title .round-line::before {
        display: none;
    }
}

.page-title-wrapper .sub-title {
    color: rgba(6, 6, 6, 0.8);
}

.page-title-wrapper h5 {
    font-family: "Circular Std";
    font-weight: 500;
    color: black;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.page-title-wrapper h5::before {
    content: '';
    position: absolute;
    background: #233D63;
    width: 20px;
    height: 2px;
    left: 0;
    top: 10px;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-title-wrapper h5::before {
        background: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-wrapper h5::before {
        background: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-wrapper h5::before {
        background: white;
    }
}

@media (max-width: 767px) {
    .page-title-wrapper h5::before {
        background: white;
    }
}

.page-title-wrapper h5 span {
    color: #939393;
    font-family: "Circular Std Book";
    font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-title-wrapper h5 span {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-wrapper h5 span {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-wrapper h5 span {
        color: white;
    }
}

@media (max-width: 767px) {
    .page-title-wrapper h5 span {
        color: white;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-wrapper-white .page-title {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-wrapper-white .page-title {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-white .page-title {
        color: white;
    }
}

@media (max-width: 767px) {
    .page-wrapper-white .page-title {
        color: white;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-wrapper-white .sub-title {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-wrapper-white .sub-title {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-white .sub-title {
        color: white;
    }
}

@media (max-width: 767px) {
    .page-wrapper-white .sub-title {
        color: white;
        line-height: 1.3;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-wrapper-white h5 {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-wrapper-white h5 {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-white h5 {
        color: white;
    }
}

@media (max-width: 767px) {
    .page-wrapper-white h5 {
        color: white;
    }
}

.page-title-img {
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 900px;
    min-height: 901px;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-title-img {
        width: 100%;
        display: contents;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-img {
        width: 100%;
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-img {
        width: 100%;
        min-height: 820px;
        display: none;
    }
}

@media (max-width: 767px) {
    .page-title-img {
        width: 100%;
        min-height: 650px;
        display: none;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-title-img {
        width: 100%;
        min-height: 700px;
        display: none;
    }
}

.page-title-img::before {
    content: '';
    position: absolute;
    background: url(../img/page-shape.png) no-repeat;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-title-img::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-img::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-img::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .page-title-img::before {
        display: none;
    }
}

.page-title-img::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-title-img .title-text {
    left: 27%;
    top: 56%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-title-img .title-text {
        left: 60%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-img .title-text {
        left: 65%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-car {
        min-height: 850px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-title-car {
        min-height: 650px !important;
    }
}

@media (max-width: 767px) {
    .page-title-car {
        min-height: 500px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-title-car {
        min-height: 500px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-2 h1 {
        font-size: 85px;
    }
}

.page-title-2 h1 .round-line::before {
    left: -24px;
    top: -55px;
    width: 251px;
    height: 159px;
}

.page-area-two .page-title-img {
    min-height: 827px;
}

.page-area-two .page-title-img::before {
    background: url(../img/page-shape2.png) no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-area-two {
        height: 690px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-area-two {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .page-area-two {
        height: 650px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-area-two {
        height: 500px;
    }
}

.page-wrapper-team .page-title .round-line::before {
    position: absolute;
    content: '';
    z-index: -1;
    left: -26px;
    top: -37px;
    background: url(../img/cr7.svg) no-repeat;
    width: 277px;
    height: 144px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-wrapper-team .page-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-wrapper-team .page-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-wrapper-team .page-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-title-blog .page-title {
        font-size: 80px;
    }
}

.page-title-blog .page-title .round-line::before {
    content:'';
    display:block;
    clear:both;
    position:absolute;
    left: -36px;
    top: -42px;
    background: url(../img/cr6.svg) no-repeat;
    width: 278px;
    height: 158px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .page-insuracne.page-style-text {
        font-size: 90px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .page-insuracne {
        height: 624px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-insuracne {
        height: 624px;
    }
}

@media (max-width: 767px) {
    .page-insuracne {
        height: 550px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-insuracne {
        height: 500px;
    }
}

.before-overlay::before {
    display: none;
}

.slide-bar {
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: -370px;
    width: 350px;
    padding: 25px 30px;
    height: 100%;
    display: block;
    background-color: #050020;
    z-index: 9999999999999;
    -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slide-bar {
        width: 350px;
    }
}

@media (max-width: 767px) {
    .slide-bar {
        width: 310px;
        padding: 25px 20px;
    }
}

.slide-bar.show {
    right: 0;
}

.open-mobile-menu {
    display: inline-block;
}

.open-mobile-menu a {
    display: block;
    width: 50px;
    height: 50px;
    background: #212121;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-left: 20px;
    color: #fff;
}

.open-mobile-menu a:hover {
    background: var(--brand_color);
}

.open-mobile-menu a.active {
    background: var(--brand_color);
}

.close-mobile-menu a {
    color: white;
    position: relative;
    z-index: 2;
    font-size: 16px;
    top: -10px;
    left: 0;
}

.close-mobile-menu a:hover {
    color: #ff0000;
}

.on-side {
    overflow: hidden;
}

.body-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1010;
    left: 0;
    opacity: 0;
    display: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.body-overlay.active {
    opacity: 1;
    display: block;
}

.side-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-mobile-menu ul li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.side-mobile-menu ul li:first-child {
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.side-mobile-menu ul li a {
    padding: 13px 0;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.side-mobile-menu ul li a:hover {
    color: var(--brand_color);
    padding-left: 5px;
}

.side-mobile-menu ul li a[aria-expanded="true"] {
    color: var(--brand_color);
}

.side-mobile-menu ul li a[aria-expanded="true"]:before {
    background: var(--brand_color);
    border-color: var(--brand_color);
}

.side-mobile-menu ul li ul {
    padding-left: 0;
    list-style: none;
}

.side-mobile-menu ul li ul li {
    padding-left: 25px;
}
.side-mobile-menu ul li ul li:last-child{
    border-bottom:none
}
.side-mobile-menu ul li ul li:hover > a {
    color: var(--brand_color);
    padding-left: 10px;
}

.side-mobile-menu ul li ul li:hover > a:before {
    background: var(--brand_color);
    border-color: var(--brand_color);
}

.side-mobile-menu ul li ul li a {
    position: relative;
    padding-left: 15px;
    text-transform: capitalize;
    font-size: 16px;
}

.side-mobile-menu ul li ul li a:before,
.side-mobile-menu ul li ul li ul li a:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid white;
    border-radius: 50%;
}

.side-mobile-menu ul li.has-dropdown > a:after,
.side-mobile-menu ul li.has-dropdown > ul li.has-dropdown > a:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-width: 2px 0 0 2px;
    border-style: solid;
    border-color: initial;
    right: 16px;
    top: 50%;
    -webkit-transform: rotate(130deg) translateY(-50%);
    transform: rotate(130deg) translateY(-50%);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: all .3s ease-out;
}

.side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after,
.side-mobile-menu ul li.has-dropdown ul li.has-dropdown a[aria-expanded="true"]:after {
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
}

.offset-widget.offset-logo {
    border-bottom: 1px solid #eeecec;
    padding-bottom: 20px;
}

.offset-widget .info-widget .offset-title {
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.offset-widget .info-widget p {
    color: white;
}

.offset-widget .info-widget.info-widget2 p {
    margin-bottom: 15px;
}

.offset-widget .info-widget.info-widget2 p i {
    margin-right: 7px;
    color: white;
}

/* Menu Search
-------------------------------------------------------*/
.header-2-icon {
    color: white;
}

.nav-search.search-trigger.header-2-icon {
    color: white;
    display: inline-block;
}

.nav-search {
    position: relative;
    display: block;
    color: inherit;
}

.nav-search:hover {
    color: inherit;
}

.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 121;
    background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp .3s;
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: uppercase;
    background: transparent;
    font-size: 25px;
    color: #fff;
    border-bottom: 2px solid #898989;
    text-align: center;
    letter-spacing: 2px;
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: #fff;
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

input.main-search-input::-webkit-input-placeholder {
    color: #fff;
    font-size: 25px;
}

input.main-search-input:-moz-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 25px;
}

input.main-search-input::-moz-placeholder {
    color: #fff;
    opacity: 1;
    font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
    color: #fff;
    font-size: 25px;
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

@-webkit-keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40% {
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotatedHalf {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes rotatedHalf {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@-webkit-keyframes rotatedHalfTwo {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@keyframes rotatedHalfTwo {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    100% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

@-webkit-keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@keyframes scale-upOne {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.2);
        transform: scale(0.2);
    }
}

@-webkit-keyframes scale-right {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    50% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes scale-right {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    50% {
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0.5;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0.5;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes hvr-ripple-out {
    0% {
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 1;
    }

    100% {
        top: -6px;
        right: -6px;
        bottom: -6px;
        left: -6px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out-two {
    0% {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
    }

    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@-webkit-keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-one {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-up-one-1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-up-one-1 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes scale-up-two {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@keyframes scale-up-two {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    40% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@-webkit-keyframes scale-up-three {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@keyframes scale-up-three {
    0% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
}

@-webkit-keyframes scale-up-four {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    40% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes scale-up-four {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    40% {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@-webkit-keyframes scale-up-five {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes scale-up-five {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    40% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@-webkit-keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
    }

    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
    }
}

@keyframes animationFramesThree {
    0% {
        transform: translate(165px, -179px);
    }

    100% {
        transform: translate(-346px, 617px);
    }
}

@-webkit-keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(165px, -179px);
    }

    100% {
        -webkit-transform: translate(-346px, 617px);
    }
}

@keyframes animationFramesFour {
    0% {
        transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        transform: translate(251px, -200px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFour {
    0% {
        -webkit-transform: translate(-300px, 151px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(251px, -200px) rotate(180deg);
    }
}

@keyframes animationFramesFive {
    0% {
        transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        transform: translate(-1px, 0px) rotate(180deg);
    }
}

@-webkit-keyframes animationFramesFive {
    0% {
        -webkit-transform: translate(61px, -99px) rotate(0deg);
    }

    21% {
        -webkit-transform: translate(4px, -190px) rotate(38deg);
    }

    41% {
        -webkit-transform: translate(-139px, -200px) rotate(74deg);
    }

    60% {
        -webkit-transform: translate(-263px, -164px) rotate(108deg);
    }

    80% {
        -webkit-transform: translate(-195px, -49px) rotate(144deg);
    }

    100% {
        -webkit-transform: translate(-1px, 0px) rotate(180deg);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 300% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 300% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes imageBgAnim {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 120% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@-webkit-keyframes gradientBG {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 120% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* Move frame*/
@keyframes moveRound {
    0% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
    }

    25% {
        background-color: #feddfc;
        left: 100px;
        top: 0px;
    }

    50% {
        background-color: #efe4ff;
        left: 100px;
        top: 100px;
    }

    75% {
        background-color: #e2fcf4;
        left: -24px;
        top: 200px;
    }

    100% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
    }
}

@-webkit-keyframes moveRound {
    0% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
    }

    25% {
        background-color: #feddfc;
        left: 100px;
        top: 0px;
    }

    50% {
        background-color: #efe4ff;
        left: 100px;
        top: 200px;
    }

    75% {
        background-color: #e2fcf4;
        left: -24px;
        top: 100px;
    }

    100% {
        background-color: #eee3ff;
        left: -24px;
        top: 0px;
    }
}

@keyframes moveShap {
    0% {
        left: 0px;
        top: 0px;
    }

    25% {
        left: 100px;
        top: 0px;
    }

    50% {
        left: 100px;
        top: 100px;
    }

    75% {
        left: 0px;
        top: 200px;
    }

    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes moveShap2 {
    0% {
        right: 0px;
        top: 0px;
    }

    25% {
        right: 100px;
        top: 0px;
    }

    50% {
        right: 100px;
        top: 100px;
    }

    75% {
        right: 0px;
        top: 200px;
    }

    100% {
        right: 0px;
        top: 0px;
    }
}

/* Heartbeat frame*/
@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes heartbeat {
    to {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/* Rotation frame*/
@keyframes rotation {
    to {
        transform: rotate(360deg);
    }
}

/* pulseBig */
@keyframes pulseBig {
    0% {
        box-shadow: 0 0 0 0 #fff;
    }

    50% {
        box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

/* pulseBig2 */
@keyframes pulseBig2 {
    0% {
        box-shadow: 0 0 0 0 #e5aa8f;
    }

    50% {
        box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

/* pulseBig2 */
@keyframes pulseBig3 {
    0% {
        box-shadow: 0 0 0 0 var(--brand_color);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

/* pulseBig2 */
@keyframes pulseBig4 {
    0% {
        box-shadow: 0 0 0 0 #fc9ba4;
    }

    50% {
        box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
    }
}

.scaleUp1 {
    -webkit-animation-name: scaleUp1;
    animation-name: scaleUp1;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes scaleUp1 {
    0% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }

    20% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    40% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }

    80% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }
}

@keyframes scaleUp1 {
    0% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }

    20% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    40% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }

    80% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(1);
        transform: translateY(1);
    }
}

@keyframes rail-line {
    0% {
        transform: translate(-150px);
    }

    100% {
        transform: translate(150px);
        background: var(--brand_color);
    }
}

@-moz-keyframes rail-line {
    0% {
        transform: translate(-150px);
    }

    100% {
        transform: translate(150px);
        background: var(--brand_color);
    }
}

@-webkit-keyframes rail-line {
    0% {
        transform: translate(-50px);
    }

    100% {
        transform: translate(50px);
        background: var(--brand_color);
    }
}

@keyframes type {
    0% {
        width: 0ch;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes type {
    0% {
        width: 0ch;
    }

    100% {
        width: 100%;
    }
}

/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
    /*overflow: hidden;*/
    color: white;
    background: var(--brand_color);
    font-size: 15px;
    font-family: "Circular Std";
    font-weight: 500;
    line-height: 1;
    padding: 22px 30px 22px 30px;
    display: inline-block;
    border-radius: 5;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    border: 1px solid transparent;
    text-align: center;
}
.main-nav .right-nav > .quote-btn {
    min-width:206px;
}
.theme_btn i {
    font-size: 15px;
    line-height: 1;
    margin-left: 5px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.theme_btn:hover {
    color: white;
    background: var(--secondary_color);;
}

.theme_btn:hover i {
    transform: translateX(10px);
}

.theme_btn2 {
    font-size: 18px;
    font-family: "Circular Std";
    font-weight: 400;
    text-transform: initial;
    border-radius: 5px;
    background: var(--brand_color);
    padding: 16px 34px;
}
p > input.theme_btn2 {
    padding: 16px 34px !important;
}

.theme_btn2:hover {
    background: var(--secondary_color);;
}

.theme_btn3 {
    font-size: 18px;
    font-family: "Circular Std";
    font-weight: 400;
    text-transform: initial;
    border-radius: 5px;
    padding: 18px 38px !important;
}

.app-btn {
    display: inline-block;
    background: black;
    padding: 5px 23px 13px 23px;
    border-radius: 5px;
    color: white;
    margin-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .app-btn {
        margin-right: 6px;
        padding: 5px 10px 13px 10px;
    }
}

@media (max-width: 767px) {
    .app-btn {
        margin-right: 0;
    }
}

.app-btn .logo-icon {
    float: left;
    margin-right: 17px;
    margin-top: 13px;
}

.app-btn .btn-text {
    overflow: hidden;
}

.app-btn .btn-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    line-height: 1;
    display: inline-block;
}

.app-btn .btn-text h5 {
    color: white;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .app-btn .btn-text h5 {
        font-size: 18px;
    }
}

.border-btn {
    background: transparent;
    border: 2px solid black;
    color: black;
    border-radius: 5px;
    padding: 12px ​38px !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.border-btn:hover, .border-btn.active {
    color: white;
    background: var(--brand_color);
    border-color: var(--brand_color);
}

.border-btn.active:hover {
    background: transparent;
    border: 2px solid black;
    color: black;
}

@media (max-width: 767px) {
    .btn-list li a {
        margin-right: 0;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .btn-list li a {
        margin-right: 20px;
    }
}

.customn-container-slider {
    max-width: 1370px;
    margin: 0 auto;
}

.custom-container-feedback {
    max-width: 1600px;
    margin: 0 auto;
}

.custom-container-subs {
    max-width: 1230px;
    margin: 0 auto;
}

.custom-container-team {
    max-width: 1570px;
    margin: 0 auto;
}

.main-index-wrapper {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
}

.slider-bg-img {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-bg-img {
        height: 1100px;
    }
}

@media only screen and (min-width: 0px) and (max-width: 1400px) {
    .slider-bg-img {
        height: auto;
        padding-bottom: 45px !important;
    }
}


.slider-bg-img::before {
    content: '';
    position: absolute;
    background-color: white;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-bg-img::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-bg-img::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-bg-img::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 767px) {
    .slider-bg-img::before {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

.single-slider {
    position: relative;
    z-index: 1;
}

.slider-img-one {
    width: 57%;
    /*width: 52%;*/
    min-height: 1051px;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-img-one {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-img-one {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-img-one {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-img-one {
        display: none;
    }
}

.slider-img-one::before {
    content: '';
    position: absolute;
    background: url(../img/hm1.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-img-one::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-img-one::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-img-one::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-img-one::before {
        display: none;
    }
}

.slider-img-one::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.slider__content {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .slider__content {
        padding-top: 160px;
    }
}

.slider__content .main-title {
    font-size: 90px;
    line-height: 1.1;
    font-family: "Circular Std";
    font-weight: 900;
    display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider__content .main-title {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider__content .main-title {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__content .main-title {
        color: white;
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .slider__content .main-title {
        color: white;
        font-size: 52px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider__content .main-title {
        font-size: 55px;
    }
}

.slider__content .main-title .round-line {
    position: relative;
    z-index: 1;
}

.slider__content .main-title .round-line::before {
    position: absolute;
    content: '';
    left: -16px;
    top: -15px;
    width: 304px;
    height: 126px;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider__content .main-title .round-line::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__content .main-title .round-line::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider__content .main-title .round-line::before {
        display: none;
    }
}

.slider__content h3 {
    font-size: 28px;
    font-family: "Circular Std Book";
    font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider__content h3 {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider__content h3 {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__content h3 {
        color: white;
    }
}

@media (max-width: 767px) {
    .slider__content h3 {
        color: white;
    }
}

.slide-video-area {
    max-width: 150px;
}

.slide-video-area .slide-video {
    width: 41px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    float: left;
    margin-right: 10px;
}

.slide-video-area .slide-video img {
    display: inline-block;
    transform: translateX(1px);
}

.slide-video-area span {
    color: #050020;
    font-size: 18px;
    line-height: 1.1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slide-video-area span {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slide-video-area span {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slide-video-area span {
        color: white;
    }
}

@media (max-width: 767px) {
    .slide-video-area span {
        color: white;
    }
}

.slide-video-area span b {
    display: block;
    font-weight: 400;
}

.slider-input-wrapper {
    position: relative;
    z-index: 7;
    padding-left: 15px;
    display: inline-block;
    width: 100%
}

.slider__form p {
    color: #050020;
    font-weight: 500;
    margin-bottom: 25px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider__form p {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider__form p {
        color: white;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__form p {
        color: white;
    }
}

@media (max-width: 767px) {
    .slider__form p {
        color: white;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider__form p {
        color: white;
    }
}

.slider__form .nice-select {
    color: black;
    font-size: 18px;
    width: 280px;
    height: 100px;
    line-height: 100px;
    border-radius: 0;
    border: 0;
    font-family: "Circular Std Book";
    font-weight: 400;
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
    z-index: 2;
}

@media (max-width: 767px) {
    .slider__form .nice-select {
        filter: drop-shadow(0px 15px 40px rgba(15, 24, 56, 0.12));
        width: 100%;
        margin-bottom: 15px;
    }
}

.slider__form .nice-select::before {
    content: '';
    position: absolute;
    background: #e5e5e5;
    width: 1px;
    height: 43px;
    left: 63px;
    top: 30px;
    z-index: 1;
}

.slider__form .nice-select::after {
    display: none;
}

@media (max-width: 767px) {
    .slider__form .nice-select {
        padding-left:18px
    }
    .slider__form .nice-select::before {
        display:none
    }
    .hero-form-one-wrapps .hero-form label {
        padding-left: 18px;
    }
    .hero-form-one-wrapps  .hero-form input[type="email"] {
        padding: 0 30px 0px 18px;
    }
}
.slider__form .nice-select .current {
    color: black !important;
}

.slider__form .nice-select .list {
    color: black;
    font-size: 18px;
    font-family: "Circular Std Book";
    font-weight: 400;
    width: 100%;
}

.slider__form .nice-select .list li {
    display: block;
}

.hero-form {
    background: white;
    padding: 25px 0px;
}
.hero-form-one-wrapps .hero-form{
    height:100px
}
@media (max-width: 767px) {
    .hero-form {
        filter: drop-shadow(0px 15px 40px rgba(15, 24, 56, 0.12));
        margin-bottom: 15px;
    }
}

.hero-form label {
    color: rgba(52, 52, 52, 0.5);
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    padding-left: 30px;
    line-height: 1;
    margin-bottom: 0;
}

.hero-form input[type="email"] {
    font-size: 18px;
    color: #0b0b0b;
    font-weight: 400;
    line-height: 1;
    border: 0;
    width: 435px;
    padding: 0 30px;
    display: block;
    box-shadow:none;
}

@media (max-width: 767px) {
    .hero-form input[type="email"] {
        width: 100%;
    }
}

.input-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0px 25px 50px rgba(11, 23, 69, 0.07);
    padding:0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .input-box {
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .input-box {
        box-shadow: none;
        padding-right: 15px;
    }
}

.input-box li {
    display: inline-block;
}

@media (max-width: 767px) {
    .input-box li {
        width: 100%;
    }
}

.input-box li .quote-btn {
    font-size: 15px;
    font-weight: 500;
    padding: 44px 40px 41px 41px;
    transform: translateY(3px);
    border: none !important;
    vertical-align: text-bottom;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .input-box li .quote-btn {
        width: 300px;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .input-box li .quote-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

.type-text {
    position: absolute;
    right: 9%;
    top: 40%;
    z-index: 11;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .type-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .type-text {
        display: none;
    }
}

.type-text h1 {
    color: white;
    font-size: 120px;
    font-family: "Beginning of Summer";
    font-weight: 100;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .type-text h1 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .type-text h1 {
        font-size: 65px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .type-text h1 {
        font-size: 65px;
        color: var(--brand_color);
    }
}

@media (max-width: 767px) {
    .type-text h1 {
        font-size: 30px;
        color: var(--brand_color);
    }
}

.slider-area .slick-slider button.slick-arrow {
    opacity: 0;
    visibility: hidden;
    background: transparent;
    border: 0;
    font-size: 24px;
    position: absolute;
    top: 50%;
    z-index: 5;
    color: white;
    border: 2px solid #666;
    border-radius: 7px;
    width: 61px;
    height: 61px;
    display: inline-block;
    left: 100px;
    text-align: center;
    line-height: 47px;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-area .slick-slider button.slick-arrow {
        left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .slick-slider button.slick-arrow {
        left: 50px;
    }
}

@media (max-width: 767px) {
    .slider-area .slick-slider button.slick-arrow {
        left: 50px;
    }
}

.slider-area .slick-slider button.slick-arrow:hover {
    color: #050020;
    background: var(--brand_color);
    border-color: transparent;
}

.slider-area .slick-slider .slick-next {
    left: auto;
    right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-area .slick-slider .slick-next {
        right: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .slick-slider .slick-next {
        right: 50px;
    }
}

@media (max-width: 767px) {
    .slider-area .slick-slider .slick-next {
        right: 50px;
    }
}

.slider-area:hover .slick-slider button.slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slider-height-2::before {
    content: '';
    position: absolute;
    width: 792px;
    height: 827px;
    right: 0;
    top: 17%;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-height-2::before {
        width: 670px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-height-2::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-height-2::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider-height-2::before {
        display: none;
    }
}

.slider__img-two {
    width: 40%;
    height: 730px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat !important;
    position: absolute;
    right: -80px;
    z-index: 1;
    top: 233px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider__img-two {
        width: 50%;
    }
}

.slider-card {
    width: 180px;
    display: inline-block;
    text-align: center;
    border-radius: 12px;
    padding: 20px 19px 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 30px 40px rgba(76, 53, 76, 0.21);
    position: absolute;
    top: 354px;
    left: -85px;
    animation: float-bob-y infinite 3s alternate-reverse;
}

.slider-card .icon {
    display: inline-block;
    background: var(--brand_color);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

.slider-card p {
    color: black;
}

.card-2 {
    width: 300px;
    display: inline-block;
    text-align: left;
    top: 86%;
    left: 256px;
    animation: float-bob-x infinite 7s alternate-reverse;
}

.card-2 .icon {
    float: left;
    margin-right: 20px;
    background: var(--brand_color);
}

.card-2 .slider-text h5 {
    color: rgba(0, 0, 0, 0.8);
    font-size: 21px;
    font-family: "Circular Std Book";
    font-weight: 400;
}

.card-2 .slider-text span {
    color: rgba(0, 0, 0, 0.49);
    font-size: 14px;
    font-family: "Circular Std";
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .slider__content-2 {
        padding-top: 120px;
    }
}

.slider__content-2 .main-title {
    /*color: #050020;*/
    font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__content-2 .main-title {
        color: #050020;
    }
}

@media (max-width: 767px) {
    .slider__content-2 .main-title {
        color: #050020;
    }
}

.slider__content-2 .main-title span {
    padding-bottom: 7px;
    border-bottom: 7px solid;
    color: var(--brand_color);
    border-color: var(--brand_color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider__content-2 .main-title span {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .slider__content-2 .main-title span {
        padding-bottom: 0;
    }
}

.slider__content-2 h3 {
    color: rgba(0, 0, 0, 0.74);
    line-height: 1.5;
}

.slider__content-2 .input-box {
    background: white;
    filter: drop-shadow(0px 15px 40px rgba(15, 24, 56, 0.12));
    border-radius: 5px;
    padding:0px;
}

@media (max-width: 767px) {
    .slider__content-2 .input-box {
        background: transparent;
        box-shadow: none;
        filter: unset;
    }
}

@media (max-width: 767px) {
    .slider__content-2 .input-box li {
        width: 100%;
        margin-bottom: 15px;
    }
}

.slider__content-2 .hero-form {
    border-radius: 5px;
}

.slider__content-2 .hero-form input[type="email"] {
    width: 388px;
    box-shadow: none;
}

@media (max-width: 767px) {
    .slider__content-2 .hero-form input[type="email"] {
        width: 100%;
    }
}

.slider-bg-3 {
    background: linear-gradient(#e9f8ff 0%, white 53.14%, white 100%);
    margin-top: -95px;
}

.slider-bg-3 .sl {
    position: absolute;
    z-index: 3;
}

.slider-bg-3 .sl.shape_one {
    top: 25%;
    left: 22%;
    animation: rotation infinite 5s linear;
}

@media (max-width: 767px) {
    .slider-bg-3 .sl.shape_one {
        display: none;
    }
}

.slider-bg-3 .sl.shape_two {
    top: 47%;
    left: 10%;
}

@media (max-width: 767px) {
    .slider-bg-3 .sl.shape_two {
        display: none;
    }
}

.slider-bg-3 .sl.shape_three {
    top: 76%;
    left: 10%;
    animation: rotation infinite 5s linear;
}

@media (max-width: 767px) {
    .slider-bg-3 .sl.shape_three {
        display: none;
    }
}

.slider-bg-3 .sl.shape_four {
    left: 43%;
    top: 87%;
    animation: float-y-up infinite 6s alternate-reverse;
}

@media (max-width: 767px) {
    .slider-bg-3 .sl.shape_four {
        display: none;
    }
}

.slider-bg-3 .single-slider::before {
    display: none;
}

@keyframes float-y-up {
    0% {
        transform: translateY(-300px) rotate(-180deg) scale(1.3);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }

    100% {
        transform: translateY(0px) rotate(100deg) scale(1);
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
    }
}

.slider-ai-img {
    position: absolute;
    right: 0;
    top: 247px;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .slider-ai-img {
        top: 33%;
        width: 50%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-ai-img {
        top: 25%;
        width: 50%;
    }
}

@media (max-width: 767px) {
    .slider-ai-img {
        display: none;
    }
}

@media (max-width: 767px) {
    .slider__content-3 {
        padding-top: 260px;
    }
}

.slider__content-3 .main-title {
    color: #050020;
    font-family: "PT Serif", serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.slider__content-3 .main-title .round-line {
    color: #1bacb0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.slider__content-3 .main-title .round-line::before {
    position: absolute;
    content: '';
    left: -53px;
    top: -21px;
    width: 377px;
    height: 142px;
    z-index: -1;
}

@media (max-width: 767px) {
    .slider__content-3 .main-title .round-line::before {
        display: none;
    }
}

.slider__content-3 .sub-title {
    line-height: 1.8;
}

.client-review h3 {
    color: black;
    font-size: 48px;
    font-family: "PT Serif", serif;
    font-weight: 700;
}

.client-review .rivew-box span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-family: "PT Serif", serif;
    font-weight: 400;
}

.client-review .rivew-box .review-icon a {
    color: #ffd36f;
}

.do-wrapper .section-title .round-line::before {
    left: -23px;
    top: -18px;
    width: 215px;
    height: 104px;
}

@media (max-width: 767px) {
    .what-text {
        padding-left: 0;
    }
}

.what-text h3 {
    color: black;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.do-box {
    padding: 70px 43px 67px 57px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .do-box {
        padding: 70px 30px 67px 30px;
    }
}

@media (max-width: 767px) {
    .do-box {
        padding: 70px 15px 67px 25px;
    }
}

.do-box .icon img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.do-box h5 {
    color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
    margin-bottom: 25px;
}

.do-box h3 {
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0;
}

.do-box:hover::before, .do-box.active::before {
    background-color: #fff2f2;
    transform: skew(45deg) scaleX(1);
}

.do-box:hover::after, .do-box.active::after {
    background-color: #fff2f2;
    transform: skew(45deg) scaleX(1);
}

.do-box:hover .icon img, .do-box.active .icon img {
    transform: translateY(-7px);
}

.what-do-bg {
    background: url(../img/bg2.png) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.do-box-2 {
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.8);
    padding: 50px 40px 50px 40px;
    box-shadow: 0px 70px 100px rgba(25, 4, 99, 0.13);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .do-box-2 {
        padding: 50px 20px 50px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .do-box-2 {
        padding: 50px 25px 50px 25px;
    }
}

@media (max-width: 767px) {
    .do-box-2 {
        padding: 50px 25px 50px 25px;
    }
}

.do-box-2 h3 {
    margin-bottom: 40px;
}
.do-box-2 h3 a{
    color: #050020
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .do-box-2 h3 {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .do-box-2 h3 {
        font-size: 24px;
    }
}

.do-box-2 .more-btn {
    color: black;
    font-family: "Circular Std";
    font-weight: 400;
    display: inline-block;
    line-height: 1;
    border-bottom: 1px solid black;
}

.do-box-2 .more-btn:hover {
    color: #555252;
}

.what-we-do-area .section-title-4 .round-line {
    color: #1bacb0;
}

.what-we-do-area .section-title-4 .round-line::before {
    position: absolute;
    content: '';
    left: -33px;
    top: 1px;
    width: 257px;
    height: 92px;
    z-index: 99999;
}

.what-text-2 h3 {
    color: black;
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1.6;
}

.do-box-wrapper {
    border: 2px solid black;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .do-box-wrapper .do-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 767px) {
    .do-box-wrapper .do-inner {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.do-box-wrapper h3 {
    font-family: "PT Serif", serif;
    font-weight: 700;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.do-box-wrapper h5 {
    color: black;
    font-size: 20px;
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    visibility: hidden;
    height: 0px;
    margin-top: 12px;
    margin-bottom: 48px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.do-box-wrapper .ilustar-do {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .do-box-wrapper .ilustar-do {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .do-box-wrapper .ilustar-do {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .do-box-wrapper .ilustar-do {
        width: 100%;
    }
}

.do-box-wrapper:hover, .do-box-wrapper.active {
    border: 2px solid #dadada;
}

.do-box-wrapper:hover h5, .do-box-wrapper.active h5 {
    opacity: 1;
    visibility: visible;
    height: 136px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-wrapper {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-wrapper {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .about-wrapper {
        padding-left: 0;
    }
}

.about-wrapper .section-title .round-line::before {
    left: -16px;
    top: -21px;
    width: 156px;
    height: 118px;
}

.about-wrapper .section-title-3 .content-section-title{
    line-height:1.3
}

.para-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    line-height: 1.5;
    display: inline-block;
}

.authors-quote {
    width: 330px;
    background: white;
    box-shadow: 0px 40px 80px rgba(53, 24, 24, 0.13);
    position: absolute;
    padding: 34px 37px 23px 52px;
    z-index: 9;
    top: auto;
    bottom: 100px;
    left: 60%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .authors-quote {
        bottom: 80px;
        left: 47%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .authors-quote {
        left: 40px;
        bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .authors-quote {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .authors-quote {
        width: 85%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .authors-quote {
        width: 330px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

.authors-quote .a-icon {
    background: var(--brand_color);
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    position: absolute;
    left: -26px;
    top: -26px;
    filter: drop-shadow(0px 15px 30px rgba(218, 112, 112, 0.46));
    z-index: 9;
}

.authors-quote h5 {
    color: #0b0b0b;
    font-size: 20px;
    font-family: "Circular Std";
    font-weight: 500;
}

.authors-quote h5 span {
    color: #959595;
}

.authors-quote .a-text {
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.title-text {
    color: white;
    font-size: 120px;
    font-family: "Beginning of Summer";
    font-weight: 100;
    position: absolute;
    left: 14%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .title-text {
        font-size: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .title-text {
        font-size: 70px;
    }
}

.about-img-wrapper {
    min-height: 840px;
    width: 836px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-img-wrapper {
        width: 650px;
        min-height: 652px;
        top: 100px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-img-wrapper {
        width: 450px;
        min-height: 550px;
        top: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-img-wrapper {
        width: 100%;
        position: relative;
        min-height: 500px;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-img-wrapper {
        width: 100%;
        position: relative;
        min-height: 500px;
        margin-bottom: 30px;
    }
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    background: url(../img/hm2.png);
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .about-img-wrapper::before {
        background-size: contain;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-img-wrapper::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-img-wrapper::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-img-wrapper::before {
        display: none;
    }
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-img-wrapper .title-text {
        top: 28%;
        left: 0;
        right: 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-img-wrapper .title-text {
        font-size: 65px;
        top: 28%;
        left: 0;
        right: 0;
        text-align: center;
    }
}

.about-style-1 {
    position: relative;
    z-index: 1;
}

.about-img-wrapper-2 {
    position: relative;
    z-index: 1;
}

.about-img-wrapper-2 .line-shape {
    position: absolute;
    left: -32%;
    top: 20px;
    z-index: -1;
}

.about-img-wrapper-2 .img-2 {
    margin-left: -72px;
    animation: float-bob-y infinite alternate-reverse 4s;
    max-width: initial
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-img-wrapper-2 .img-2 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-img-wrapper-2 .img-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .about-img-wrapper-2 .img-2 {
        margin-left: 0;
        width: 100%;
    }
}

.about-img-wrapper-2 .authors-quote {
    padding-left: 20px;
    left: 0;
    bottom: -9px;
    border-radius: 9px;
    box-shadow: 0px 40px 80px rgba(53, 24, 24, 0.13);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-img-wrapper-2 .authors-quote {
        bottom: 50px;
    }
}

@media (max-width: 767px) {
    .about-img-wrapper-2 .authors-quote {
        bottom: 50px;
        position: relative;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-img-wrapper-2 .authors-quote {
        bottom: 50px;
        position: absolute;
    }
}

.about-img-wrapper-2 .authors-quote::before {
    display: none;
}

.about-img-wrapper-2 .authors-quote .a-icon {
    background: var(--brand_color);
    right: -26px !important;
    left: auto;
    top: -26px !important;
    filter: drop-shadow(0px 15px 30px rgba(76, 92, 225, 0.46));
}

@media (max-width: 767px) {
    .about-img-wrapper-2 .authors-quote .a-icon {
        right: -10px !important;
        top: -10px !important;
    }
}

.download-our-app {
    position: relative;
    z-index: 1;
}

.download-our-app .line-shape {
    position: absolute;
    z-index: -1;
    left: 13%;
    bottom: 35px;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
    .download-our-app .line-shape {
        left: 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .download-our-app .line-shape {
        left: 0;
    }
}

.app-bg {
    border-radius: 40px;
    background: #fbf6ff;
    box-shadow: 0px 40px 70px rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
    .app-bg {
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 767px) {
    .app-bg .btn-list {
        display: block;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .app-bg .btn-list {
        display: flex;
    }
}

@media (max-width: 767px) {
    .app-bg .btn-list li {
        display: block;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .app-bg .btn-list li {
        display: inline-block;
        margin-bottom: 0;
    }
}

.app-screen {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .app-screen img {
        width: 100%;
    }
}

.app-screen::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 362px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(251, 246, 255, 0), rgba(251, 246, 255, 0.5), #fbf6ff);
    left: 0;
    right: 0;
    bottom: 0;
}

.about-single-box {
    padding-left: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-single-box {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .about-single-box {
        padding-left: 0;
    }
}

.about-single-box h5 {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fact-title {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-title {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .fact-title {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .fact-one {
        padding-right: 0;
    }
}

.fact-one h3 {
    color: #1B222D;
    font-size: 80px;
    font-family: "Circular Std";
    font-weight: 400;
    margin-bottom: 5px;
}

.fact-one h5 {
    color: #76797E;
    font-family: "Circular Std Book";
    font-weight: 400;
    margin-bottom: 3px;
}

.review-icon a {
    color: #FFAA51;
    font-size: 14px;
    margin: 0 1px;
}

.fact-one h3 span {
    display: inline-block;
}

.fact-one .sub-title {
    color: rgba(0, 0, 0, 0.7);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-one .sub-title {
        font-size: 20px;
    }
}

.status-bg {
    border-radius: 10px;
    background: white;
    box-shadow: 0px 50px 100px rgba(8, 15, 21, 0.07);
    position: relative;
    z-index: 2;
    margin-bottom: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .status-bg {
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .status-bg {
        margin-bottom: 100px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .status-box {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .status-box {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .status-box {
        padding-right: 0;
    }
}

.status-box .status-icon {
    background: #FF8282;
    width: 53px;
    height: 53px;
    text-align: center;
    line-height: 53px;
    border-radius: 50%;
    float: left;
    margin-right: 30px;
    margin-top: 40px;
}

.status-box .status-icon.ic-2 {
    background: #1bacb0;
}

.status-box .status-icon.ic-3 {
    background: #ffd36f;
}

@media (max-width: 767px) {
    .status-box .status-icon {
        float: none;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .status-box .status-icon {
        float: left;
        margin-bottom: 0;
    }
}

.status-box .status-content {
    overflow: hidden;
}

.status-box .status-content span {
    color: rgba(0, 0, 0, 0.26);
    font-size: 15px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .status-box .status-content .sub-title {
        font-size: 22px;
    }
}

.customer-fact-area .section-title-4 .round-line {
    color: #1bacb0;
}

.customer-fact-area .section-title-4 .round-line::before {
    left: -28px;
    top: -26px;
    width: 260px;
    height: 132px;
}

.fact-main-wrapper {
    display: block;
    z-index: 1;
}

.fact-main-wrapper .shapes {
    position: absolute;
    z-index: 1;
}

.fact-main-wrapper .shapes.shape1 {
    left: 16%;
    top: -3%;
    animation: animationFramesTwo infinite 27s linear;
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape1 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape2 {
    top: 44%;
    left: -11%;
    animation: animationFramesTwo infinite 17s linear;
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape2 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape3 {
    left: 50%;
    top: 44%;
    animation: animationFramesOne infinite 20s linear;
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape3 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape4 {
    right: 10%;
    top: 29%;
    animation: animationFramesOne infinite 19s linear;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-main-wrapper .shapes.shape4 {
        display: none;
    }
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape4 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape5 {
    right: 33%;
    top: 61%;
    animation: animationFramesTwo infinite 27s linear;
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape5 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape6 {
    left: 11%;
    bottom: 20%;
    animation: animationFramesOne infinite 27s linear;
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape6 {
        display: none;
    }
}

.fact-main-wrapper .shapes.shape7 {
    left: 38px;
    top: 32px;
    animation: rotated infinite 30s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fact-main-wrapper .shapes.shape7 {
        left: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) and (max-width: 767px) {
    .fact-main-wrapper .shapes.shape7 {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-main-wrapper .shapes.shape7 {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 767px) {
    .fact-main-wrapper .shapes.shape7 {
        display: none;
    }
}

@media (max-width: 767px) {
    .fact-main-wrapper .shapes.shape7 {
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 100%;
        animation: unset;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    .fact-main-wrapper .shapes.shape7 {
        display: none;
    }
}

.fact-list {
    position: relative;
    z-index: 1;
    list-style:none;
    padding: 0px;
}

.fact-list li .fact-one {
    display: inline-block;
    background: white;
}

.fact-list li .fact-one h3 {
    line-height: 1;
    margin-bottom: 0;
}

.fact-list li .fact-one h3 span {
    font-family: "PT Serif", serif;
    font-weight: 700;
}

.fact-list li .fact-one .sub-title-2 {
    color: #3E3E3E;
    line-height: 1;
}

.fact-list li:first-child {
    text-align: right;
}

@media (max-width: 767px) {
    .fact-list li:first-child {
        text-align: center;
    }
}

.fact-list li:first-child .fact-one h3 {
    color: #07B292;
}

.fact-list li:nth-child(2) {
    text-align: left;
}

@media (max-width: 767px) {
    .fact-list li:nth-child(2) {
        text-align: center;
    }
}

.fact-list li:nth-child(2) .fact-one h3 {
    color: var(--brand_color);
}

.fact-list li:last-child {
    text-align: right;
}

@media (max-width: 767px) {
    .fact-list li:last-child {
        text-align: center;
    }
}

.fact-list li:last-child .fact-one {
    margin-top: 45px;
}

.fact-list li:last-child .fact-one h3 {
    color: #ffd36f;
}

.fact-wrapper .shape.shapes_1 {
    position: absolute;
    right: -40px;
    bottom: -29%;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .fact-wrapper .shape.shapes_1 {
        right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fact-wrapper .shape.shapes_1 {
        right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-wrapper .shape.shapes_1 {
        right: 0;
    }
}

@media (max-width: 767px) {
    .fact-wrapper .shape.shapes_1 {
        display: none;
    }
}

.fact-wrapper .shape.shapes_2 {
    position: absolute;
    right: -25px;
    bottom: -15%;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .fact-wrapper .shape.shapes_2 {
        right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fact-wrapper .shape.shapes_2 {
        right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fact-wrapper .shape.shapes_2 {
        right: 0;
    }
}

@media (max-width: 767px) {
    .fact-wrapper .shape.shapes_2 {
        right: 0;
    }
}

.services-area .info-text {
    color: #343434;
    font-size: 20px;
    font-family: "Circular Std";
    font-weight: 500;
    line-height: 1.3;
}

.services-area .info-text span {
    color: var(--brand_color);
}

.services-title-wrapper .section-title .round-line::before {
    left: -14px;
    top: -16px;
    width: 154px;
    height: 104px;
}

.s-services {
    padding: 43px 40px 35px 40px;
}

@media (max-width: 767px) {
    .s-services {
        padding: 43px 16px 35px 15px;
    }
}

.s-services .sub-title {
    font-weight: 400;
    margin-bottom: 28px;
}

.s-services:hover::before, .s-services.active::before {
    background: #fff2f2;
    width: 100%;
}

.s-more-btn {
    overflow: hidden;
    display: inline-block;
    width: 80px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-align: center;
    position: relative;
}

.s-more-btn .back-one {
    transform: translateX(-100px);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.s-more-btn .back-two {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    transform: translateY(-44%);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.s-more-btn:hover .back-one {
    transform: translateY(0);
}

.s-more-btn:hover .back-two {
    transform: translateY(-44%);
    left: auto;
    right: -70px;
    margin: 0 0 0 auto;
}

.services-area .section-title-4 .round-line {
    color: #1bacb0;
    padding-left: 10px;
}

.services-area .section-title-4 .round-line::before {
    left: -19px;
    top: -23px;
    width: 243px !important;
    height: 125px !important;
}

.s-services-wrapper {
    border-radius: 10px;
    background: white;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .s-services-wrapper {
        padding-right: 35px;
        padding-left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .s-services-wrapper {
        padding-right: 15px;
        padding-left: 30px;
    }
}

@media (max-width: 767px) {
    .s-services-wrapper {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.s-services-wrapper .shape1 {
    position: absolute;
    left: -29px;
    top: -22px;
    z-index: -1;
}

.s-services-wrapper .shape2 {
    position: absolute;
    right: -58px;
    bottom: -60px;
    z-index: -1;
    animation: rotated infinite 10s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .s-services-wrapper .shape2 {
        right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .s-services-wrapper .shape2 {
        right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .s-services-wrapper .shape2 {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .s-services-wrapper .shape2 {
        right: 10px;
    }
}

.s-services-wrapper .shape3 {
    position: absolute;
    right: -84px;
    bottom: 3px;
    z-index: 1;
    animation: rotated infinite 10s alternate-reverse;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .s-services-wrapper .shape3 {
        right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .s-services-wrapper .shape3 {
        right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .s-services-wrapper .shape3 {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .s-services-wrapper .shape3 {
        right: 10px;
    }
}

.s-services-wrapper .ilustration-img {
    float: left;
    width: 30%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .s-services-wrapper .ilustration-img {
        float: none;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 991px) {
    .s-services-wrapper .ilustration-img {
        float: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .s-services-wrapper .ilustration-img {
        float: none;
        margin-bottom: 20px;
        margin-right: 0;
    }
}

.s-services-wrapper .ilustration-img img {
    width: 100%;
}

.s-services-wrapper .s-services-text {
    overflow: hidden;
}

.s-services-wrapper .s-services-text h5 {
    color: var(--brand_color);
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 37px;
}

.s-services-wrapper .s-services-text h3 {
    font-size: 42px;
    font-family: "PT Serif", serif;
    font-weight: 400;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .s-services-wrapper .s-services-text h3 {
        font-size: 30px;
    }
}

.s-services-wrapper .s-services-text .sub-title {
    color: black;
    font-family: "Rubik", sans-serif;
}

.s-services-wrapper .s-services-text .s-more-btn {
    width: 56px;
}

.row-title h3 {
    color: black;
    font-size: 48px;
    font-family: "PT Serif", serif;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .row-title h3 {
        font-size: 35px;
    }
}

.quote-wrapper {
    position: relative;
    z-index: 1;
}

.form-box {
    max-width: 450px;
    position: relative;
    transform: translateX(323px);
    padding: 54px 40px 64px 40px;
    box-shadow: 0px 30px 60px rgba(19, 45, 73, 0.06);
    z-index: 7;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .form-box {
        transform: translateX(123px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .form-box {
        transform: translateX(0);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .form-box {
        transform: translateX(0);
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .form-box {
        transform: translateX(0);
        padding: 54px 15px 64px 15px;
        max-width: 100%;
    }
}

.form-box .sub-title {
    text-transform: uppercase;
}

.form-box .review-text {
    color: #727272;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 767px) {
    .form-box .review-text {
        font-size: 14px;
    }
}

.form-box .review-text a {
    color: #262626;
    border-bottom: 1px solid #262626;
}

.quote-form {
    position: relative;
    z-index: 5;
}

.quote-form .input-title {
    color: rgba(0, 0, 0, 0.43);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.quote-form .choice-list {
    background: rgba(240, 245, 252, 0.8);
    padding: 5px 0 10px 0;
    border-radius: 5px;
}

.quote-form .choice-list .select-product {
    background: 0;
    border: 0;
    height: 35px;
    font-size: 16px;
    color: black;
    font-weight: 400;
    line-height: 35px;
    float: none;
    width: 100%;
    padding-left: 20px;
}

.quote-form .choice-list .select-product .current {
    font-size: 16px;
    color: black;
    line-height: 40px;
}

.quote-form .choice-list .select-product::after {
    display: none;
}

.quote-form .choice-list .select-product::before {
    content: "\f107";
    font-family: 'Flaticon';
    font-size: 10px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.quote-form .choice-list .select-product .list {
    width: 100%;
}

.quote-form .choice-list .select-product .list li:hover, .quote-form .choice-list .select-product .list li:focus {
    background-color: rgba(240, 245, 252, 0.8);
}

.quote-form .email-input {
    background: rgba(240, 245, 252, 0.8);
    margin-bottom: 15px;
    padding: 5px 20px 10px 20px;
    border-radius: 5px;
}

#commentform .email-input{
    border-radius: 0;
}

.quote-form .email-input input {
    color: #050020;
    font-size: 16px;
    border: 0;
    background: 0;
    width: 100%;
    height: 35px;
    padding: 0;
    display: block;
    box-shadow: none
}

.quote-form .email-input .input-title {
    margin-bottom: 0;
}

.quote-form .q-btn-lg {
    font-family: "Circular Std";
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: white;
    height: 55px;
    width: 100%;
    cursor: pointer;
    border: 0;
    background: var(--brand_color);
    text-transform: uppercase;
}

.subscribe-wrapper .sub-btn {
    text-transform: capitalize;
}

.form-box-2 {
    background: rgba(255, 255, 255, 0.3);
    max-width: 100%;
    margin-left: 70px;
    transform: translateX(0);
    border-radius: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .form-box-2 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .form-box-2 {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .form-box-2 {
        margin-left: 0;
    }
}

.form-box-2 .quote-form .choice-list {
    background: rgba(255, 255, 255, 0.8);
}

.form-box-2 .quote-form .email-input {
    background: rgba(255, 255, 255, 0.8);
}

.form-box-2 .quote-form .q-btn-lg {
    background: var(--brand_color);
    border-radius: 5px;
    font-size:inherit
}

.quote-form .q-btn-lg:hover{
    background: var(--secondary_color);
}

.form-box-2 .quote-form .review-text a {
    color: black;
}

.search-input {
    position: relative;
    z-index: 1;
}

.search-input .search {
    position: absolute;
    top: 10px;
    left: 1px;
}

.search-input input {
    background: transparent;
    border: 0;
    color: black;
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1;
    border-bottom: 1px solid black;
    height: 30px;
    padding-left: 27px;
    padding-bottom: 14px;
    box-shadow:none;
}

@media (max-width: 767px) {
    .search-input input {
        width: 100%;
    }
}

.search-input input:focus {
    border-bottom: 1px solid var(--brand_color);
}

.quote-wrapper-bg {
    border-radius: 15px;
    background: white;
    box-shadow: 0px 30px 60px rgba(19, 24, 48, 0.07);
    position: relative;
    margin-bottom: -215px;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quote-wrapper-bg {
        padding-left: 25px;
        padding-right: 25px;
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .quote-wrapper-bg {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 100px;
    }
}

.quote-wrapper-bg .q-shapes {
    position: absolute;
    z-index: -1;
}

.quote-wrapper-bg .q-shapes.shape_1 {
    top: -53px;
    left: -53px;
    z-index: -1;
}

@media (max-width: 767px) {
    .quote-wrapper-bg .q-shapes.shape_1 {
        display: none;
    }
}

.quote-wrapper-bg .q-shapes.shape_2 {
    top: -9%;
    left: -5%;
}

.quote-wrapper-bg .section-title-4 h5 {
    color: #3E3E3E;
    font-size: 20px;
    font-family: "PT Serif", serif;
    font-weight: 400;
    line-height: 1.7;
}

.quote-wrapper-bg .section-title-4 p {
    color: #888;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    margin-bottom: 12px;
}

.quote-wrapper-bg .section-title-4 .number {
    color: var(--brand_color);
    font-size: 24px;
}

.quote-wrapper-bg .section-title-4 .number b {
    color: black;
    font-weight: 400;
}

.quote-wrapper-bg .quote-wrapper .section-title-4 .round-line {
    color: #1bacb0;
}

.quote-wrapper-bg .quote-wrapper .section-title-4 .round-line::before {
    position: absolute;
    content: '';
    left: -16px;
    top: -5px;
    width: 293px;
    height: 94px;
    z-index: 99999;
}


@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quote-form-left {
        padding-left: 0;
        padding-right: 0;
        margin-right: 0;
        border: 0;
    }
}

@media (max-width: 767px) {
    .quote-form-left {
        padding-left: 0;
        padding-right: 0;
        margin-right: 0;
        border: 0;
    }
}

.quote-form-left h3 {
    color: black;
    font-size: 32px;
    font-family: "PT Serif", serif;
    font-weight: 700;
}

.quote-form-left h5 {
    color: #787878;
    font-size: 20px;
    font-family: "PT Serif", serif;
    font-weight: 400;
}

.quote-form-left .quote-form .input-title {
    background: #fff;
    transform: translateY(12px);
    position: relative;
    z-index: 1;
    padding: 0 8px;
    margin-left: 13px;
}

.quote-form-left .quote-form .choice-list {
    background: transparent;
}

.quote-form-left .quote-form .choice-list .select-product {
    border: 1.5px solid #B7B7B7;
    border-radius: 5px;
    height: 52px;
    line-height: 52px;
    color: black;
}

.quote-form-left .quote-form .email-input {
    background: transparent;
    padding: 0;
}

.quote-form-left .quote-form .email-input input {
    border: 1.5px solid #B7B7B7;
    border-radius: 5px;
    height: 52px;
    line-height: 52px;
    color: black;
    padding-left: 20px;
}

.quote-form-left .review-text {
    font-size: 16px;
    text-align: center;
}

.quote-form-left .review-text a {
    color: black;
    border-bottom: 1px solid black;
}

.subscribe-letter-area .subscribe-wrapper .section-title-4 h3 {
    font-size: 48px;
}

.subscribe-letter-area .subscribe-wrapper .section-title-4 .round-line {
    color: #1bacb0;
}

.subscribe-letter-area .subscribe-wrapper .section-title-4 .round-line::before {
    left: -10px;
    top: -2px;
    width: 152px;
    height: 74px;
}

.subscribe-letter-area .subscribe-wrapper .section-title-4 .sub-title-2 {
    color: black;
}

.fot-border-subscribe span {
    color: rgba(52, 52, 52, 0.5);
}

.fot-border-subscribe .subscribe-form input {
    color: rgba(52, 52, 52, 0.4);
    border: 2px solid black;
    background: transparent;
    border-radius: 5px;
}

.get-quote-area-two {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .quote-white {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .quote-white {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.quote-white .quote-wrapper {
    position: relative;
    z-index: 1;
}

.quote-white .quote-wrapper::before {
    content: '';
    position: absolute;
    background: #ECECEC;
    width: 1px;
    height: 530px;
    right: -10px;
    top: -116px;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quote-white .quote-wrapper::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .quote-white .quote-wrapper::before {
        display: none;
    }
}

.quote-white .quote-wrapper .sub-title {
    color: black;
}

.form-box-3 {
    max-width: 100%;
    transform: translateX(0);
    box-shadow: none;
    background: transparent;
    padding: 0;
    padding-left: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .form-box-3 {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .form-box-3 {
        padding-left: 0;
    }
}

.form-box-3 .sub-title {
    color: black;
    font-family: "Circular Std";
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.comments-form h5 {
    color: rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.5;
}

.comments-form h5 a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
}

.comments-form h5:hover a {
    color: var(--brand_color);
    border-color: var(--brand_color);
}

.comments-form .email-input {
    margin-bottom: 15px;
}

.email-input textarea {
    border: 0;
    background: transparent;
    resize: none;
    width: 100%;
    height: 125px;
    display: block;
}

.comments-btn {
    border: 0;
    padding: 17px 43px;
    font-size: 17px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .address-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .address-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .address-box {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.address-box .loc-icon {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.address-box .sub-title {
    color: black;
    font-weight: 500;
}

.address-box p {
    color: rgba(0, 0, 0, 0.6);
}

.address-box:hover .loc-icon {
    transform: translateY(10px);
}

.contact-form-area .quote-form .email-input {
    background: transparent;
    padding: 5px 20px 0 0;
}

.contact-form-area .quote-form .email-input input {
    color: black;
    font-size: 18px;
    border-bottom: 2px solid #000;
}

.contact-form-area .quote-form .email-input textarea {
    color: black;
    font-size: 18px;
    border-bottom: 2px solid #000;
}

.map-area iframe {
    width: 45%;
    height: 600px;
    border: 0;
    position: absolute;
    left: 0;
    top: 60px;
    z-index: 1;
}

@media (max-width: 767px) {
    .map-area iframe {
        width: 100%;
        height: 500px;
        position: relative;
        top: 0;
        margin-bottom: 100px;
    }
}

.error-area {
    width: 100%;
    min-height: 940px;
    background-size: cover;
    background-repeat: no-repeat;
}

.error-wrapper .logo-img {
    display: inline-block;
}

.error-wrapper .logo-img .logo-1a {
    display: none
}

.error-wrapper .error-title {
    color: black;
    font-size: 48px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .error-wrapper .error-title {
        font-size: 35px;
    }
}

.quote-wrapper .section-title .round-line::before {
    left: -20px;
    top: -36px;
    width: 279px;
    height: 138px;
}

.section-title .get-contact {
    color: var(--brand_color);
    font-size: 18px;
    font-family: "Circular Std";
    text-decoration: underline;
}

.section-title .get-contact:hover {
    color: #d41111;
}

.quote-img-wrapper .quote-mask-image {
    width: 1000px;
    min-height: 890px;
    position: absolute;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    top: 35px;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .quote-img-wrapper .quote-mask-image {
        width: 695px;
        min-height: 619px;
        background-size: contain;
        top: 170px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .quote-img-wrapper .quote-mask-image {
        width: 508px;
        min-height: 635px;
        top: 125px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quote-img-wrapper .quote-mask-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .quote-img-wrapper .quote-mask-image {
        display: none;
    }
}

.quote-img-wrapper .quote-mask-image::before {
    content: '';
    position: absolute;
    background: url(../img/hm3.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .quote-img-wrapper .quote-mask-image::before {
        background-size: contain;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .quote-img-wrapper .quote-mask-image::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quote-img-wrapper .quote-mask-image::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .quote-img-wrapper .quote-mask-image::before {
        display: none;
    }
}

.quote-img-wrapper .quote-mask-image::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.sub-bg {
    border-radius: 25px;
    background: #fbf5ff;
    box-shadow: 0px 40px 80px rgba(35, 25, 60, 0.08);
}

.sub-bg-h3 {
    border-radius: 10px;
    background: white;
    box-shadow: 0px 40px 100px rgba(8, 15, 21, 0.05);
    margin-top: -78px;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sub-bg-h3 {
        margin-top: 100px;
    }
}

@media (max-width: 767px) {
    .sub-bg-h3 {
        margin-top: 100px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.quote-wrapper .section-title-3 h5 {
    color: #848484;
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
}

.quote-wrapper .section-title-3 .number {
    font-size: 32px;
}

.subscribe-letter-area {
    position: relative;
    z-index: 1;
}

.subscribe-letter-area .line-shape {
    position: absolute;
    z-index: -1;
    left: 13%;
    bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .subscribe-letter-area .line-shape {
        left: 0;
    }
}

@media (max-width: 767px) {
    .subscribe-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.subscribe-wrapper .section-title .round-line::before {
    left: -20px;
    top: -25px;
    background: url(../img/b9.svg) no-repeat;
    width: 187px;
    height: 126px;
}

.blog-title-wrapper .section-title .round-line::before {
    left: auto;
    right: -19px;
    top: -20px;
    background: url(../img/b7.svg) no-repeat;
    width: 182px;
    height: 112px;
}

.blog-title {
    color: black;
    font-size: 32px;
    font-family: "Circular Std Book";
    font-weight: 500;
    line-height: 1.3;
}
.blog-title a{
    color:black;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blog-title {
        font-size: 18px;
    }
}

/*
@media only screen and (min-width: 0px) and (max-width: 1400px) {
    .hero-layout-one .quotation_form_heading,
    .hero-layout-one span,
    .hero-layout-one p,
    .hero-layout-one .subtitle h4 {
        color:white !important;
        display:inline;
    }
    .hero-layout-one{
        padding-bottom:40px
    }
}*/

.topbar-humburger .humburger-mobile-icon {
    display: none !important
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 24px;
    }
}

.blogs__thumb {
    display: inline-block;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .blogs__thumb {
        display: block;
    }
}

@media (max-width: 767px) {
    .blogs__thumb img {
        width: 100%;
    }
}

.blogs__thumb::before {
    content: '';
    position: absolute;
    background: url(../img/p1.svg) no-repeat;
    width: 13px;
    height: 100%;
    left: -7px;
    top: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .blogs__thumb::before {
        display: none;
    }
}

.blogs__thumb::after {
    content: '';
    position: absolute;
    background: url(../img/p2.svg) no-repeat;
    width: 100%;
    height: 10px;
    left: 0;
    bottom: -5px;
    z-index: 1;
}

@media (max-width: 767px) {
    .blogs__thumb::after {
        display: none;
    }
}

.blogs .blogs-mask-img {
    display: inline-block;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .blogs .blogs-mask-img {
        display: block;
    }
}

.blogs .blogs-mask-img::before {
    content: '';
    position: absolute;
    background: url(../img/p4.svg) no-repeat;
    width: 19px;
    height: 100%;
    right: -12px;
    top: 0;
    z-index: 3;
}

@media (max-width: 767px) {
    .blogs .blogs-mask-img::before {
        display: none;
    }
}

.blogs .blogs-mask-img::after {
    content: '';
    position: absolute;
    background: url(../img/p3.svg) no-repeat;
    width: 100%;
    height: 14px;
    left: 0;
    top: -9px;
    z-index: 3;
}

@media (max-width: 767px) {
    .blogs .blogs-mask-img::after {
        display: none;
    }
}

.blogs__content .tag {
    color: white;
    line-height: 1;
    font-size: 16px;
    background: var(--brand_color);
    padding: 5px 12px;
    display: inline-block;
}

.blogs__content > a {
    color: black;
}
.blogs__content > a.theme_btn {
    color:white;
}
.blogs__content .tag > a {
    color: white;
}

.blogs:hover .blog-title a {
    color: #9b0d0d;
}

.blogs-2 .tag {
    background: var(--brand_color);
    border-radius: 12.5px;
}

.blogs-2 .blogs__thumb {
    display: inline-block;
    overflow: hidden;
    border-radius: 14px;
}

@media (max-width: 767px) {
    .blogs-2 .blogs__thumb {
        display: block;
    }
}

.blogs-2 .blogs__thumb img {
    border-radius: 14px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
    .blogs-2 .blogs__thumb img {
        width: 100%;
    }
}

.blogs-2 .blogs__thumb::before {
    display: none;
}

.blogs-2 .blogs__thumb::after {
    display: none;
}

.blogs-2 .blog-title {
    color: black;
    font-family: "PT Serif", serif;
    font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .blogs-2 .blog-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .blogs-2 .blog-title {
        font-size: 24px;
    }
}

.blogs-2 .blog-btn {
    color: black;
    font-size: 17px;
    font-family: "Circular Std";
    font-weight: 400;
    line-height: 1;
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.blogs-2 .blog-btn:hover {
    border-bottom: 1px solid #1c0449;
}

.blogs-2:hover .blogs__thumb img {
    transform: scale(1.1);
}

.blogs-2:hover .blog-title {
    color: var(--brand_color);
}

.blog-title-wrapper .section-title-4 h6 {
    font-size: 20px;
    font-family: "PT Serif", serif;
}

.blog-title-wrapper .section-title-4 .round-line::before {
    position: absolute;
    content: '';
    left: -22px;
    top: -16px;
    width: 223px;
    height: 100px;
    z-index: 999999;
}

.blogs-3 .blogs__thumb {
    border-radius: 5px !important;
}

.blogs-3 .blogs__thumb img {
    border-radius: 5px;
    width: 100%;
}

.blogs__content .date-tag {
    color: var(--brand_color);
    font-size: 17px;
    display: inline-block;
}

.blogs-3 .blogs__content .blog-title {
    font-family: "PT Serif", serif;
    font-weight: 400;
}

.blogs-3 .blogs__content .blog-btn {
    font-family: "Rubik", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.blogs-std .blogs__thumb {
    display: inline-block;
    overflow: hidden;
}

.blogs-std .blogs__thumb::before {
    display: none;
}

.blogs-std .blogs__thumb::after {
    display: none;
}

.blogs-std .blogs__thumb img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width:auto;
    max-width: 100%;
    height: auto
}

.blogs-std .blogs__content .date-tag {
    color: rgba(0, 0, 0, 0.4);
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}

.blogs-std .blogs__content .blog-title {
    font-size: 30px;
    font-weight: 500;
    font-family: "Circular Std";
    word-wrap: break-word
}

.blogs-std .blogs__content .blog-title a {
    color: black
}

.blogs-std:hover .blogs__content .blog-title a {
    color: #9b0d0d;
}

@media (max-width: 767px) {
    .blogs-std .blogs__content .blog-title {
        font-size: 25px;
    }
}

.blogs-std .blogs__content h5 {
    color: rgba(0, 0, 0, 0.8);
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.blogs-std:hover .blogs__thumb img {
    transform: scale(1.1);
}

.widget-search-content .subscribe-form {
    position: relative;
    z-index: 1;
}

.widget-search-content .subscribe-form input {
    width: 100%;
    font-size: 17px;
    font-style: italic;
    height: 60px;
}

.widget-search-content .subscribe-form .search-icon {
    font-size: 20px;
    border: 0;
    background: 0;
    padding: 0;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.widget-search-content .subscribe-form button.search-icon {
    color: black;
}
.faq-search-wrap .subscribe-form button.search-icon{
    color:white;
}

.widget-title {
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
    font-family: "Circular Std";
}

.widget ul li {
    border-top: 1px solid #D3D3D3;
    display: block;
}

.widget ul li.recentcomments {
    padding: 10px 15px;
}

.widget ul li:last-child {
    border-bottom: 1px solid #D3D3D3;
}
.widget ul.sub-menu li:last-child {
    border-bottom: none
}

.widget ul li a {
    font-size: 18px;
    padding: 25px 15px;
    display: block;
    line-height: 1;
}

.widget ul#recentcomments li a {
    display: contents;
    margin: 0px;
    padding: 0px;
}

.widget ul li a:hover {
    color: var(--brand_color);
}

.post-box {
    border-top: 1px solid #D3D3D3;
    padding: 20px 0 15px 15px;
}

.post-box:last-child {
    border-bottom: 1px solid #D3D3D3;
}

.f-right {
    float: right
}

.widget_recent_entries ul li a {
    font-family: "Circular Std";
    font-weight: 500;
    line-height: 1.4;
    font-size: 22px;
    padding-bottom: 7px;
}

.widget.widget_recent_entries li {
    padding-bottom: 15px;
}

.footer__widget ul li a {
    font-size: 18px;
}

.widget_recent_entries ul li:hover a {
    color: black
}

.widget_recent_entries ul li > span {
    color: #A2A2A2;
    font-family: "Circular Std Book";
    font-weight: 400;
    padding-left: 15px;
    display: block;
}

.wp-block-tag-cloud > a,
.tagcloud .tag-cloud-link {
    color: black;
    font-size: 15px !important;
    display: inline-block;
    text-transform: uppercase;
    background: #F3F7FC;
    line-height: 1;
    padding: 14px 25px;
    margin: 0 5px 15px 0;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.wp-block-tag-cloud > a:hover,
.tagcloud .tag-cloud-link:hover {
    color: white;
    background: var(--brand_color);
    border-radius: 0;
}

.widget_search > p {
    margin-bottom: 1rem;
}

.pagination .page-item:first-child .page-link {
    color: #D8D8D8;
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination .nav-links .page-numbers i {
    font-size: 15px;
}

.pagination .nav-links .page-numbers:hover i {
    color: black
}

.pagination .page-item:last-child .page-link {
    color: #D8D8D8;
    margin-left: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination .nav-links .page-numbers i {
    font-size: 15px;
    font-weight: 400;
    color: #D8D8D8;
}

.pagination .nav-links .page-numbers {
    color: black;
    font-size: 18px;
    line-height: 1;
    border: 1px solid #D8D8D8;
    padding: 12px 18px;
    margin-left: 0;
}

.content-grid-pagination .pagination {
    display: block;
    text-align: center
}

@media (max-width: 767px) {
    .pagination .nav-links .page-numbers {
        padding: 12px 15px;
    }
}

.pagination .nav-links .page-numbers:focus {
    z-index: 2;
    outline: 0;
    box-shadow: none;
}

.pagination .nav-links .page-numbers:hover, .pagination .nav-links .page-numbers.current {
    border: 1px solid var(--brand_color);
    background: #FFDFDF;
}

.blogs .section-title h3 {
    font-weight: 500;
    word-break:break-word;
}

@media (max-width: 767px) {
    .blogs .section-title h3 {
        font-size: 25px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .blogs .section-title h3 {
        font-size: 30px !important;
    }
}

.blogs p {
    color: #545454;
}

blockquote {
    padding: 40px 40px 35px 120px;
    background: #fff2f2;
    position: relative;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
    padding: 40px 40px 35px 120px;
}

blockquote:before {
    content: url('../img/icon10.svg');
    display: block;
    clear: both;
    position: absolute;
    left: 40px;
    top: 40px;
}

@media (max-width: 767px) {
    .wp-block-quote.is-large, .wp-block-quote.is-style-large,
    blockquote {
        padding: 40px 40px 35px 90px;
    }

    blockquote:before {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .wp-block-quote.is-large, .wp-block-quote.is-style-large,
    blockquote {
        padding: 85px 15px 35px 20px;
    }

    blockquote:before {
        top: 25px;
    }
}

blockquote .quote-icon {
    float: left;
}

@media (max-width: 767px) {
    blockquote .quote-icon {
        float: none;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    blockquote .quote-icon {
        float: left;
        margin-bottom: 0;
    }
}

blockquote h3 {
    overflow: hidden;
    color: #3E3E3E;
    font-size: 32px;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 767px) {
    blockquote h3 {
        font-size: 25px;
    }
}

.wp-block-column > blockquote {
    padding: 20px 40px 35px 80px;
}
.wp-block-column > blockquote::before {
    position: absolute;
    left: 15px;
    top: 25px;
}

.share-tag a {
    color: #A7A7A7;
    font-size: 18px;
    line-height: 1;
}

.share-tag a:hover {
    color: var(--brand_color);
}

.share-tag {
    color: #A7A7A7;
}

.share-tag span {
    color: black !important;
    font-size: 20px;
    font-family: "Circular Std";
    font-weight: 500;
    color: #A7A7A7;
    margin-right:5px;
}

.blog-share {
    border-bottom: 1px solid #D8D8D8;
    clear: both
}

.share-social span {
    color: black;
    font-size: 20px;
    font-family: "Circular Std";
    font-weight: 500;
    margin-right: 10px;

}

.share-social a {
    font-size: 18px;
}

.share-social a:hover {
    color: var(--brand_color) !important;;
}

.blog-details-title {
    color: black;
    font-size: 42px;
}

@media (max-width: 767px) {
    .blog-details-title {
        font-size: 30px;
    }
}

.single-comments .authors {
    float: left;
}

.single-comments .authors > img {
    border-radius: 50%
}

@media (max-width: 767px) {
    .single-comments .authors {
        float: none;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-comments .authors {
        float: left;
        margin-bottom: 0;
    }
}

.single-comments .authors__content {
    overflow: hidden;
}

.single-comments .authors__content h4 {
    color: #3E3E3E;
    font-size: 20px;
}

.single-comments .authors__content .reply {
    color: white;
    font-size: 14px;
    font-family: "Circular Std";
    font-weight: 500;
    display: inline-block;
    background: black;
    padding: 7px 17px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.single-comments .authors__content .reply:hover {
    background: var(--brand_color);
}

.single-comments .authors__content h6 {
    color: #8D8D8D;
    font-family: "Circular Std Book";
    font-weight: 400;
}

.single-comments .authors__content h5 {
    color: rgba(0, 0, 0, 0.8);
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}
.single-comments .authors__content img{
    margin:10px 0px;
}
.latest-comments > li:first-child {
    border-top: 1px solid #E5E5E5;
}

.testimonial-style-one .feedback-wrap {
    max-width: 1280px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 3;
}

.testimonial-style-one .feedback-wrap .owl-carousel .owl-stage {
    padding-left: 0 !important;
    padding-top: 80px;
    padding-bottom: 90px;
}

.testimonial-style-one .section-title {
    position: relative;
    z-index: 3;
}

.testimonial-style-one .section-title .round-line::before {
    left: -23px;
    top: -20px;
    background: url(../img/b8.svg) no-repeat;
    width: 215px;
    height: 104px;
}

.feedback-img-wrapper {
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 836px;
    min-height: 840px;
    top: 85px;
    left: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .feedback-img-wrapper {
        width: 650px;
        min-height: 652px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feedback-img-wrapper {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-img-wrapper {
        display: none;
    }
}

@media (max-width: 767px) {
    .feedback-img-wrapper {
        display: none;
    }
}

.feedback-img-wrapper::before {
    content: '';
    position: absolute;
    background: url(../img/hm2.png);
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .feedback-img-wrapper::before {
        background-size: contain;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-img-wrapper::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .feedback-img-wrapper::before {
        display: none;
    }
}

.feedback-img-wrapper::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.feedback-img-wrapper .title-text {
    left: 2%;
    z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .feedback-img-wrapper .title-text {
        top: 30%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-img-wrapper .title-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .feedback-img-wrapper .title-text {
        display: none;
    }
}

.feedback-inner-content {
    background: white;
    box-shadow: 0px 30px 60px rgba(19, 45, 73, 0.06);
    padding: 44px 43px 40px 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-inner-content {
        padding: 44px 43px 40px 43px;
    }
}

@media (max-width: 767px) {
    .feedback-inner-content {
        padding: 44px 15px 40px 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .feedback-inner-content {
        padding: 44px 25px 40px 25px;
    }
}

.feedback-inner-content .quote-icon {
    display: inline-block;
}

.feedback-inner-content .inner-text {
    color: black;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.feedback-inner-content .slide-video-area .popup-video img {
    transform: translateX(2px) !important;
}

.client-box .client-img {
    float: left;
    margin-right: 30px;
}

.client-box h5 {
    color: black3;
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
    margin-bottom: 0;
}

.client-box p {
    color: #C1C1C1;
    font-family: "Rubik", sans-serif;
}

.owl-dots {
    position: absolute;
    z-index: 11;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.team-active .owl-dots {
    bottom: -60px
}

.owl-dots .owl-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #FFDBE2 !important;
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
}

.owl-dots .owl-dot.active {
    width: 13px;
    height: 13px;
    background: var(--brand_color) !important;;
}

.testimonial-two {
    position: relative;
    z-index: 1;
}

.testimonial-two .line-shape {
    position: absolute;
    z-index: -1;
    left: 12%;
    top: 0px;
    bottom: 0px;
}

.testimonial-two .owl-stage {
    padding-top: 50px;
    padding-bottom: 100px;
}

.testimonial-two .owl-stage .owl-item {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.testimonial-two .owl-stage .owl-item .feedback-box .client-img img.test-img {
    opacity: 0.5;
}

.testimonial-two .owl-stage .owl-item.active {
    opacity: 1;
}

.testimonial-two .owl-stage .owl-item.active .feedback-box .client-img img.test-img {
    opacity: 1;
}

.client-feedback-wrapper-content {
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: white;
    width: 55px;
    height: 55px;
    display: inline-block;
    border-radius: 50%;
    filter: drop-shadow(0px 20px 30px rgba(172, 128, 174, 0.33));
    position: absolute;
    z-index: 1;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 19%;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 19%;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial-text-wrapper .section-title-3 .highlight-text::before {
    display: none;
}

.feedback-box {
    box-shadow: 0px 30px 60px rgba(19, 45, 73, 0.06);
    background: white;
    padding: 42px 55px 0px 35px;
    border-radius: 25px;
    position: relative;
    z-index: 3;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-box {
        padding: 42px 20px 0px 20px;
    }
}

@media (max-width: 767px) {
    .feedback-box {
        padding: 42px 15px 20px 15px;
    }
}

.feedback-box .client-img {
    display: inline-block;
}

.feedback-box .client-img .test-img {
    display: block;
    width: auto;
}

@media (max-width: 767px) {
    .feedback-box .client-img .test-img {
        width: 100%;
    }
}

.feedback-box .feedback-inner-content {
    box-shadow: none;
    padding: 0;
}

.feedback-box .slide-video-area .popup-video {
    background: rgba(76, 92, 225, 0.1);
    display: inline-block;
}

.feedback-box .slide-video-area .popup-video img {
    display: inline-block;
    width: auto;
    transform: translateX(2px) !important;
}

.feedback-box .slide-video-area span {
    color: black;
    font-family: "Circular Std";
}

.feedback-box .slide-video-area span b {
    color: #D6D6D6;
}

.feedback-box h3 {
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .feedback-box h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }
}

.feedback-box .sub-title {
    font-size: 20px;
}

.feedback-box h5 {
    font-size: 20px;
    font-family: "Circular Std Book";
    line-height: 1;
    font-weight: 400;
}

.feedback-box h5 span {
    color: #c1c1c1;
}

.feedback-active3 .slick-list {
    padding-bottom: 65px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .testimonial-text-wrapper .section-title-4 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .testimonial-text-wrapper .section-title-4 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .testimonial-text-wrapper .section-title-4 {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .testimonial-text-wrapper .section-title-4 {
        padding-left: 0;
        padding-right: 0;
    }
}

.testimonial-text-wrapper .section-title-4 .round-line::before {
    left: -31px;
    top: -10px;
    width: 226px;
    height: 102px;
}

.testimonial-text-wrapper .section-title-4 .sub-title-3 {
    color: #0E0E0E;
    font-size: 24px;
    font-family: "PT Serif", serif;
    font-weight: 400;
}

.test-img-round {
    display: inline-block;
}

.test-img-round img {
    max-width: 100%;
}

.slick-slider button.slick-arrow {
    background: #c1e6e7 !important;
    border: 0;
    width: 55px;
    height: 55px;
    display: inline-block;
    border-radius: 50%;
    filter: drop-shadow(0px 20px 30px rgba(172, 128, 174, 0.33));
    position: absolute;
    z-index: 1;
}

.slick-slider button.slick-arrow.slick-prev {
    position: absolute;
    left: 19%;
    top: 40%;
    transform: translateY(-50%);
}

.slick-slider button.slick-arrow.slick-next {
    position: absolute;
    right: 19%;
    top: 40%;
    transform: translateY(-50%);
}

.feedback-slick-wrapper .slick-slide.slick-current.slick-center .fb-box2 {
    transform: scale(1.2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .feedback-slick-wrapper .slick-slide.slick-current.slick-center .fb-box2 {
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .feedback-slick-wrapper .slick-slide.slick-current.slick-center .fb-box2 {
        transform: scale(1);
    }
}

.fb-box2 {
    padding: 45px 115px 42px 115px;
    border-radius: 10px;
    margin: 55px;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .fb-box2 {
        padding: 45px 40px 42px 40px;
    }

    .slide-video-area span {
        color: white;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .fb-box2 {
        padding: 45px 30px 42px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .fb-box2 {
        padding: 45px 15px 42px 15px;
        margin: 55px 30px;
    }
}

@media (max-width: 767px) {
    .fb-box2 {
        padding: 45px 15px 42px 15px;
        margin: 55px 0;
    }
}

.fb-box2 .sub-title-3 {
    /*color: #1b1b1b;*/
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .fb-box2 .sub-title-3 {
        font-size: 18px;
    }
}

.fb-box2 h6 {
    color: #C1C1C1;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}

.cf-area-three {
    position: relative;
}

.cf-area-three .test {
    position: absolute;
    z-index: 1;
}

.cf-area-three .test.test_01 {
    left: 21%;
    top: 14%;
    animation: scale-up-one infinite 5s ease-in-out;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_01 {
        left: 14%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cf-area-three .test.test_01 {
        left: 8%;
    }
}

.cf-area-three .test.test_02 {
    left: 14%;
    top: 50%;
    animation: scale-up-four infinite 3s alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_02 {
        left: 8%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cf-area-three .test.test_02 {
        left: 5%;
    }
}

.cf-area-three .test.test_03 {
    left: 14%;
    bottom: 16%;
    animation: scale-up-three infinite 7s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_03 {
        left: 7%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_03 {
        left: 5%;
    }
}

.cf-area-three .test.test_04 {
    right: 22%;
    top: 17%;
    animation: scale-up-two infinite 9s alternate;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_04 {
        right: 14%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cf-area-three .test.test_04 {
        right: 9%;
    }
}

.cf-area-three .test.test_05 {
    right: 13%;
    top: 45%;
    animation: scale-up-two infinite 8s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_05 {
        right: 5%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cf-area-three .test.test_05 {
        right: 4%;
    }
}

.cf-area-three .test.test_06 {
    right: 19%;
    bottom: 12%;
    animation: scale-up-five infinite 5s alternate-reverse;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .cf-area-three .test.test_06 {
        right: 10%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .cf-area-three .test.test_06 {
        right: 7%;
    }
}

.cf-area-three .owl-carousel .owl-stage-outer {
    padding-bottom: 120px;
}

.cf-area-three .owl-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -24px;
    z-index: 1;
}

.cf-area-three .owl-carousel .owl-nav .owl-prev {
    left: 44%;
    right: auto;
    background: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cf-area-three .owl-carousel .owl-nav .owl-prev {
        left: 42%;
    }
}

@media (max-width: 767px) {
    .cf-area-three .owl-carousel .owl-nav .owl-prev {
        left: 30%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cf-area-three .owl-carousel .owl-nav .owl-prev {
        left: 36%;
    }
}

.cf-area-three .owl-carousel .owl-nav .owl-prev i {
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-weight: 300;
}

.cf-area-three .owl-carousel .owl-nav .owl-prev:hover i {
    color: var(--brand_color);
    font-size: 50px;
    font-weight: 300;
}

.cf-area-three .owl-carousel .owl-nav .owl-next {
    right: 42%;
    left: auto;
    background: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .cf-area-three .owl-carousel .owl-nav .owl-next {
        right: 42%;
    }
}

@media (max-width: 767px) {
    .cf-area-three .owl-carousel .owl-nav .owl-next {
        right: 30%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .cf-area-three .owl-carousel .owl-nav .owl-next {
        right: 36%;
    }
}

.cf-area-three .owl-carousel .owl-nav .owl-next i {
    color: var(--brand_color);
    font-size: 50px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.cf-area-three .owl-carousel .owl-nav .owl-next:hover i {
    color: var(--brand_color);
    font-size: 50px;
}

.feedback-item-wrapper {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .feedback-item-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

.feedback-item-wrapper::before {
    content: '';
    position: absolute;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 15px 23px rgba(35, 49, 64, 0.09);
    width: 85%;
    height: 50px;
    left: 0;
    right: 0;
    bottom: -25px;
    margin: 0 auto;
    z-index: 1;
}

.feedback-item-wrapper::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 15px 23px rgba(35, 49, 64, 0.09);
    width: 74%;
    height: 50px;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: 0 auto;
    z-index: -1;
}

.fb-box-3 {
    background: white;
    padding: 5px 65px 35px 65px;
    box-shadow: 0px 15px 23px rgba(35, 49, 64, 0.09);
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .fb-box-3 {
        padding: 5px 15px 35px 15px;
    }
}

.fb-box-3 .quote-icon {
    transform: translateY(28px);
    display: inline-block;
    text-align: center;
}

.fb-box-3 .sub-title {
    font-size: 24px;
    color: black;
    font-family: "Circular Std Book";
    font-weight: 400;
}

@media (max-width: 767px) {
    .fb-box-3 .sub-title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .fb-box-3 .sub-title {
        font-size: 24px;
    }
}

.fb-box-3 h5 {

    text-transform: uppercase;
    font-weight: 500;
}

.fb-box-3 h6 {
    color: #909090;
    font-size: 17px;
    font-family: "Circular Std Book";
    font-weight: 400;
}

.chose-list{
    list-style:none;
    padding:0px;
}
.chose-list li {
    margin-bottom: 50px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.chose-list li:first-child {
    margin-left: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .chose-list li:first-child {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chose-list li:first-child {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .chose-list li:first-child {
        margin-left: 0;
    }
}

.chose-list li:nth-child(2) {
    margin-right: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .chose-list li:nth-child(2) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chose-list li:nth-child(2) {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .chose-list li:nth-child(2) {
        margin-right: 0;
    }
}

.chose-list li:nth-child(3) {
    margin-left: 85px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .chose-list li:nth-child(3) {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .chose-list li:nth-child(3) {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .chose-list li:nth-child(3) {
        margin-left: 0;
    }
}

.chose-list li:hover {
    transform: translateY(-10px);
}

.chose-list li:hover .chose-box {
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.06);
}

.chose-box {
    border-radius: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    padding: 36px 65px 32px 50px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.03);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .chose-box {
        padding: 36px 45px 32px 50px;
    }
}

@media (max-width: 767px) {
    .chose-box {
        padding: 36px 15px 32px 15px;
    }
}

.chose-box .chose-box-icon {
    float: left;
    margin-right: 35px;
    margin-top: -3px;
}

@media (max-width: 767px) {
    .chose-box .chose-box-icon {
        float: none;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .chose-box .chose-box-icon {
        float: left;
        margin-bottom: 0;
    }
}

.chose-box .chose-box-text {
    overflow: hidden;
}

.chose-box .chose-box-text h5 {
    color: rgba(0, 0, 0, 0.59);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.chose-box .chose-box-text h3 {
    font-weight: 400;
    line-height: 1.3;
}

.chose-title-wrapper .section-title .round-line::before {
    left: -17px;
    top: -40px;
    width: 178px;
    height: 148px;
}
.chose-text-list{
    list-style:none;
    padding:0px;
}
.chose-text-list li {
    margin-bottom: 43px;
    font-size: 24px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .chose-text-list li {
        font-size: 20px;
    }
}

.chose-text-list li a {
    color: var(--brand_color);
}

.chose-text-list li a:hover {
    border-bottom: 1px solid var(--brand_color);
}

.chose-text-list li:hover::before {
    transform: translateX(5px);
}

.faq-title-wrapper .section-title-4 .round-line {
    color: #1bacb0;
}

.faq-title-wrapper .section-title-4 .round-line::before {
    left: -23px;
    top: -17px;
    width: 320px;
    height: 98px;
}

.faq-title-wrapper .section-title-4 h5 {
    font-size: 20px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 50px;
}

.faq-title-wrapper .section-title-4 h5 a {
    color: #3489D1;
    border-bottom: 1px solid #3489D1;
}

.card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.card .card-header {
    border: none;
    background: 0;
    border-radius: 0;
    padding: 0;
    border-top: 1px solid #DEDEDE;
}

.card .card-header button {
    background: transparent;
    border: none;
    border-radius: 0;
    color: black;
    font-size: 22px;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    display: block;
    padding: 30px 15px;
    width: 100%;
    text-align: left;
    position: relative;
    transition: unset;
    white-space: normal;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .card .card-header button {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .card .card-header button {
        font-size: 18px;
    }
}

.card .card-header button.btn-link::after {
    content: '';
    position: absolute;
    background: url(../img/chevrondown.svg) no-repeat;
    width: 15px;
    height: 9px;
    right: 0;
    top: 47%;
    z-index: 1;
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.card .card-header button.btn-link.collapsed::after {
    transform: rotate(0deg);
}

.card .card-header button .btn-link.focus, .card .card-header button:focus {
    text-decoration: none;
    border-color: transparent;
    box-shadow: none;
}

.card .card-header button:hover {
    color: black;
    text-decoration: none;
}

.card .card-body {
    padding-top: 0;
}

@media (max-width: 767px) {
    .card .card-body {
        font-size: 16px;
    }
}

.card:last-child {
    border-bottom: 1px solid #DEDEDE;
}
.faq-que .card:last-child {
    border-bottom-color: transparent;
}

.faq-title-2a .section-title .round-line::before {
    left: -8px;
    top: -17px;
}

.faq-que-2 .card .card-header button {
    font-size: 24px;
    border-top-color: #DEDEDE;
}

@media (max-width: 767px) {
    .faq-que-2 .card .card-header button {
        font-size: 20px;
        padding-right: 35px;
    }
}

.faq-que-2 .card .card-header button::after {
    right: 15px;
}

.faq-que-2 .card:last-child .card-header button {
    border-bottom: 1px solid #DEDEDE;
}

.faq-que-2 .card .collapse.show {
    border-bottom: 5px solid var(--brand_color);
}

.get-answer h3 {
    color: black;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 50px;
}

.get-answer .faq-btn {
    text-transform: initial;
}

.faq-que-search .subscribe-form input {
    color: black;
    font-style: normal;
    height: 74px;
    background: transparent;
    border: 1.5px solid #DEDEDE;
    line-height: 79px;
    padding-left: 35px;
}

.faq-que-search .subscribe-form .search-icon {
    color: white;
    font-size: 25px;
    border: 0;
    background: var(--brand_color);
    width: 80px;
    height: 60px;
    right: 8px;
    line-height: 58px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq-que-search .subscribe-form .search-icon {
        top: 44%;
    }
}

@media (max-width: 767px) {
    .faq-que-search .subscribe-form .search-icon {
        top: 44%;
    }
}

.faq-que-details .card {
    background: white;
    margin-bottom: 20px;
}

.faq-que-details .card .card-header{
    border-top:none
}
.faq-que-details .card .card-header button {
    font-size: 24px;
    font-weight: 400;
    border: 0;
    background: white;
    padding: 20px 70px 20px 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .faq-que-details .card .card-header button {
        padding: 20px 10px 20px 60px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .faq-que-details .card .card-header button {
        padding: 20px 10px 20px 35px;
        font-size: 18px;
    }
}

.faq-que-details .card .card-header button::after {
    content: '\f068';
    font-family: 'Font Awesome 5 pro';
    position: absolute;
    background: unset;
    font-size: 15px;
    right: auto;
    left: 40px;
    top: 46%;
    line-height: 6px;
}

@media (max-width: 767px) {
    .faq-que-details .card .card-header button::after {
        left: 15px;
    }
}

.faq-que-details .card .card-header button.collapsed::after {
    content: '\f067';
}

.faq-que-details .card .card-body {
    padding-left: 70px;
    padding-right: 70px;
}

@media (max-width: 767px) {
    .faq-que-details .card .card-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.video-title {
    color: white;
    font-size: 62px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .video-title {
        font-size: 35px;
    }
}

.video-wrapper {
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .video-wrapper {
        min-height: 450px;
    }
}

.video-content {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.video-content .popup-video {
    width: 103px;
    height: 103px;
    line-height: 103px;
    text-align: center;
}

.video-content .popup-video img {
    transform: translateX(4px);
}

.video-content .popup-video:hover {
    background: var(--secondary_color);
}

.team-area .owl-dots {
    bottom: -70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .team-area .owl-dots {
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .team-area .owl-dots {
        bottom: -20px;
    }
}

.team-title-wrapper .section-title .round-line::before {
    width: 195px;
    height: 115px;
    left: -19px;
    top: -36px;
}

.team-title-wrapper .section-title .sub-title {
    color: #3D3D3D;
}

.s-teams__thumb {
    display: block;
    overflow: hidden;
}

.s-teams__thumb img {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 100%;
}

.s-teams__content .sub-title {
    color: black;
    font-weight: 500;
}

.s-teams__content h5 {
    color: #A5A5A5;
    font-family: "Circular Std Book";
    font-size: 20px;
    font-weight: 400;
}

.s-teams:hover .s-teams__thumb img {
    transform: scale(1.1);
}

.plan-list li {
    font-size: 20px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .plan-list li {
        overflow: hidden;
        width: 50%;
        float: left;
    }
}

.plan-list li:last-child::before {
    display: inline-block;
    background: url(../img/tick.svg) no-repeat !important;
}

.nav-tabs {
    border-bottom: 0;
    border: 0;
    display: inline-block;
    border: 2px solid var(--brand_color);
    border-radius: 30px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .nav-tabs {
        border: 0;
    }
}

.nav-tabs .nav-link {
    border: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    color: var(--brand_color);
    font-size: 16px;
    font-family: "Circular Std Book";
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
    padding: 22px 38px;
}

.nav-tabs .nav-link:first-child {
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

@media (max-width: 767px) {
    .nav-tabs .nav-link:first-child {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
    }
}

.nav-tabs .nav-link:last-child {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
}

@media (max-width: 767px) {
    .nav-tabs .nav-link:last-child {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

.nav-tabs .nav-link.active {
    color: white;
    background-color: var(--brand_color);
    border-color: transparent;
    border: 0;
}

.price-tab-button .nav-tabs .nav-link {
    border-radius: 0;
}

@media (max-width: 767px) {
    .nav-tabs .nav-link {
        width: 100%;
        margin-bottom: 15px;
        border-radius: 40px;
        text-align: center;
    }
}

.plan {
    border: 1px solid #EBEBEB;
    padding: 50px 40px 15px 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .plan {
        padding: 50px 15px 15px 15px;
    }
}

.plan .plan-tag {
    color: white;
    font-size: 15px;
    line-height: 1;
    background: black;
    padding: 14px 18px;
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.plan__header {
    border-bottom: 1px solid #EBEBEB;
}

.plan__header .sub-title {
    color: #202020;
    font-size: 18px;
    text-transform: uppercase;
}

.plan__header h1 {
    color: black;
    font-size: 80px;
    font-weight: 500;
}

.plan__header h1 sup {
    font-size: 25px;
    top: -10px;
}

.plan__header h5 {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.plan .chose-text-list {
    border-bottom: 1px solid #EBEBEB;
}

.plan .chose-text-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 28px;
}

.plan .chose-text-list li::before {
    background: url(../img/tick2.svg) no-repeat;
}

.plan .chose-text-list li:last-child::before {
    display: inline-block;
}

.plan__footer .border-btn {
    color: var(--brand_color);
    border-radius: 0;
    text-transform: initial;
    padding: 15px 30px;
    border-color: var(--brand_color);
}

.plan__footer .border-btn:hover {
    color: white;
    background: var(--brand_color);
}

.plan__footer h6 {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.plan:hover, .plan.active {
    border-color: transparent;
    background: white;
    box-shadow: 0px -40px 70px rgba(7, 26, 47, 0.07);
}

.plan:hover .plan-tag, .plan.active .plan-tag {
    opacity: 1;
    visibility: visible;
}

.plan:hover .plan__footer .border-btn, .plan.active .plan__footer .border-btn {
    color: white;
    background: var(--brand_color);
}

.plan-2 .plan__header h1 {
    font-size: 80px;
}

.plan-2 .plan__header h1 sup {
    font-size: 28px;
}

.plan-info-text {
    color: #707070;
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .plan-info-text {
        margin-bottom: 20px;
    }
}

.plan-info-text span {
    color: var(--brand_color);
    font-weight: 500;
}

.case-title {
    color: black;
    font-size: 32px;
    font-weight: 500;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 3px solid var(--brand_color);
}

.case-single img {
    width: 100% !important;
}

.case-single .sub-title {
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
}

.case-list li {
    margin-bottom: 35px;
}

.case-list li:last-child::before {
    display: inline-block;
}

.case-info li {
    margin-bottom: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .case-info li {
        overflow: hidden;
        width: 50%;
        float: left;
        margin-bottom: 35px;
    }
}

.case-info li span {
    color: white;
    font-family: "Circular Std";
    font-weight: 500;
    line-height: 1;
    background: var(--brand_color);
    display: inline-block;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 12px;
}

.case-info li h5 {
    color: #797979;
}


.white-title h6 {
    color: rgba(255, 255, 255, 0.26);
}

.white-title h3 {
    color: white;
}

.dark-home-two .section-title-3 h3 {
    color: white;
}

.dark-home-two .section-title-3 .sub-title {
    color: rgba(255, 255, 255, 0.8);
}

.dark-home-two .main-head-two .main-menu li a {
    color: white;
}

.dark-home-two .main-head-two .main-menu li ul.submenu li a {
    color: black;
}

.dark-home-two .do-box-2 {
    background: transparent;
}

.dark-home-two .do-box-2 .more-btn {
    color: var(--brand_color);
    border-bottom-color: var(--brand_color);
}

.dark-home-two .chose-box {
    background: rgba(255, 255, 255, 0.05);
}

.dark-home-two .chose-box .chose-box-text h5 {
    color: rgba(255, 255, 255, 0.59);
}

.dark-home-two .chose-box .chose-box-text h3 {
    color: white;
}

.dark-home-two .app-bg {
    background: #2F3233;
}

.dark-home-two .app-bg .app-screen::before {
    background: linear-gradient(rgba(47, 50, 51, 0) 0%, rgba(47, 50, 51, 0.84) 48.54%, #2f3233 100%) !important;
}

.dark-home-two .quote-wrapper .section-title-3 .number {
    color: var(--brand_color);
    font-size: 32px;
}

.dark-home-two .form-box-2 {
    background: rgba(255, 255, 255, 0.06);
}

.dark-home-two .form-box-2 .sub-title {
    color: white;
}

.dark-home-two .form-box-2 .quote-form .choice-list {
    background: white;
}

.dark-home-two .form-box-2 .quote-form .email-input {
    background: white;
}

.dark-home-two .form-box-2 .review-text {
    color: white;
}

.dark-home-two .form-box-2 .review-text a {
    color: var(--brand_color);
    border-color: var(--brand_color);
}

.dark-home-two .feedback-box {
    background: #2F3233;
}

.dark-home-two .feedback-box .feedback-inner-content {
    background: transparent;
}

.dark-home-two .feedback-box .feedback-inner-content h3 {
    color: white;
}

.dark-home-two .feedback-box .feedback-inner-content h5 {
    color: white;
}

.dark-home-two .feedback-box .feedback-inner-content h5 span {
    color: white;
}

.dark-home-two .owl-carousel .owl-nav button.owl-next,
.dark-home-two .owl-carousel .owl-nav button.owl-prev {
    background: #2D2F30;
}

.dark-home-two .owl-carousel .owl-nav button.owl-next img,
.dark-home-two .owl-carousel .owl-nav button.owl-prev img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.dark-home-two .blogs-2 .blog-btn {
    color: rgba(255, 255, 255, 0.8);
}

.dark-home-two .blogs-2 .blog-btn img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(0.8);
}

.dark-home-two .sub-bg {
    background: #2D2F30;
}

.dark-home-three .search-input .search {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.dark-home-three .search-input input {
    color: white;
    border-color: white;
}

.dark-home-three .search-input input::placeholder {
    color: white;
}

.dark-home-three .header-top-cta ul li span {
    color: white;
}

.dark-home-three .header-top-cta ul li span img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.dark-home-three .header-bg {
    background: rgba(255, 255, 255, 0.03);
}

.dark-home-three .language-switcher button {
    color: white;
}

.dark-home-three .main-head-three.menu-sticky {
    background: #2F3132;
}

.dark-home-three .main-head-three.menu-sticky .header-bg {
    background: transparent;
    box-shadow: none;
}

.dark-home-three .main-menu-3 ul li > a {
    color: white;
}

.dark-home-three .main-menu-3 ul li ul.submenu li a {
    color: black;
}

.dark-home-three .btn-list li a.border-btn {
    background: white;
}

.dark-home-three .btn-list li a.border-btn:hover, .dark-home-three .btn-list li a.border-btn.active {
    color: white;
    background: var(--brand_color);
    border-color: var(--brand_color);
}

.dark-home-three .btn-list li a.border-btn.active:hover {
    color: black;
    background: white;
    border-color: white;
}

.dark-home-three .review-box span {
    color: rgba(255, 255, 255, 0.5);
}

.dark-home-three .slider-bg-3 {
    background: 0;
}

.dark-home-three .status-bg {
    background: #2F3132;
}

.dark-home-three .status-box .status-content span {
    color: rgba(255, 255, 255, 0.35);
}

.dark-home-three .section-title-4 h6 {
    color: rgba(255, 255, 255, 0.3);
}

.dark-home-three .section-title-4 h3 {
    color: white;
}

.dark-home-three .s-services-wrapper {
    background: #2F3132;
}

.dark-home-three .s-services-wrapper .s-services-text h3 {
    color: white;
}

.dark-home-one .s-services-wrapper .s-services-text .sub-title {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .sub-title {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .row-title h3 {
    color: white;
}

.dark-home-three .what-text-2 h3 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .do-box-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.01);
}

.dark-home-three .do-box-wrapper h3 {
    color: white;
}

.dark-home-three .do-box-wrapper h5 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .do-box-wrapper:hover, .dark-home-three .do-box-wrapper.active {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.01);
}

.dark-home-three .fact-list li .fact-one {
    background: #17191A;
}

.dark-home-three .fact-list li .fact-one .sub-title-2 {
    color: #787878;
}

.dark-home-three .sub-title-2 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .testimonial-text-wrapper .section-title-4 .sub-title-3 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .fb-box2 {
    background: rgba(255, 255, 255, 0.05);
}

.dark-home-three .fb-box2 .sub-title-3 {
    color: white;
}

.dark-home-three .slick-slider button.slick-arrow {
    background: black !important;
    filter: unset;
}

.dark-home-three .slick-slider button.slick-arrow img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.dark-home-three .faq-title-wrapper .section-title-4 h5 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .card:last-child .card-header button {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-home-three .card .card-header button {
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.dark-home-three .card .card-body {
    color: white;
}

.dark-home-three .quote-wrapper-bg {
    background: rgba(255, 255, 255, 0.05);
}

.dark-home-three .quote-wrapper-bg .section-title-4 h5 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .quote-wrapper-bg .section-title-4 .number b {
    color: white;
    font-weight: 400;
}

.dark-home-three .quote-form-left {

}

.dark-home-three .quote-form-left h3 {
    color: white;
}

.dark-home-three .quote-form-left h5 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .quote-form-left .quote-form .input-title {
    background: #232526;
}

.dark-home-three .quote-form-left .quote-form .choice-list .select-product {
    border-color: #D8D8D8;
    color: white;
}

.dark-home-three .quote-form-left .quote-form .choice-list .select-product .current {
    color: white;
}

.dark-home-three .quote-form-left .quote-form .choice-list .select-product .option {
    color: black;
}

.dark-home-three .quote-form-left .quote-form .email-input {
    border-color: #D8D8D8;
}

.dark-home-three .quote-form-left .quote-form .email-input input {
    color: white !important;
}

.dark-home-three .quote-form-left .quote-form .email-input input::placeholder {
    color: white;
}

.dark-home-three .quote-form-left .quote-form .email-input input::-moz-placeholder {
    color: white;
}

.dark-home-three .quote-form-left .quote-form .email-input input::-webkit-placeholder {
    color: white;
}

.dark-home-three .quote-form-left .review-text {
    color: white;
}

.dark-home-three .quote-form-left .review-text a {
    color: white;
    border-color: white;
}

.dark-home-three .blogs-3 .blogs__content .blog-btn {
    color: rgba(255, 255, 255, 0.3);
}

.dark-home-three .blogs-3 .blogs__content .blog-btn img {
    -webkit-filter: brightness(0) invert(0.3);
    filter: brightness(0) invert(0.3);
}

.dark-home-three .sub-bg-h3 {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0;
}

.dark-home-three .sub-bg-h3 .subscribe-wrapper .section-title-4 .sub-title-2 {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .fot_widget_h3 .widget-title {
    color: white;
}

.dark-home-three .fot_widget_h3 .fot-list li a {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .fot-border-subscribe .subscribe-form input {
    color: rgba(255, 255, 255, 0.6) !important;
    border: 2px solid white;
}

.dark-home-three .fot-border-subscribe .subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .fot-border-subscribe .subscribe-form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .fot-border-subscribe .subscribe-form input::-webkit-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.dark-home-three .copyright p {
    color: rgba(255, 255, 255, 0.6);
}

.hr-border {
    border-top: 1px solid #e5e5e5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer__widget {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .footer__widget {
        padding-left: 0;
    }
}

.footer__widget .contact-list li h5 {
    color: rgba(0, 0, 0, 0.79);
    font-size: 20px;
    font-family: "Circular Std Book";
    font-weight: 400;
    margin-bottom: 18px;
}


.widget-title.footer-widget-title{
    font-size: 24px;
}
.footer__widget .menu li a {
    display: inline-block;
    font-family: "Circular Std Book";
    margin-bottom: 16px;
}

.footer__widget li a:hover {
    color: var(--brand_color);
}

.footer-social a {
    color: rgba(0, 0, 0, 0.26);
    font-size: 19px;
    margin-right: 15px;
}

.footer-social a:hover {
    color: var(--brand_color);
}

.foter-subscribe span {
    color: rgba(0, 0, 0, 0.5);
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Rubik", sans-serif;
    margin-bottom: 10px;
}

.subscribe-form input {
    border: 0;
    color: #343434;
    font-size: 16px;
    height: 50px;
    width: 197px;
    display: inline-block;
    background: #f3f7fc;
    padding: 0 24px;
    margin-right: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .subscribe-form input {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .subscribe-form input {
        width: 100%;
        margin-bottom: 10px;
    }
}

.subscribe-form button.theme_btn {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border: 0;
    padding: 17px 22px;
}

.subscribe-form button.theme_btn.theme_btn3 {
    padding: 17px 22px !important;
}

.copyright p {
    color: #343434;
    font-size: 16px;
}

.fot_widget_2 .subscribe-form input {
    border-radius: 5px;
}

.fot_widget_2 .subscribe-form button.theme_btn {
    border-radius: 5px;
    background: var(--brand_color);
    transform: translateY(-2px);
}

.fot_widget_h3 .contact-list li {
    margin-bottom: 20px;
}

.fot_widget_h3 .contact-list li h5 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

.fot_widget_h3 .widget-title {
    color: black;
    font-family: "PT Serif", serif;
}

.footer__widget .menu li a {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

.fot_widget_h3 p {
    color: black;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
}

.subscribe-form button.theme_btn3 {
    padding: 17px 22px !important;
}

.f-shapes {
    position: absolute;
    z-index: 1;
}

.f-shapes.shape_1 {
    margin-top: 110px;
    left: 7px;
}

.f-shapes.shape_2 {
    margin-top: 102px;
    left: 0;
    transform: rotate(50deg);
}

/*# sourceMappingURL=main.css.map */

.latest-comments li.comment {
    border-top: 1px solid #E5E5E5;
}

ul.children > li.comment {
    border: none;
    margin-left: 80px;
}

.comment.has_children .single-comments {
    padding-bottom: 10px;
}

li.comment:last-child {
    border-bottom: 1px solid #E5E5E5;
}

ul.children {
    border-top: none;
}

.side-mobile-menu ul li.has-dropdown {
    color: white
}

.side-mobile-menu ul li.has-dropdown:hover {
    color: var(--brand_color)
}

/*.quote-form .email-input {
    margin-bottom: 15px;
}*/

.blog-comment-short-insturction {
    margin-bottom: 40px;
    margin-top: -10px;
}

.about-img-wrapper {
    /*top: 0px !important;*/
}

.blogs__content > .date-tag {
    display: block;
    text-transform:uppercase;
}

.ajax-loader {
    position: absolute !important;
    display: block !important;
    left: 0px !important;
    bottom: -30px;
    margin: 0px !important;
}

.more-btn-mt-top {
    margin-top: 28px;
    display: inline-block;
}

.feedback-box .client-img .test-img {
    max-width: unset
}

.owl-carousel .owl-nav button {
    background: white !important;
}

.section-title-4 .round-line::before {


}

.section-title .title-3 {
    position: relative
}

.position-relative {
    position: relative
}

@media screen and ( min-width: 991px ) {
    .fact-list {
        min-height: 500px
    }
}


.accordion-two-card-body:last-child {
    padding-top: unset !important;
}

.quote-form-left {
    /*border-right: 1px solid #B7B7B7;*/
}

.round-line::before {
    left: -19px;
    top: -23px;
}

.title-3 .round-line {
    position: relative
}

.list-icon-hover li .elementor-icon-list-icon > svg {
    transition: .3s all;
}

.list-icon-hover li:hover .elementor-icon-list-icon > svg {
    transform: translateX(5px);
}

.icon-list-more-btn:hover a {
    border-bottom: 1px solid red
}

.card > .show {
    border-style: solid;
    border: 1px solid transparent
}

.sefu-video-icon {
    font-size: 42px;
    vertical-align: middle
}


/*---------------------- Faqs -------------------*/
.faqs-inner-page {
    background: linear-gradient(45deg, #FFFBF2, #EDFFFD);
    padding: 170px 0 185px;
    position: relative;
    z-index: 5;
}

.faqs-header .icon {
    height: 55px;
    margin-right: 32px;
}

.faqs-header h3 {
    font-family: 'gilroy-semibold';
    font-size: 36px;
}

.faqs-header .collection-preview {
    font-size: 20px;
    line-height: 1.6em;
    padding-bottom: 25px;
}

.faqs-header .avatar {
    margin-top: -7px;
}

.faqs-header .avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 3px white;
    box-shadow: 0 0 0 3px white;
    position: relative;
}

.faqs-header .avatar img:nth-child(n+2) {
    z-index: 1;
    margin-left: -10px;
}

.faqs-header .avatar_fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-dark);
    border: 3px solid #fff;
    line-height: 42px;
    color: #fff;
    font-size: 17px;
    z-index: 5;
    margin-left: -10px;
    text-align: center;
}

.faqs-header .collection-info {
    font-size: 16px;
    line-height: 1.5em;
    padding: 10px 0 0 0;
    color: #878787;
}

.faqs-header .collection-info span {
    color: var(--heading);
    font-weight: 500;
}

.all-faqs .faqs-all-qus {
    margin-bottom: 70px;
}

.all-faqs .faqs-all-qus .article-preview {
    background: #fff;
    padding: 45px 40px;
    margin-bottom: 18px;
    box-shadow: 0 15px 30px rgba(23, 59, 40, 0.05);
}

.all-faqs .faqs-all-qus .article-preview[onclick*="location"] {
    cursor: pointer;
}

.faqs-all-qus .article-preview .avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 22px;
}

.faqs-all-qus .article-preview h3 {
    font-size: 24px;
    padding-bottom: 10px;
}

.faqs-all-qus .article-preview .avatar-info {
    font-size: 16px;
    line-height: 1.43em;
    color: #606060;
}

.faqs-all-qus .article-preview .avatar-info span {
    color: var(--heading);
}

.faqs-all-qus .article-preview .article-details {
    border-top: 1px solid #D8D8D8;
    margin-top: 46px;
    padding: 38px 0 48px;
    color: rgb(0, 0, 0, 0.8);
}

.faqs-all-qus .article-preview .article-details .list-meta {
    padding: 31px 0 32px 43px;
}

.faqs-all-qus .article-preview .article-details .list-meta li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 20px;
}

.faqs-all-qus .article-preview .article-details .list-meta li:before {
    content: url(../images/icon/49.svg);
    position: absolute;
    left: 0;
    top: 0;
}

.faqs-all-qus .article-preview .article-details .reaction-wrapper {
    border: 2px solid #979797;
    border-radius: 5px;
    text-align: center;
    padding: 50px 15px;
    margin-top: 68px;
    position: relative;
    z-index: 1;
}

.faqs-all-qus .article-preview .article-details .reaction-wrapper h4 {
    font-size: 24px;
    padding-bottom: 24px;
}

.faqs-all-qus .article-preview .article-details .reaction-wrapper button {
    margin: 0 11px;
    transition: all 0.2s ease-in-out;
}

.faqs-all-qus .article-preview .article-details .reaction-wrapper button:hover {
    transform: translateY(-3px);
}

.faqs-inner-page .more-faq-ask h3 {
    font-size: 36px;
}

.faqs-inner-page .shape-one {
    left: 0;
    bottom: -140px;
    animation: jumpTwo 5s infinite linear;
}

.faqs-inner-page .shape-two {
    width: 30px;
    height: 30px;
    background: #FFDFDF;
    border-radius: 50%;
    top: -15px;
    left: 40%;
}

.faqs-inner-page .shape-three {
    width: 7px;
    height: 7px;
    background: #51FCFF;
    border-radius: 50%;
    top: 190px;
    right: 9%;
}

.faqs-inner-page .shape-four {
    width: 8px;
    height: 8px;
    background: #FFCD8B;
    border-radius: 50%;
    top: 211px;
    left: 12%;
}

.shapes {
    position: absolute;
    z-index: -1;
}

.page-title-wrapper .sub-title > p {
    font-size: 24px;
    font-family: "Circular Std Book";
    font-weight: 400;
    line-height: 1.6;
}

.slick-dots {
    text-align: center
}

.slick-dots li {
    display: inline-block;
    margin: 0px 5px;
}

.slick-dots > li > button {
    width: 15px;
    height: 15px;
    background: var(--brand_color);
    border-radius: 50%;
    border: none;
    color: transparent;
    cursor: pointer
}

.subscribe-form input {
    border: 0;
    color: #343434;
    font-size: 16px;
    height: 50px;
    width: 197px;
    display: inline-block;
    background: #f3f7fc;
    padding: 0 24px;
    margin-right: 17px;
    box-shadow:none;
}

.subscribe-form button.theme_btn {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border: 0;
    padding: 17px 22px;
}

@media screen and ( min-width: 991px ) {
    .margin-top-50 {
        margin-top: 50px
    }
}

.d-none.topbar {
    display: block !important;
}

@media screen and ( max-width: 767px ) {
    .d-none.topbar a {
        font-size: 12px;
        padding: 15px 20px 15px 20px
    }
}

.main-header-area .logo-img .logo-3 {
    display: none;
}

.topbar-header-template > .logo > .logo-img > .logo-3 {
    display: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {

    .main-header-area .logo-img .logo-3 {
        display: inline-block;
    }

    .main-header-area .logo-img .logo-1a {
        display: none;
    }

    .input-box li .quote-btn {
        transform: translateY(2px);
    }

}

/* WPCF7 STYLES */
.wpcf7-not-valid-tip {
    color: var(--accent_solid_color_opt);
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    margin-left: 30px;
    display: block;
    width: max-content;
}
.contact-form-area .quote-form .wpcf7-form-control-wrap{
    width: 100%;
    display: block;
}
.contact-form-area .quote-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    color: var(--accent_solid_color_opt);
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    display: block;
    width: max-content;
    right: 0px;
    bottom: 0px;
}

.wpcf7 form.invalid .wpcf7-response-output {
    background: var(--accent_solid_color_opt);
    border-color: var(--accent_solid_color_opt) !important;
    color: white;
    display: inline-block;
}

.larger-hero-static-text {
    margin: auto;
    display: block !important;
    text-align: center;
    right: 0px;
}

.single-faq .main-header-area .logo-img .logo-1a,
.single-case-study .main-header-area .logo-img .logo-1a {
    display: block
}

.single-faq .main-header-area.menu-sticky .logo-img .logo-1a,
.single-case-study .main-header-area.menu-sticky .logo-img .logo-1a {
    display: none
}

.single-faq .main-header-area .logo-img .logo-3,
.single-case-study .main-header-area .logo-img .logo-3 {
    display: none
}


.blog-heading .page-title-wrapper .page-title .round-line::before {
    position: absolute;
    content: '';
    left: -36px;
    top: -42px;
    width: 278px;
    height: 158px;
    background: url(../img/cr6.svg) no-repeat;
    z-index: -1;
}


.subscribe-form .fas {
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 400 !important;
}

.embed-google-map > iframe {
    height: 600px;
}

@media screen and (max-width: 767px) {
    .embed-google-map > iframe {
        height: 500px;
    }
}

.icon-list-alignment li > span {
    align-self: baseline;
    display: block !important;
}

.owl-carousel.feedback-active4 .owl-nav button {

    filter: none
}
body.admin-bar .menu-sticky,
body.admin-bar {
    margin-top: 32px
}

.blogs-std.sticky {
    background: #f9f9f9;
    position: relative;
    padding: 40px;
}

.blogs-std .date-tag{
    text-transform:capitalize;
}

.blogs-std.sticky .sticky-label {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 6px 20px;
    background: black;
    color: #fff;
    box-sizing:border-box
}

p.logged-in-as {
    margin-top: -15px;
    margin-bottom: 35px !important;
}

p.logged-in-as > a {
    color: rgba(0, 0, 0, 0.8)
}

p.logged-in-as > a:hover {
    color: red
}

ul.latest-comments ul, ul.latest-comments {
    list-style: none;
    padding-left:0px
}

.blog_link_post {
    background: #f3f8f9;
    border-left: 4px solid var(--brand_color);
    padding: 35px 40px;
    position: relative;
}

.blogs-std.blog_link_post:after {
    background: url("../img/icon_02.png") no-repeat;
    content: '';
    right: 30px;
    width: 75px;
    height: 75px;
    display: block;
    clear: both;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background-size: contain;
}

.blogs-std.blog_link_post .blogs__content > a > p {
    font-size: 20px;
    color: black;
    margin-bottom: 0;
    transition: color 0.2s linear;
}

.blogs-std.blog_link_post .blogs__content > a > p:hover {
    color: #9b0d0d;
}

blockquote .c_head {
    color: #545454;
    font-weight: normal;
    line-height: 34px;
    font-size:24px;
    margin-bottom: 45px;
}

blockquote.posts-format-quote {
    margin-bottom: 75px;
}
.header-top-nav > ul {
    list-style:none;
    padding:0px;
}
.about-us-area .about-wrapper ul.chose-text-list{
    padding:0px;
    list-style:none;
    display:inline-block;
    width:100%;
}
.section-title > .title-alt .round-line{
    border-bottom: 8px solid transparent;
}
.blogs__content .blog-btn {
    display: inline-block;
}
.case-details-area ul.case-info{
    list-style:none
}
.case-study-share > span {
    display: block !important;
    width: fit-content;
}
@media screen and (max-width:1200px){
    .main-header-area .logo-img .logo-3{
        display:block;
    }
    .main-header-area .logo-img .logo-1a{
        display:none;
    }
}
.dark-mode-read-more{
    display:none
}

.wpcf7-spinner {
    position: absolute;
    left: 0px;
    bottom: 0px;
}

/* TEAM CSS */

.s-teams__content .team-member-name > a{
    color:black
}

.team-member-container{
    background:#F3F7FC
}

.team-member-single img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.team-member-single .team-member-details {
    padding: 50px;
    box-sizing:border-box
}

.team-member-single .team-member-details h2 {
    margin-bottom: 10px;
    font-size: 58px;
    line-height: 58px;
}
.team-member-single .team-member-details p {
    font-size: 20px;
    color: rgb(0 0 0 / 50%);
    margin-bottom: 40px;
    line-height: 30px;
    font-family: 'Circular Std';
}
.author-column{
    padding:0px;
}

.team-member-single .team-member-details .team-member-info > p {
    font-family: 'Circular Std Book';
    font-size: 18px;
    color: #0000009e;
    margin-bottom: 17px;
    font-weight: 100;
}
.team-member-single .team-member-details .team-member-info > p:last-child{
    margin-bottom:0px
}

.team-member-single .team-member-details .team-member-info > p > b {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Circular Std';
}

.team-member-single .team-member-details .team-member-info .social_links {
    margin:50px 0px
}

.team-member-single .team-member-details .team-member-info .social_links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: black;
    color: white;
    display: inline-block;
    text-align: center;
    padding-top: 9px;
    font-size: 17px;
    line-height: 0px;
    margin-right: 5px;
}

.team-member-single .team-member-details .team-member-info .social_links a:hover{
    background:var(--brand_color);
}

.team-member-single .team-member-details .team-member-info .cv_download {
    border: 1px solid black;
    color: black;
    padding: 12px 35px;
    text-align: center;
    display: inline-block;
    margin: 0px;
    font-weight: 500;
    font-size: 18px;
    transition: .3s all;
}

.team-member-single .team-member-details .team-member-info .cv_download:hover {
    border-color: var(--brand_color);
    color: white;
    background:var(--brand_color)
}

.team-member-single .team-member-details .team-member-info .cv_download .download-black-icon, .team-member-single .team-member-details .team-member-info .cv_download .download-hover-icon {
    transition: .3s all;
    padding-left: 15px;
    vertical-align: text-bottom;
}
.team-member-single .team-member-details .team-member-info .cv_download .download-hover-icon,.team-member-single .team-member-details .team-member-info .cv_download:hover .download-black-icon {
    display:none;
}

.team-member-single .team-member-details .team-member-info .cv_download:hover .download-hover-icon {
    display:inline-block
}

.page-title-area.top-spacing{
    padding:70px 0px !important;
}

.team-member-content-wrapper{
    padding-left:0px;
    padding-right:0px;
}

.team-form input,.team-form textarea {
    padding: 10px 20px;
    width: 100%;
    margin: 0px 0px 17px;
    font-size: 18px;
    border: 1px solid transparent;
    box-shadow: none;
    line-height: 35px;
}

.team-form textarea {
    max-height:150px
}

.team-form input[type="submit"] {
    font-family: 'Circular Std Book';
    font-weight:400
}

.team-form textarea::placeholder, .team-form input::placeholder {
    color:#00000080;
    line-height: 35px;
    font-size: 18px;
}
@media screen and ( min-width:991px ){
    .blogs-pad-wrapper{
        padding-right:40px
    }
}
@media screen and ( max-width:767px ){
    .team-member-container {
        margin: 0px;
    }
    .team-member-content-wrapper{
        padding-left:15px;
        padding-right:15px;
    }
    .team-member-single .team-member-details {
        padding: 30px 15px;
    }
}
.blogs-std.no-post-thumbnail > .blogs__content {
    padding: 35px 40px 40px;
    border: 1px solid #E3E3E3;
    box-sizing: border-box;
}
.blogs-std.blog_link_post > .blogs__content{
    border:none
}
.blog_single_title_wrap{
    margin-bottom: 35px;
    display: inline-block;
    width: 100%;
}
.blog-single-cat > a {
    color: black;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Circular Std';
    margin-bottom: 15px;
    display: inline-block;
    position:relative;
}
.blog-single-cat > a:after {
    content: '.';
    display: block;
    clear: both;
    position: absolute;
    right: 0px;
    top: 0px;
    left: 100%;
}
.blog-single-reading-time {
    color: black;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Circular Std';
    font-weight: normal;
    opacity: .5;
    margin-left: 7px;
}
.blog_single_author {
    text-transform: capitalize;
    position: relative;
    line-height: 18px;
    font-family: 'Circular Std';
}
.blog_single_author:after{
    content: '.';
    display: block;
    clear: both;
    position: absolute;
    right: 0px;
    top: 0px;
    left: 100%;
}
.blog_single_date {
    margin-left: 15px;
    color: black;
    opacity: .5;
}
.blog_single_author > span{
    color: black;
    opacity: .5;
}
.custom-star-rating > .fa-star {
    font-size: 15px;
    color: #ffaa51;
    margin: 0px 3px;
}
.custom-star-rating.two > .fa-star {
    font-size: 13px;
}

.side-mobile-menu ul li ul li a{
    padding-left:0px;
    color:#ddd
}
.side-mobile-menu ul li ul li a:before{
    display:none
}
.side-mobile-menu ul li ul li ul li:last-child{
    border-bottom:none
}
.footer-area .wp-block-pullquote{
    margin:0px;
    padding:0px;
}

@media screen and ( max-width:1199px ) {
    .subs-letter-bg.sc-study{
        padding-left:25px;
        padding-right:25px;
    }
}
@media screen and ( max-width:575px ) {
    body.archive .page-title-wrapper{
        padding-left:15px
    }
}
form p{
    margin-bottom: 0 !important;
}
span.cd-words-wrapper {
    overflow: visible !important;
}
.price-tab-button nav div{
    overflow: hidden;
}
.chose-box .chose-box-icon img {
    max-width: 57px;
    max-height: 57px;
}