* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none
}

:root {
    --main-color: #032b66;
    --secondary-color: #5E789C;
    --text-color: #888888;
    --title-color: #000000;
    --white-color: #ffffff;
    --heebo: 'Heebo', sans-serif;
    --maven: 'Maven Pro', sans-serif
}

body {
    font-size: 16px;
    color: #000;
    line-height: 29px;
    /* font-weight: 500; */
    background: #fff;
    font-family: var(--heebo);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-font-smoothing: antialiased
}

@media(min-width: 1200px) {
    .container {
        max-width:1475px;
        padding: 0 30px
    }
}

.large-container {
    max-width: 1550px;
    padding: 0 15px;
    margin: 0 auto
}

.container-fluid {
    padding: 0
}

.auto-container {
    position: static;
    max-width: 1300px;
    padding: 5px 15px;
    margin: 0 auto
}

.small-container {
    max-width: 680px;
    margin: 0 auto
}

.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden!important;
    width: 100%;
    min-width: 300px
}

a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

a:hover {
    text-decoration: none;
    outline: none
}

input,button,select,textarea {
    font-family: var(--heebo);
    font-weight: 400;
    font-size: 16px;
    background: 0 0
}

::-webkit-input-placeholder {
    color: inherit
}

::-moz-input-placeholder {
    color: inherit
}

::-ms-input-placeholder {
    color: inherit
}

ul,li {
    list-style: none;
    padding: 0;
    margin: 0
}

input {
    transition: all 500ms ease
}

button:focus,input:focus,textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease
}

p {
    position: relative;
    font-family: var(--heebo);
    color: #000;
    /* font-weight: 500; */
    margin: 0;
    transition: all 500ms ease
}

h1,h2,h3,h4,h5,h6 {
    position: relative;
    font-family: var(--maven);
    font-weight: 400;
    color: var(--title-color);
    margin: 0;
    transition: all 500ms ease
}

.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    background: var(--main-color);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999
}

.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 26px;
    background: var(--white-color);
    color: var(--main-color);
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px
}

.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100
}

.handle-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 150px;
    margin: 0 auto 45px;
    width: 150px
}

.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    animation: letters-loading 4s infinite;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    top: 0;
    position: absolute
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: var(--maven);
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    animation-delay: .2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    animation-delay: .4s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    animation-delay: .6s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    animation-delay: .8s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    animation-delay: 1s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    animation-delay: 1.2s
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
    animation-delay: 1.4s
}

.handle-preloader .loader-section {
    background-color: #fff;
    height: 100%;
    position: fixed;
    top: 0;
    width: calc(50% + 1px)
}

.preloader .loaded .animation-preloader {
    opacity: 0;
    transition: .3s ease-out
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
    color: #fff
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
    color: #fff
}

.handle-preloader .animation-preloader .spinner {
    border: 3px solid #fff;
    border-top-color: rgba(255,255,255,.5)
}

@keyframes spinner {
    to {
        transform: rotateZ(360deg)
    }
}

@keyframes letters-loading {
    0%,75%,100% {
        opacity: 0;
        transform: rotateY(-90deg)
    }

    25%,50% {
        opacity: 1;
        transform: rotateY(0deg)
    }
}

@media screen and (max-width: 767px) {
    .handle-preloader .animation-preloader .spinner {
        height:8em;
        width: 8em
    }
}

@media screen and (max-width: 500px) {
    .handle-preloader .animation-preloader .spinner {
        height:7em;
        width: 7em
    }

    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-size: 40px;
        letter-spacing: 0
    }
}

.centred {
    text-align: center
}

.pull-left {
    float: left
}

.pull-right {
    float: right
}

figure {
    margin: 0
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all
}

.theme-btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    padding: 20.5px 57px;
    text-transform: capitalize;
    font-family: var(--heebo);
    color: var(--white-color)!important;
    background: var(--secondary-color);
    z-index: 1;
    transition: all 500ms ease;
    border-radius: 10px
}

.theme-btn span {
    position: relative;
    /* padding-right: 20px; */
}

.theme-btn span:before {
    position: absolute;
    /* content: '\e908'; */
    font-family: icomoon;
    font-size: 14px;
    top: 0;
    right: 0
}

.theme-btn:hover {
    box-shadow: inset 0 0 0 2em var(--main-color)
}

.theme-btn.btn-two {
    background: var(--main-color)
}

.theme-btn.btn-two:hover {
    box-shadow: inset 0 0 0 2em var(--secondary-color)
}

.row {
    --bs-gutter-x: 30px
}

.pagination {
    position: relative;
    display: block
}

.pagination li {
    position: relative;
    display: inline-block;
    margin-right: 7px
}

.pagination li:last-child {
    margin: 0!important
}

.pagination li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: #fff;
    font-family: var(--heebo);
    border: 1px solid #004274;
    text-align: center;
    color: var(--main-color);
    z-index: 1;
    transition: all 500ms ease
}

.pagination li a:hover,.pagination li a.current {
    color: var(--white-color);
    background: var(--main-color);
    border-color: var(--main-color)
}

.sec-pad {
    padding: 145px 0 150px
}

.mr-0 {
    margin: 0!important
}

.scroll-to-top {
    position: fixed;
    right: 0;
    bottom: 100px;
    transform: rotate(90deg);
    z-index: 99
}

.scroll-to-top .visible {
    visibility: visible!important;
    opacity: 1!important
}

.scroll-to-top .scroll-top-inner {
    opacity: 0;
    visibility: hidden
}

.scroll-to-top .scroll-top-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
    -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
    transition: all cubic-bezier(.4,0,.2,1) .4s
}

.scroll-to-top .scroll-bar {
    width: 50px;
    height: 2px;
    margin-right: 10px;
    position: relative
}

.scroll-to-top .scroll-bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: red
}

.scroll-to-top .scroll-bar .bar-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #000
}

.scroll-to-top .scroll-bar-text {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: red;
    transition: all 500ms ease
}

.scroll-to-top .scroll-bar-text:hover {
    transform: scale(1.1)
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px transparent;
        box-shadow: 0 0 0 30px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 30px transparent;
        box-shadow: 0 0 0 30px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@-webkit-keyframes diagonal-slide {
    from {
        top: 0;
        left: 0;
        animation-timing-function: linear
    }

    20% {
        top: -5px;
        left: -5px;
        animation-timing-function: linear
    }

    40% {
        top: 5px;
        left: -5px;
        animation-timing-function: linear
    }

    60% {
        top: 5px;
        left: 5px;
        animation-timing-function: linear
    }

    80% {
        top: -5px;
        left: 5px;
        animation-timing-function: linear
    }

    to {
        top: 0;
        left: 0;
        animation-timing-function: linear
    }
}

.owl-dots-none .owl-dots,.owl-nav-none .owl-nav {
    display: none!important
}

.sec-title {
    position: relative;
    display: block
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 26px;
    color: #07407d;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 5px;
    /* text-transform: uppercase; */
}

.sec-title .sub-title:before {
    position: absolute;
    content: '';
    background: #f80000;
    width: 270px;
    height: 1px;
    left: 0;
    bottom: -6px
}

.sec-title.centred .sub-title:before {
    left: 50%;
    transform: translateX(-50%)
}

.sec-title .sub-title:after {
    position: absolute;
    content: '\e90e';
    font-family: icomoon;
    font-size: 13px;
    background: var(--white-color);
    width: 33px;
    text-align: center;
    color: #032b66;
    left: 32px;
    bottom: -20px
}

.sec-title.centred .sub-title:after {
    left: 50%;
    transform: translateX(-50%)
}

.sec-title h2 {
    display: block;
    font-size: 26px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 5px
}

.sec-title.light .sub-title,.sec-title.light h2 {
    color: #fff
}

.home_one .sec-title .sub-title:after {
    color: var(--main-color)
}

.home_one .sec-title .sub-title:before {
    background: var(--secondary-color)
}

.main-header {
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,.03);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.sticky-header {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 0;
    background-color: var(--white-color);
    border-bottom: 1px solid rgba(0,0,0,.1);
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    padding: 0px;
}

.fixed-header .sticky-header {
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1
}

.header-top {
    position: relative;
    width: 100%;
    background: #032b66;
}

.header-top .outer-container {
    padding: 0 100px
}

.header-top .top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px
}

.header-top .top-left .info li {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 14px;
    color: var(--white-color);
    padding-left: 23px;
    margin-right: 60px
}

.header-top .top-left .info li:last-child {
    margin: 0
}

.header-top .top-left .info li i {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 15px;
    color: #fff
}

.header-top .top-left .info li a {
    color: var(--white-color)
}

.header-top .top-left .info li a:hover {
    text-decoration: underline
}

.header-top .top-left .info li:before {
    position: absolute;
    content: '';
    background: rgba(255,255,255,.2);
    width: 1px;
    height: 55px;
    top: -13px;
    right: -30px
}

.header-top .top-left .info li:last-child:before {
    display: none
}

.header-top .top-right {
    position: relative;
    display: flex;
    align-items: center
}

.header-top .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 20px
}

.header-top .social-links li:last-child {
    margin: 0
}

.header-top .social-links li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--white-color)
}

.header-top .social-links {
    position: relative;
    padding-right: 30px
}

.header-top .social-links:before {
    position: absolute;
    content: '';
    background: rgba(255,255,255,.2);
    width: 1px;
    height: 55px;
    top: -13px;
    right: 0
}

.header-top .search-form {
    position: relative;
    margin-right: 55px
}

.header-top .search-form .form-group {
    position: relative;
    width: 210px;
    margin: 0
}

.header-top .search-form .form-group input[type=search] {
    position: relative;
    display: block;
    width: 100%;
    height: 55px;
    padding: 10px 50px 10px 25px;
    font-size: 14px;
    color: rgba(255,255,255,.3);
    transition: all 400ms ease
}

.header-top .search-form .form-group input:focus {
    color: var(--white-color)
}

.header-top .search-form .form-group button {
    position: absolute;
    top: 15px;
    right: 0;
    font-size: 18px;
    color: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all 500ms ease
}

.header-top .search-form .form-group input:focus+button,.header-top .search-form .form-group button:hover {
    color: #fff
}

.header-top .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    padding: 14.5px 32px;
    text-align: center;
    background: #5e789c;
    z-index: 1
}

.header-top .btn-box a span {
    position: relative;
    padding-right: 16px
}

.header-top .btn-box a span:before {
    position: absolute;
    content: '\e908';
    font-family: icomoon;
    font-size: 12px;
    top: -1px;
    right: 0
}

.header-top .btn-box a:hover {
    color: var(--main-color)
}

.header-top .btn-box a:before {
    position: absolute;
    content: '';
    background: var(--white-color);
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 500ms ease
}

.header-top .btn-box a:hover:before {
    width: 100%
}

.header-lower {
    position: relative;
    width: 100%;
    background: #fff;
    padding-left: 250px
}

.header-lower .logo-box {
    position: relative;
    float: left;
    margin-right: 90px
}

.header-lower .nav-outer {
    position: relative;
    float: left;
    width: calc(100% - 361px);
    padding-right: 100px;
    padding-left: 55px;
    background: var(--white-color);
    border-bottom-left-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.main-header .support-box {
    position: relative;
    display: block;
    padding: 11px 0 2px 82px
}

.main-header .support-box .image-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%
}

.main-header .support-box .image-box img {
    width: 100%;
    border-radius: 50%
}

.main-header .support-box span {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5e789c
}

.main-header .support-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: var(--main-color)
}

.main-header .support-box a:hover {
    text-decoration: underline
}

.sticky-header .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sticky-header .outer-box .logo-box {
    max-width: 139px;
    margin-left: 50px
}

.main-menu {
    float: left
}

.main-menu .navbar-collapse {
    padding: 0;
    display: block!important
}

.main-menu .navigation {
    margin: 0;
    margin-left: 60px;
}

.main-menu .navigation>li {
    position: inherit;
    float: left;
    z-index: 2;
    margin: 0 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.main-menu .navigation>li:last-child {
    margin-right: 0!important
}

.main-menu .navigation>li:first-child {
    margin-left: 0!important
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    padding: 0;
    font-weight: 500;
    font-family: var(--heebo);
    opacity: 1;
    color: #000;
    z-index: 1;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.main-menu .navigation>li.current>a,.main-menu .navigation>li:hover>a {
}

.main-menu .navigation>li>ul,.main-menu .navigation>li>.megamenu {
    position: absolute;
    left: inherit;
    top: 100%;
    width: 250px;
    margin-top: 10px;
    padding: 7px;
    z-index: 100;
    /* border-radius: 27px; */
    background: #f30807;
    display: none;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.main-menu .navigation>li>.megamenu a {
    display: inline-block!important
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0
}

.main-menu .navigation>li>ul>li {
    position: relative;
    width: 100%
}

.main-menu .navigation>li>ul>li>a,.main-menu .navigation>li>.megamenu li>a {
    position: relative;
    display: block;
    padding: 8px 5px;
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--heebo);
    color: var(--white-color);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>a {
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.main-menu .navigation>li>.megamenu li>a {
    padding-left: 0;
    padding-right: 0
}

.main-menu .navigation>li>.megamenu h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: var(--white-color)
}

.main-menu .navigation>li>ul>li>a:hover,.main-menu .navigation>li>.megamenu li>a:hover {
    color: rgba(255,255,255,.5)
}

.main-menu .navigation>li>ul>li:last-child>a,.main-menu .navigation>li>.megamenu li:last-child>a {
    border-bottom: none
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'font awesome 5 pro';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 10px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    z-index: 5
}

.main-menu .navigation>li>ul>li>ul {
    position: absolute;
    left: 100%;
    top: 0%;
    margin-top: 15px;
    width: 230px;
    z-index: 100;
    display: none;
    border-radius: 0;
    padding: 10px 0;
    background: #032b66;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>ul.from-right {
    left: auto;
    right: 0
}

.main-menu .navigation>li>ul>li>ul>li {
    position: relative;
    width: 100%
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
    border-bottom: none
}

.main-menu .navigation>li>ul>li>ul>li>a {
    position: relative;
    display: block;
    padding: 10px 30px;
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    font-family: var(--white-color);
    color: var(--white-color);
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-align: left;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
    border-bottom: none
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
    color: rgba(255,255,255,.5)
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'font awesome 5 pro';
    content: "\f105";
    position: absolute;
    right: 20px;
    top: 12px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5
}

.main-menu .navigation>li.dropdown:hover>ul,.main-menu .navigation>li.dropdown:hover>.megamenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    top: 100%
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    visibility: visible;
    opacity: 1;
    top: 0%;
    margin-top: 0
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: -32px;
    top: 66px;
    width: 34px;
    height: 30px;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #3b3b3b;
    cursor: pointer;
    display: none;
    z-index: 5;
    transition: all 500ms ease
}

.main-menu .navigation li.current.dropdown .dropdown-btn,.main-menu .navigation li:hover .dropdown-btn {
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
    display: none
}

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: var(--main-color);
    display: none
}

.menu-area .mobile-nav-toggler .icon-bar {
    position: relative;
    height: 2px;
    width: 30px;
    display: block;
    margin-bottom: 5px;
    background-color: var(--white-color);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
    margin-bottom: 0
}

.main-menu .navigation>li.dropdown>.megamenu {
    position: absolute;
    width: 100%;
    padding: 30px 50px;
    left: 0
}

.main-menu .navigation li.dropdown .megamenu li h4 {
    margin-bottom: 10px
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    background: var(--main-color);
    display: none
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 900ms ease
}

.mobile-menu .navbar-collapse {
    display: block!important
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 10px 10px;
    text-align: left;
    /* padding-bottom: 100px; */
    background: white;
    max-width: 200px;
}

.mobile-menu-visible {
    overflow: hidden
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 900ms ease;
    background-color: #000
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: .7;
    visibility: visible;
    right: 100%;
    -webkit-transition: all .8s ease-out 0s;
    -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 900ms ease!important
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .7s ease;
    -o-transition: all .7s ease;
    transition: all .7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%)
}

.mobile-menu .close-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 30px;
    width: 24px;
    /* text-align: center; */
    font-size: 20px;
    color: #000;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -ms-transition: all .9s ease;
    -o-transition: all .9s ease;
    transition: all .9s ease
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
}

.mobile-menu .close-btn:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    background: white;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255,255,255,.1)
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255,255,255,.1)
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.mobile-menu .navigation li ul li>a {
    font-size: 16px;
    margin-left: 20px;
    text-transform: capitalize
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.mobile-menu .navigation li.current>a:before {
    height: 100%
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    color: #000;
    background: rgba(255,255,255,.1);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    color: #fff;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.mobile-menu .navigation li>ul,.mobile-menu .navigation li>ul>li>ul,.mobile-menu .navigation>li.dropdown>.megamenu {
    display: none
}

.mobile-menu .social-links {
    position: relative;
    padding: 0 25px
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0 10px 10px
}

.mobile-menu .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.mobile-menu .social-links li a:hover {
}

div#mCSB_1_container {
    top: 0!important
}

.mobile-menu .contact-info {
    position: relative;
    padding: 120px 30px 20px
}

.mobile-menu .contact-info h4 {
    position: relative;
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px
}

.mobile-menu .contact-info ul li {
    position: relative;
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,.8);
    margin-bottom: 3px
}

.mobile-menu .contact-info ul li a {
    color: rgba(255,255,255,.8)
}

.mobile-menu .contact-info ul li a:hover {
}

.mobile-menu .contact-info ul li:last-child {
    margin-bottom: 0
}

.main-header .outer-box {
    position: relative
}

.nice-select {
    position: relative;
    background: 0 0;
    border: none;
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    padding: 0 20px!important;
    color: #6e6e6e;
    height: auto
}

.nice-select:after {
    width: 8px;
    height: 8px;
    right: 20px;
    border-bottom: 2px solid #c4c4c4;
    border-right: 2px solid #c4c4c4
}

.tabs-box .tab {
    position: relative;
    display: none;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease
}

.tabs-box .tab.active-tab {
    display: block
}

.tabs-box .tab {
    transform: scale(.9,.9) translateY(0px)
}

.tabs-box .tab.active-tab {
    transform: scale(1) translateY(0px)
}

.list-style-one li {
    position: relative;
    display: block;
    font-size: 16px;
    padding-left: 35px;
    margin-bottom: 8px
}

.list-style-one li:last-child {
    margin-bottom: 0
}

.list-style-one li:before {
    position: absolute;
    content: '\e90f';
    font-family: icomoon;
    font-size: 20px;
    left: 0;
    top: 0;
    color: #000
}

.link-btn a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #0f181d
}

.link-btn a:hover {
    color: var(--secondary-color)
}

.link-btn a span {
    position: relative;
    padding-right: 20px
}

.link-btn a span:before {
    position: absolute;
    content: '\e908';
    font-family: icomoon;
    font-size: 14px;
    top: -1px;
    right: 0
}

.nav-style-one button {
    position: relative;
    display: none;
    width: 30px;
    height: 30px;
    line-height: 38px;
    font-size: 12px;
    text-align: center;
    color: var(--white-color);
    background: var(--main-color);
    border-radius: 50%;
    transition: all 500ms ease
}

.nav-style-one button:hover {
    background: var(--secondary-color)
}

@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.parallax-bg {
    position: absolute;
    left: 0;
    top: -30%;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    z-index: -1
}

@keyframes slide {
    from {
        background-position: 0 0
    }

    to {
        background-position: 1920px 0
    }
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0
    }

    to {
        background-position: 1920px 0
    }
}

.passport-section {
    padding: 300px 0 150px
}

.passport-section .inner-box {
    max-width: 894px;
    margin: 0 auto
}

.passport-section .image-box img {
    width: 100%
}

.passport-section .pattern-layer .pattern-1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center
}

.passport-section .pattern-layer .pattern-2 {
    position: absolute;
    left: 0;
    top: 244px;
    width: 425px;
    height: 360px;
    background-repeat: no-repeat
}

.passport-section .pattern-layer .pattern-3 {
    position: absolute;
    right: 80px;
    top: 150px;
    width: 447px;
    height: 347px;
    background-repeat: no-repeat
}

.main-footer {
    position: relative;
    background: #032b66
}

.main-footer .widget-section {
    padding: 37px 0 0;
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.main-footer .logo-widget {
    margin-top: -20px
}

.main-footer .logo-widget .footer-logo {
    display: block;
    margin-bottom: 22px
}

.main-footer .logo-widget .text p {
    color: var(--white-color)
}

.main-footer .logo-widget .info li {
    position: relative;
    display: block;
    color: var(--white-color);
    margin-bottom: 18px;
    padding-left: 38px
}

.main-footer .logo-widget .info li:last-child {
    margin-bottom: 0
}

.main-footer .logo-widget .info li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 22px;
    color: var(--secondary-color)
}

.main-footer .logo-widget .info li a {
    display: inline-block;
    color: var(--white-color)
}

.main-footer .logo-widget .info li a:hover {
    text-decoration: underline
}

.main-footer .logo-widget .social-links li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 15px
}

.main-footer .logo-widget .social-links li:last-child {
    margin: 0
}

.main-footer .logo-widget .social-links li a {
    position: relative;
    display: inline-block;
    width: 33px;
    height: 30px;
    line-height: 34px;
    font-size: 22px;
    color: var(--white-color);
    background: #032b66;
    text-align: center;
    border-radius: 50%
}

.main-footer .logo-widget .social-links li a:hover {
    background: var(--main-color)
}

.main-footer .widget-title {
    position: relative;
    display: block;
    max-width: 210px;
    padding-bottom: 2px;
    margin-bottom: 14px;
    border-bottom: 1px solid #b4c4d9
}

.main-footer .widget-title:before {
    position: absolute;
    content: '';
    background: var(--secondary-color);
    width: 96px;
    height: 1px;
    left: 0;
    bottom: -1px
}

.main-footer .widget-title h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    color: var(--white-color)
}

.main-footer .links-widget .links-list li {
    position: relative;
    display: block;
    margin-bottom: 25px
}

.main-footer .links-widget .links-list li a {
    display: inline-block;
    font-weight: 500;
    color: var(--white-color)
}

.main-footer .links-widget .links-list li a:hover {
    color: var(--secondary-color)
}

.main-footer .gallery-widget .image-list {
    margin: 0 -5px
}

.main-footer .gallery-widget .image-list li {
    position: relative;
    display: inline-block;
    float: left;
    margin: 0 5px 10px
}

.main-footer .gallery-widget .image-list li .image-box {
    position: relative;
    display: block;
    width: 104px;
    height: 100px;
    border-radius: 5px;
    background: var(--main-color)
}

.main-footer .gallery-widget .image-list li .image-box img {
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease
}

.main-footer .gallery-widget .image-list li .image-box:hover img {
    opacity: .2
}

.main-footer .gallery-widget .image-list li .image-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0,0);
    font-size: 24px;
    color: var(--white-color)
}

.main-footer .gallery-widget .image-list li .image-box:hover a {
    transform: translate(-50%,-50%) scale(1,1)
}

.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    padding: 5px 0;
    text-align: center
}

.main-footer .footer-bottom p,.main-footer .footer-bottom p a:hover {
    color: var(--white-color)
}

.main-footer .footer-bottom p a {
    color: var(--secondary-color)
}

.main-footer .pattern-layer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 450px;
    background-repeat: repeat-x;
    animation: slide 60s linear infinite;
    -webkit-animation: slide 60s linear infinite
}

.header-style-two .header-top .search-form {
    margin-right: 0
}

.header-style-two .header-lower {
    padding: 0
}

.header-style-two .header-lower .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
}

.header-style-two .header-lower .logo-box {
    margin: 0;
    max-width: 139px;
    /* margin-left: 50px; */
}

.header-style-two .header-lower .main-menu .navigation>li>a {
    padding-top: 10px;
    padding-bottom: 5px
}

.header-style-two .header-lower .main-menu .navigation>li>a:before {
    position: absolute;
    content: '';
    width: 34px;
    height: 1px;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%) scale(0,0);
    transition: all 500ms ease
}

.header-style-two .header-lower .main-menu .navigation>li>a:hover:before,.header-style-two .header-lower .main-menu .navigation>li.current>a:before {
    transform: translateX(-50%) scale(1,1)
}

.header-style-two .btn-box .theme-btn {
    padding: 5.5px 10px;
    background: #ff0000;
}

.header-style-two .btn-box .theme-btn:hover {
    box-shadow: inset 0 0 0 2em var(--secondary-color)
}

@-webkit-keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px transparent;
        box-shadow: 0 0 0 40px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes ripple {
    70% {
        -webkit-box-shadow: 0 0 0 40px transparent;
        box-shadow: 0 0 0 40px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

.main-footer.style-two {
    background: var(--main-color)
}

.main-footer .logo-widget .text a {
    display: inline-block;
    font-size: 16px;
    color: var(--white-color);
    margin-top: 21px
}

.main-footer .logo-widget .text a:hover {
    color: var(--secondary-color)
}

.main-footer.style-two .gallery-widget .image-list li .image-box {
    width: 126px;
    height: 115px;
    border-radius: 0
}

.main-footer.style-two .gallery-widget .image-list li .image-box img {
    border-radius: 0
}

.main-footer .post-widget .post {
    position: relative;
    display: block;
    margin-bottom: 20px
}

.main-footer .post-widget .post:last-child {
    margin-bottom: 0
}

.main-footer .post-widget .post .post-info li {
    position: relative;
    display: inline-block;
    float: left;
    font-size: 12px;
    line-height: 26px;
    color: var(--white-color);
    margin-right: 17px
}

.main-footer .post-widget .post .post-info li:last-child {
    margin: 0
}

.main-footer .post-widget .post .post-info li a {
    display: inline-block;
    color: var(--white-color)
}

.main-footer .post-widget .post .post-info li a:hover {
    color: var(--secondary-color)
}

.main-footer .post-widget .post .post-info li:before {
    position: absolute;
    content: '';
    background: var(--white-color);
    width: 1px;
    height: 10px;
    top: 8px;
    right: -9px
}

.main-footer .post-widget .post .post-info li:last-child:before {
    display: none
}

.main-footer .post-widget .post .post-info {
    margin-bottom: 5px
}

.main-footer .post-widget .post h4 {
    display: block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700
}

.main-footer .post-widget .post h4 a {
    display: inline-block;
    color: var(--white-color)
}

.main-footer .post-widget .post h4 a:hover {
    color: var(--secondary-color)
}

.main-footer.style-two .widget-section {
    padding-top: 185px
}

.header-style-three .header-lower {
    position: absolute;
    left: 0;
    width: 100%;
    background: 0 0
}

.main-footer.style-three .widget-section {
    padding-top: 125px
}

.main-footer.style-three .pattern-layer-2 {
    position: absolute;
    left:
}

.main-footer .bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}

.main-footer .bg-layer:before {
    position: absolute;
    content: '';
    background: var(--main-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .9
}

.main-footer.style-three .widget-section {
    border-bottom: none
}

.main-footer.style-three .footer-bottom {
    background: #07316d
}

.main-footer.style-three .footer-bottom p a {
    color: var(--white-color)
}

.main-footer.style-three .footer-bottom a:hover {
    text-decoration: underline
}

.main-footer .footer-logo {
    position: relative;
    display: block
}

.header-style-four .header-lower {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    padding: 0 130px;
    background: 0 0
}

.header-style-four .header-lower .outer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-style-four .header-lower .logo-box {
    margin-right: 0;
    padding: 0
}

.header-style-four .header-lower .menu-area {
    position: relative;
    background: #fff;
    box-shadow: 0 4px 20px rgba(116,116,116,.05);
    border-radius: 50px;
    padding: 0 75px
}

.main-header .menu-right-content li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 20px
}

.main-header .menu-right-content li:last-child {
    margin: 0
}

.main-header .menu-right-content li.search-box-outer,.main-header .menu-right-content li a {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 86px;
    background: var(--white-color);
    font-size: 24px;
    color: var(--main-color);
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 500ms ease
}

.main-header .menu-right-content li.search-box-outer:hover,.main-header .menu-right-content li a:hover {
    color: var(--white-color);
    background: var(--main-color)
}

.header-style-four .sticky-header {
    background: #f5f5f5
}

.main-header .sticky-header .menu-right-content li.search-box-outer,.main-header .sticky-header .menu-right-content li a {
    width: 50px;
    height: 50px;
    line-height: 56px;
    font-size: 20px
}

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    background: rgba(0,0,0,.8);
    -webkit-transform: translateY(101%);
    -ms-transform: translateY(101%);
    transform: translateY(101%);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease
}

.search-popup.popup-visible {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
    opacity: 1
}

.search-popup .popup-inner {
    width: 100%;
    background: #fff;
    height: 100%
}

.search-popup .upper-box {
    position: relative;
    padding: 70px;
    z-index: 1
}

.search-popup .upper-box .logo-box {
    max-width: 149px
}

.search-popup .overlay-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block
}

.search-popup .close-search {
    position: relative;
    font-size: 22px;
    color: #141417;
    cursor: pointer;
    z-index: 5;
    top: 11px;
    transition: all 500ms ease
}

.search-popup .close-search:hover {
    color: red
}

.search-popup .search-form {
    position: relative;
    width: 100%;
    padding: 100px 0 250px
}

.search-popup .search-form .form-group {
    position: relative;
    margin: 0
}

.search-popup .search-form fieldset input[type=search] {
    position: relative;
    height: 90px;
    padding: 20px 0;
    background: #fff;
    line-height: 30px;
    font-size: 20px;
    color: gray;
    font-family: inter,sans-serif;
    border: none;
    font-weight: 400;
    border-radius: 0;
    padding-right: 50px;
    border-bottom: 1px solid #e5e5e5
}

.search-popup .search-form fieldset button[type=submit] {
    position: absolute;
    top: 30px;
    right: 0;
    font-size: 22px;
    color: #141417;
    cursor: pointer;
    transition: all 500ms ease
}

.search-popup .search-form fieldset input[type=search]:focus {
    border-color: #141417
}

.search-popup .form-control:focus {
    box-shadow: none!important
}

.main-footer.style-four {
    background: var(--main-color)
}

.footer-top {
    position: relative;
    padding: 100px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.footer-top .footer-logo {
    display: block;
    margin-bottom: 25px
}

.footer-top p {
    color: var(--white-color);
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 30px
}

.footer-top .social-links li {
    position: relative;
    display: inline-block;
    margin: 0 10px
}

.footer-top .social-links li a {
    display: inline-block;
    font-size: 18px;
    color: var(--white-color)
}

.footer-top .social-links li a:hover {
    color: var(--secondary-color)
}

.main-footer.style-four .gallery-widget .image-list li .image-box {
    width: 126px;
    height: 115px;
    border-radius: 0
}

.main-footer.style-four .widget-section {
    padding-bottom: 0;
    border-bottom: none
}

.main-footer.style-four .pattern-layer-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.main-footer.style-five {
    background: var(--main-color)
}

.main-footer .contact-widget .info-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 24px
}

.main-footer .contact-widget .info-list li:last-child {
    margin-bottom: 0
}

.main-footer .contact-widget .info-list li .icon-box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: var(--white-color);
    background: var(--secondary-color);
    text-align: center;
    border-radius: 50%;
    margin-right: 17px
}

.main-footer .contact-widget .info-list li p {
    color: var(--white-color)
}

.main-footer .contact-widget .info-list li p a {
    color: var(--white-color)
}

.main-footer .contact-widget .info-list li p a:hover {
    color: var(--secondary-color)
}

.main-footer .newsletter-widget .text p {
    color: var(--white-color)
}

.main-footer .newsletter-widget .form-inner .form-group {
    position: relative;
    margin: 0
}

.main-footer .newsletter-widget .form-inner .form-group input[type=email] {
    position: relative;
    display: block;
    width: 100%;
    height: 48px;
    background: rgba(180,196,217,.2);
    font-size: 14px;
    color: rgba(255,255,255,.3);
    border: 1px solid transparent;
    padding: 10px 140px 10px 50px;
    transition: all 500ms ease
}

.main-footer .newsletter-widget .form-inner .form-group input:focus {
    border-color: #fff;
    color: #fff
}

.main-footer .newsletter-widget .form-inner .form-group i {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 16px;
    color: rgba(255,255,255,.3);
    z-index: 1
}

.main-footer .newsletter-widget .form-inner .form-group .theme-btn {
    position: absolute;
    top: 7px;
    right: 9px;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 19px
}

.main-footer .newsletter-widget .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 20px
}

.main-footer .newsletter-widget .social-links li:last-child {
    margin: 0
}

.main-footer .newsletter-widget .social-links li a {
    display: inline-block;
    font-size: 16px;
    color: var(--white-color)
}

.main-footer .newsletter-widget .social-links li a:hover {
    color: var(--secondary-color)
}

.main-footer.style-five .post-widget .post {
    padding-left: 106px;
    margin-bottom: 15px;
    min-height: 91px
}

.main-footer.style-five .post-widget .post:last-child {
    margin-bottom: 0
}

.main-footer.style-five .post-widget .post .post-thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 93px;
    border-radius: 5px;
    background: var(--main-color)
}

.main-footer.style-five .post-widget .post .post-thumb img {
    width: 100%;
    border-radius: 5px;
    transition: all 500ms ease
}

.main-footer.style-five .post-widget .post:hover .post-thumb img {
    opacity: .5
}

.main-footer.style-five .widget-section {
    border-bottom: none
}

.accordion-box .block .acc-content.current {
    display: block
}

.accordion-box .block .acc-content {
    display: none
}

.testimonial-section.coaching-page {
    padding: 150px 0 220px
}

.custom-controls-stacked {
    position: relative
}

.custom-control.material-checkbox .material-control-input {
    display: none
}

.custom-control.material-checkbox .material-control-indicator {
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--main-color);
    cursor: pointer
}

.custom-control.material-checkbox .material-control-indicator:before {
    position: absolute;
    content: "\e93e";
    font-family: icomoon;
    font-size: 8px;
    left: -1px;
    top: 0;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    color: var(--main-color);
    opacity: 0;
    transition: all 500ms ease
}

.custom-control.material-checkbox .material-control-input:checked~.material-control-indicator:before {
    opacity: 1
}

.custom-controls-stacked .description {
    position: relative;
    display: inline-block;
    padding: 0;
    margin-left: 25px;
    font-size: 14px;
    line-height: 26px;
    color: #888;
    cursor: pointer
}

.download-pdf {
}

.pdf-btn {
    padding: 10px;
    background: #032b66;
    color: #fff;
    border-radius: 10px
}

.main-menu .collapse .navigation .dropdown .new-drop li {
    color: #fff;
    padding: 0 0 0 10px
}

.details-box {
    border: 1px solid #032b66;
    padding: 20px;
    border-radius: 10px;
    margin: 5px
}

.details-box .row .col-6 {
    padding-top: 5px;
    padding-bottom: 5px
}

.banner .title p {
    font-size: 22px
}

.contact-style-two .point li {
    list-style: disc;
    margin-left: 40px
}

::placeholder {
    color: #000000b3;
    opacity: 1
}

.news-section .pricing-box {
    background: #fff;
    padding: 20px
}

.news-section .pricing-box .details-pricing {
    padding: 15px;
    border-top: 1px solid #0000001c;
    border-bottom: 1px solid #00000021
}

.news-section .pricing-box .details-pricing .btn {
    background: #032b66;
    padding: 5px 20px;
    border-radius: 20px
}

.coaching-style-two .coaching-block-two .inner-box img {
}

.news-section {
    background-color: rgb(255 255 255);
    background-image: none;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 50px 30px;
    margin-bottom: 0;
    margin-top: 0;
    border-width: 0;
    border-color: #eae9e9;
    border-style: solid;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.top-tsti {
    text-align: left
}

.news-section .three-item-carousel .visa-block-two img {
    height: 230px;
    border-radius: 10px;
}

.about-style-two .about-us-detail h5 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #032b66;
    font-weight: 600
}

.visa-block-one {
    background: #fff;
    padding: 10px
}

.whatsapp-btn {
    background: #68d868;
    padding: 10px 25px;
    color: #000;
    font-size: 18px;
    border-radius: 5px
}

.blue-box {
    background: #032b66;
    padding: 15px 20px;
    border-radius: 20px
}

.contact-style-new .form-inner .form-group input[type=text],.contact-style-new .form-inner .form-group input[type=email],.contact-style-new .form-inner .form-group input[type=date] {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    background: #f7f7f7;
    border: 1px solid #032b6669;
    font-size: 14px;
    color: #000;
    padding: 5px 10px;
    transition: all 500ms ease;
    border-radius: 5px
}

.contact-style-new .form-inner .form-group .select {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    background: #f7f7f7;
    border: 1px solid #032b66c7;
    font-size: 16px;
    color: #000;
    padding: 10px 30px;
    transition: all 500ms ease
}

.contact-style-new .form-inner .form-group {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

@media(min-width: 768px) {
    .new-form-inner {
        padding:25px;
        background: #fff;
        max-width: 400px;
        position: absolute;
        top: 220px;
        right: 50px
    }

    .banner-form-mobile {
        display: block
    }
    .mobile-btn{
        display:none;
    }
    .reponsive-btn{
     display:none;   
    }
}

@media(max-width: 767px) {
    .banner-form-desktop {
        display:none
    }

    .header-top {
        display: none
    }
    .header-style-two .btn-box{
    display: none;
  }
}

.new-form-inner {
    padding: 16px 15px 0px 15px;
    background: #fff;
    border-radius: 10px
}

.banner-form-button{
        padding: 8px 40px 8px 40px;
    font-size: 18px;
    background: #032b66;
    color: white;
    border-radius: 10px;
}

.theme-btn-new {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* vertical-align: middle; */
    font-size: 25px;
    line-height: 26px;
    font-weight: 500;
    text-align: center;
    padding: 8.5px 13px 5px 16px;
    text-transform: capitalize;
    font-family: var(--heebo);
    color: var(--white-color)!important;
    background: #032b66;
    z-index: 1;
    transition: all 500ms ease;
    border-radius: 10px;
}
    
.countries-style-four .countries-block-four{
        background: #ffffff;
        padding: 3px;
        border-radius: 4px;
        margin: 10px;
}

.gallery-page .visa-block-two {
    margin:10px;
}


