:root {
    --primary-color: #1a3257;
    --secondary-color: #1a3257
}

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center
}

.loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #1a3257;
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

a:hover, a:active {
    color: #1a3257;
    text-decoration: none
}

a[href^="tel"], a[href^="mailto"] {
    color: inherit;
    text-decoration: none
}

.card, .card .card-body {
    color: #575a7b
}

.bg-primary {
    background: #1a3257 !important
}

.bg-secondary {
    background: #1a3257 !important
}

.primary-overlay[data-overlay-dark]:before {
    background: #1a3257
}

.secondary-overlay[data-overlay-dark]:before {
    background: #1a3257
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: linear-gradient(-90deg, transparent, #1a3257 65%)
}

.text-primary {
    color: #1a3257 !important
}

.text-primary-hover:hover, .text-primary-hover:active, .text-primary-hover:focus {
    color: #1a3257 !important
}

.text-secondary, .text-secondary-hover:hover {
    color: #75a6d9 !important;
}

.primary-shadow {
    box-shadow: 0 3px 10px 0 rgba(41, 45, 194, 0.08)
}

.text-white-hover:hover {
    color: #fff !important
}

.primary-box-shadow {
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.06)
}

.cursor-pointer {
    cursor: pointer
}

.ls-minus-2px {
    letter-spacing: -2px
}

.border-top-radius-10 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.border-radius-10 {
    border-radius: 10px !important
}

.border-primary {
    border-color: #1a3257 !important
}

.exrta-section {
    padding-bottom: 275px
}

@media screen and (min-width: 992px) {
    .vw-90 {
        width: 90vw
    }
}

@media screen and (min-width: 767px) {
    .vw-min-100 {
        width: 100vw
    }
}

.vw-lg-50 {
    width: 50vw
}

.min-vh-100 {
    min-height: 100vw
}

.box-shadow {
    box-shadow: 0 30px 40px 0 rgba(1, 11, 60, 0.06)
}

.rounded-left-bottom {
    border-radius: 0 0 0 0.375rem
}

.display-custom-1 {
    font-size: 104px;
    letter-spacing: -6px;
    line-height: 1
}

@media screen and (max-width: 991px) {
    .display-custom-1 {
        font-size: 94px;
        letter-spacing: -5px
    }
}

@media screen and (max-width: 767px) {
    .display-custom-1 {
        font-size: 74px;
        letter-spacing: -4px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-1 {
        font-size: 55px;
        letter-spacing: -3px
    }
}

.border-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px
}

.border-text.primary {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #1a3257;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px
}

.border-text.secondary {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #1a3257;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px
}

.display-custom-2 {
    font-size: 150px;
    letter-spacing: -8px;
    line-height: 1
}

@media screen and (max-width: 1399px) {
    .display-custom-2 {
        font-size: 135px
    }
}

@media screen and (max-width: 1199px) {
    .display-custom-2 {
        font-size: 125px;
        letter-spacing: -5px
    }
}

@media screen and (max-width: 991px) {
    .display-custom-2 {
        font-size: 94px;
        letter-spacing: -3px
    }
}

@media screen and (max-width: 767px) {
    .display-custom-2 {
        font-size: 74px;
        letter-spacing: -2px
    }
}

@media screen and (max-width: 575px) {
    .display-custom-2 {
        font-size: 55px
    }
}

.bg-white-opacity-light-one {
    background-color: rgba(255, 255, 255, 0.1)
}

.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out
}

@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px)
    }
    65% {
        transform: translate(30px, 0)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.shape-img-one {
    transform: rotate(180deg)
}

.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out
}

@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px)
    }
    65% {
        transform: translate(0, 30px)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.round-shape-one {
    position: absolute;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    border: 1px dashed rgba(225, 73, 124, 0.7);
    animation: rotated 10s infinite linear
}

.round-shape-one:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: -6px;
    background: #1a3257;
    border-radius: 50%
}

.ani-move {
    animation: ImageMove 4s infinite linear;
    animation-duration: 5s
}

@keyframes ImageMove {
    0% {
        transform: translate(0px, 0px)
    }
    25% {
        transform: translate(10px, 20px)
    }
    50% {
        transform: translate(30px, 30px)
    }
    75% {
        transform: translate(20px, 10px)
    }
    100% {
        transform: translate(0px, 0px)
    }
}

.list-style01 li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px
}

.list-style01 li:last-child {
    margin-bottom: 0
}

.list-style01 li:before {
    content: "\e64c";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 4px
}

.list-style01.white li {
    color: #fff
}

.list-style01.white li h6 {
    color: rgba(255, 255, 255, 0.9)
}

.list-style01.dark li {
    color: #1a3257
}

.list-style01.dark li h6 {
    color: rgba(25, 25, 25, 0.9)
}

.list-style02 li {
    margin-bottom: 5px;
}

.list-style02 li:last-child {
    margin-bottom: 0
}

.list-style02 li a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: all .3s;
}

.list-style02 li a:after {
    content: "";
    transition: .3s all ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    left: 0;
    height: 2px;
    width: 0;
    bottom: -2px;
    background-color: #75a6d9;
}

.list-style02 li a:hover {
    color: #75a6d9;
}

.list-style02 li a:hover:after {
    width: 100%
}

.list-style03 li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px
}

.list-style03 li:before {
    content: "\e64c";
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'themify';
    width: 25px;
    height: 25px;
    background-color: #1a3257;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    margin-top: 8px;
    font-size: 10px;
    font-weight: 900
}

.list-style04 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0
}

.list-style04 li:last-child {
    border-bottom: unset;
    padding-bottom: 0
}

.list-style05 {
    list-style: none;
    padding-left: 0
}

.list-style05 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px
}

.list-style05 li:last-child {
    margin-bottom: 0
}

.list-style05 li:before {
    content: '\f058';
    font-family: "Font Awesome 7 Free";
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #1a3257
}

.list-style05.second li {
    color: #fff
}

.list-style05.second li:before {
    color: #fff
}

.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100
}

.scroll-top-percentage.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s
}

@media screen and (max-width: 1199px) {
    .scroll-top-percentage {
        right: 30px;
        bottom: 20px
    }
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600
}

#scroll-value i {
    font-size: 20px
}

@-webkit-keyframes scrollToTop {
    0% {
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

@keyframes scrollToTop {
    0% {
        transform: translate3d(0, 80%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.butn-style01 {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff !important;
    background: #1a3257;
    padding: 15px 30px;
    border-radius: 5px;
    z-index: 1;
    text-align: center;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01:hover, .butn-style01:active, .butn-style01:focus {
    background: #75a6d9;
}

.butn-style01 span {
    position: relative;
    z-index: 9;
    color: #ffffff !important
}

.butn-style01.secondary {
    background: #1a3257
}

.butn-style01.secondary:before {
    border-color: #1a3257
}

.butn-style01.secondary:hover {
    background: #1a3257;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01.white-hover:hover, .butn-style01.white-hover:active, .butn-style01.white-hover:focus {
    color: #1a3257 !important;
    background: #fff;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01.white-hover:hover span, .butn-style01.white-hover:active span, .butn-style01.white-hover:focus span {
    color: #1a3257 !important;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01.white-border:before {
    border-color: #fff
}

.butn-style01.primary-hover:hover, .butn-style01.primary-hover:active, .butn-style01.primary-hover:focus {
    color: #fff !important;
    background: #1a3257;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01.primary-hover:hover span, .butn-style01.primary-hover:active span, .butn-style01.primary-hover:focus span {
    color: #1a3257 !important;
    transition: all 0.4s ease-in-out 0s
}

.butn-style01.md {
    padding: 10px 20px !important;
    font-size: 15px
}

.butn-style01.sm {
    padding: 10px 26px !important;
    font-size: 14px
}

@media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style01 {
        color: #fff !important;
        border: 1px solid transparent
    }

    .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style01:hover, .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style01:active, .header-style1.scrollHeader .attr-nav > ul > li > a.butn-style01:focus {
        color: #1a3257 !important;
        border: 1px solid #1a3257
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style01 {
        color: #fff !important;
        border: 1px solid transparent
    }

    .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style01:hover, .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style01:active, .header-style3.scrollHeader .attr-nav > ul > li > a.butn-style01:focus {
        color: #1a3257 !important;
        border: 1px solid #1a3257
    }
}

.butn-style02 {
    position: relative;
    display: inline-block;
    font-size: 15px !important;
    line-height: normal;
    padding: 10px 30px;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    color: #ffffff !important;
    background-color: #1a3257;
    border: none;
    z-index: 2;
    overflow: hidden;
    font-weight: 700;
    border-radius: 0.25rem
}

.butn-style02 span {
    z-index: 9;
    position: relative
}

.butn-style02:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: .8125rem;
    transform: translate(-50%, -50%);
    opacity: 0
}

.butn-style02:hover, .butn-style02:active, .butn-style02:focus {
    color: #ffffff !important
}

.butn-style02:hover:before, .butn-style02:active:before, .butn-style02:focus:before {
    -webkit-animation: circle .75s;
    animation: circle .75s
}

.butn-style02.secondary {
    background-color: #1d2a34
}

.butn-style02.white {
    background-color: #fff;
    color: #1d2a34 !important
}

.butn-style02.white:hover:before {
    background: rgba(29, 42, 52, 0.2)
}

.butn-style02.sm {
    padding: 10px 20px !important;
    font-size: 14px
}

.butn-style02.md {
    padding: 12px 24px !important
}

@-webkit-keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

.butn-style03 {
    background-color: #1a3257;
    color: #fff !important;
    text-align: center;
    font-size: 14px !important;
    padding: 12px 30px !important;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    width: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0.15rem
}

.butn-style03:hover {
    color: #fff !important;
    -webkit-box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.15);
    transform: translate3d(0, -2px, 0)
}

.butn-style03.white {
    background-color: #fff;
    color: #1a3257 !important
}

.butn-style03.secondary {
    background-color: #1a3257;
    color: #fff !important
}

.butn-style03.md {
    padding: 12px 30px !important
}

.butn-style03.sm {
    padding: 10px 26px !important
}

.button-text {
    padding: 0;
    position: relative;
    text-decoration: none;
    border: 0;
    background-color: transparent;
    display: inline-block;
    font-size: 15px;
    text-transform: uppercase;
    width: auto;
    font-weight: 500
}

.button-text a {
    border-bottom: 2px solid
}

.button-text:hover {
    border-color: #25cdc7
}

.section-title {
    font-size: 30px;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 30px 0;
}

.section-title.detail {
    font-size: 22px;
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

.top-bar-info ul {
    margin: 0;
    position: relative;
    top: -2px;
}

.top-bar-info li {
    font-weight: 500;
    color: #1a3257;
    list-style-type: none;
    font-size: 14px;
    padding: 0;
    display: inline-block;
    margin: 0 10px 0 0;
}

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #184983;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
}

.top-social-icon {
    padding: 0;
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    top: 1px;
}

.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 5px;
}

.top-social-icon li a {
    color: #1a3257;
    line-height: 1;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 4px 5px;
    background: #e4e4e4;
    border-radius: 5px;
}

.top-social-icon li a:hover {
    background-color: #1a3257;
    color: #fff;
}

.top-lang-icon {
    padding: 0;
    margin: 0;
    display: inline-block;
}
.top-lang-icon li {
    list-style-type: none;
    margin: 0;
    display: inline-block;
}
.top-lang-icon li a {
    line-height: 1;
    padding: 3px 5px;
    border-radius: 5px;
    border: 1px solid #e4e4e4;
    color: #1a3257;
    font-size: 16px;
}
.top-lang-icon li a:hover,
.top-lang-icon li a.active {
    background-color: #75a6d9;
    color: #fff;
    border-color: #75a6d9;
}

@media screen and (max-width: 1330px) {
    .navbar-nav>li>a {
        padding: 25px 5px;
    }
    .attr-nav {
        margin-left: 5px;
    }
}

@media screen and (max-width: 991px) {
    .navbar-nav {
        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
        position: fixed;
        top: 102px;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        background-color: #fff;
    }
    .navbar-nav li.active > a {
        opacity: 1
    }
    .navbar-nav ul {
        width: 100%;
        display: none;
        transition: none;
        -ms-transition: none;
        -moz-transition: none;
        -webkit-transition: none;
        -o-transition: none
    }
    .navbar-nav li {
        width: 100%;
        border-top: 1px solid #e6e6e6;
        position: relative;
        padding: 0;
        margin: 0;
        text-align: left
    }
    .navbar-nav ul li:hover {
        background: #f5f5f5
    }
    .navbar ul ul li {
        border: none;
    }
    .navbar ul ul li a {
        height: auto;
        border-bottom: 1px solid #e4e4e4;
    }
    .navbar-nav li:hover > ul > li {
        height: auto
    }
    .navbar-nav ul li a {
        padding: 15px 10px;
    }
    .navbar-nav > li.has-sub > ul {
        opacity: 1;
        margin: 0;
        box-shadow: none;
        -webkit-transition: all 0s ease;
        transition: all 0s ease;
        padding: 15px;
    }
    .navbar li > ul ul {
        margin: 0;
        min-width: auto
    }
    .navbar-nav > li.has-sub {
        padding-right: 0;
        margin: 0;
    }
    .navbar-nav > li > a {
        padding: 15px 15px;
        color: #282b2d;
        font-size: 15px;
        font-weight: 700
    }
}

.navbar-brand img {
    object-fit: contain;
}

.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #1a3257 !important
}

.sub-menu li a {
    color: #9d9d9d;
    font-size: 16px;
    padding: 5px 20px;
    border: 1px solid #e4e4e4;
    border-radius: 5px;
    margin: 3px 0;
    transition: all .3s;
}

.sub-menu li a:hover {
    background-color: #1a3257;
    color: #fff;
    transition: all .3s;
}

.attr-nav > ul > li > a.butn {
    color: #fff
}

.navbar > ul > li.current > a:after {
    border-color: transparent #1a3257 #1a3257 transparent !important
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #1a3257
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #1a3257 #1a3257 transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #1a3257
}

.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #1a3257
}

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #1a3257
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #1a3257 #1a3257 transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #1a3257
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #1a3257
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #1a3257
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #1a3257
    }

    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }

    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }

    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: #1a3257
    }

    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: #1a3257
    }

    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }

    .header-style2 .navbar ul ul li.active > a {
        color: #1a3257
    }

    .header-style2 .navbar-nav li.has-sub a:hover, .header-style2 .navbar-nav li.has-sub a:active, .header-style2 .navbar-nav li.has-sub a:focus {
        color: #1a3257
    }

    .header-style2 .navbar-nav li.current > a, .header-style2 .navbar-nav li.active > a {
        color: #1a3257
    }

    .header-style2 .navbar > ul > li.has-sub > a:hover:after, .header-style2 .navbar > ul > li.has-sub > a:active:after, .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #1a3257
    }

    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }

    .header-style1 .navbar-toggler:before {
        background: #fff
    }

    .header-style1 .navbar-toggler.menu-opened:after, .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.header-style2 .navbar-nav li.current > a {
    color: #1a3257
}

.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #1a3257 #1a3257 transparent
}

.header-style2.scrollHeader .navbar-nav li.current > a {
    color: #1a3257
}

.header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #1a3257
}

.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #1a3257 #1a3257 transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: #1a3257
    }

    .header-style2 .butn.secondary:before {
        background: #ffffff
    }

    .header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
        color: #121c22 !important
    }

    .header-style2.scrollHeader .butn.secondary:before {
        background: #1a3257
    }

    .header-style2.scrollHeader .butn.secondary:hover, .header-style2.scrollHeader .butn.secondary:focus, .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important
    }
}

.header-style3 .navbar-nav li.current > a, .header-style3 .navbar-nav li.active > a {
    color: #1a3257
}

@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active > a {
        color: #1a3257
    }

    .header-style3 .navbar-nav > li > a:hover, .header-style3 .navbar-nav > li > a:active, .header-style3 .navbar-nav > li > a:focus {
        color: #1a3257
    }

    .header-style3 .navbar ul ul li.active > a {
        color: #1a3257
    }

    .header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current > a {
        color: #1a3257
    }

    .header-style3 .navbar-nav > li.has-sub > a:hover {
        color: #1a3257
    }

    .header-style3 .navbar > ul > li.has-sub > a:hover:after, .header-style3 .navbar > ul > li.current > a:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }

    .header-style3.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #1a3257
    }

    .header-style3.scrollHeader .navbar > ul > li.has-sub > a:hover:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }

    .header-style3.scrollHeader .navbar-nav > li.active > a {
        color: #1a3257
    }

    .header-style3.scrollHeader .navbar-nav li.current > a {
        color: #1a3257
    }

    .header-style3.scrollHeader .navbar-nav li.current > a:hover {
        color: #1a3257
    }

    .header-style3.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent #1a3257 #1a3257 transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
        background: #1a3257
    }

    .header-style3 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }

    .header-style3 .navbar-toggler:before {
        background: #fff
    }

    .header-style3 .navbar-toggler.menu-opened:after, .header-style3 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.top-search {
    background-color: rgba(26,50,87,.3);
    backdrop-filter: blur(5px);
}
.top-search.active {
    display: block;
}
.top-search .box {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.top-search .box input {
    font-size: 17px;
    color: #1a3257;
    border-radius: 5px;
    height: 50px;
    transition: all .3s;
}
.top-search .box input::placeholder {
    color: #1a3257;
}
.top-search .box input:focus {
    border-color: #1a3257;
    transition: all .3s;
}
.top-search .box .close-search {
    padding: 10px;
    background-color: #fff4f4;
    border-radius: 5px;
    line-height: 1;
    color: #1a3257;
    cursor: pointer;
}

.main-slider {
    position: relative;
}
.main-slider .img {
    width: 100%;
    height: auto;
}
.main-slider .box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    padding: 100px 15px 30px 15px;
    background: linear-gradient(0deg, #1a3257, rgba(26,50,87,.8), transparent);
    z-index: 10;
}

.slider-fade1 .bg-img {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear
}

.slider-fade1 .owl-item.active .bg-img {
    -ms-transform: scale(1.25);
    transform: scale(1.25)
}

.slider-fade1 span.sub-title {
    animation-delay: 0.8s
}

.slider-fade1 h1 {
    animation-delay: 1s
}

.slider-fade1.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #20282d;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev {
    left: 5%
}

.slider-fade1.owl-carousel .owl-nav button.owl-next {
    right: 5%
}

.slider-fade1.owl-carousel .owl-nav button.owl-prev i, .slider-fade1.owl-carousel .owl-nav button.owl-next i {
    font-size: 19px;
    color: #fff
}

.slider-fade1 .owl-item {
    position: relative
}

.slider-fade1 .owl-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
}

.slider-fade1.owl-carousel .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #fff;
}

.slider-fade1.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active {
    color: #1a3257
}

.slider-fade1.owl-carousel .owl-dots .owl-dot:before {
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
    position: absolute;
    margin: 7px;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.4);
    left: -38px
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active:before {
    color: #fff;
}

.slider-fade1.owl-carousel .owl-dots .owl-dot span {
    background: transparent;
    height: 30px;
    width: 50px;
    border-radius: 0;
    position: relative;
    margin: 0;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out
}

.slider-fade1.owl-carousel .owl-dots .owl-dot span:before {
    content: "";
    position: absolute;
    top: 16px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 22px;
    left: auto;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    width: 1px;
    z-index: 99;
    background: #fff;
    height: 0;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active span {
    width: 97px;
    background: transparent
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active span:before {
    width: 60px;
    margin: 0 16px 0 23px;
    height: 1px
}

.slider-fade1.owl-carousel .owl-nav [class*='owl-']:hover {
    background: #1a3257
}

.slider-fade1.owl-carousel .owl-dots .owl-dot.active span, .slider-fade1.owl-carousel .owl-dots .owl-dot:hover span, .slider-fade1.owl-carousel .owl-dots .owl-dot:focus span {
    background: transparent
}

.section-title01 .title-sm {
    font-weight: 400;
    position: relative;
    z-index: 2;
    display: inline-block
}

.section-title01 .title-sm:before {
    content: '';
    background: #1a3257;
    height: 8px;
    width: 100%;
    position: absolute;
    bottom: 4px;
    z-index: -1
}

.section-title01 .title-sm.banner:before {
    bottom: 9px
}

@media screen and (max-width: 991px) {
    .section-title01 .title-sm.banner:before {
        bottom: 4px
    }

    .section-title01 .title-sm:before {
        bottom: 1px;
        height: 6px
    }
}

.page-title-section {
    padding: 120px 0 45px;
    text-align: center
}

.page-title-section h1 {
    font-size: 25px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 10px;
    position: relative;
    z-index: 9;
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2
}

.page-title-section ul li {
    display: inline-block
}

.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #fff;
    opacity: 1;
}

.page-title-section ul li:after {
    content: "/";
    font-weight: 700;
    color: #ebecef;
    display: inline-block;
    margin: 0 15px;
    opacity: .4;
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    color: #ebecef;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .8;
}

.page-title-section .active a, .page-title-section li.active:last-child a {
    color: #fff
}

.card-style01 {
    border: none;
    border-radius: 5px;
    box-shadow: 0 3px 10px 0 rgba(41, 45, 194, 0.08)
}

.card-style01 .radius-top, .card-style01 .blog-img {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem
}

.card-style01 .blog-img img {
    will-change: transform;
    -webkit-transition: -webkit-transform .3s ease;
    -ms-transition: -ms-transform .3s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
    -ms-transform: scale(1.01, 1.01);
    transform: scale(1.01, 1.01)
}

.card-style01:hover .blog-img img, .card-style01:active .blog-img img, .card-style01:focus .blog-img img {
    -ms-transform: scale(1.07, 1.07);
    transform: scale(1.07, 1.07)
}

.card-style01 .post-date {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #1a3257;
    color: #fff;
    border-radius: 3px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 15px;
    min-width: 75px
}

.card-style01 .post-date .month {
    font-size: 12px;
    text-transform: uppercase
}

.card-style01 .text-uppercase.display-31 a {
    margin-right: 15px;
    margin-top: 5px;
    display: inline-block;
    vertical-align: top
}

.card-style01 .blog-tag:before {
    content: "";
    margin: 0 0.75em;
    width: 3px;
    height: 3px;
    background-color: #8E919D;
    top: 50%;
    transform: translateY(-50%);
    left: -30%;
    display: inline-block;
    position: absolute;
    border-radius: 50%
}

.card-style01 > .card-body:nth-child(1) .post-date {
    display: none
}

.project-list {
    position: relative;
    background-color: #f0f3f7;
    overflow: hidden;
}

.card-style02 {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.card-style02 .card-data {
    opacity: 0;
    position: absolute;
    bottom: -25px;
    height: 100%;
    width: 100%;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out
}

.service-info {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.service-info .service-info-title {
    font-size: 14px;
    font-weight: 600;
    padding: 3px;
    background-color: #fff;
    border-radius: 5px;
    line-height: 1.2;
    margin: 0;
}

.card-style02 .card-text {
    color: #1a3257;
    margin-bottom: 0;
    width: 100%;
}

.card-style02 img {
    -webkit-transition-duration: 2s;
    -moz-transition-duration: 2s;
    transition-duration: 2s
}

.card-style02 .card-overlay {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    transition: all .3s;
    background: linear-gradient(0deg, transparent, rgba(26,50,87,.7));
}

.card-style02:hover .card-overlay {
    transition: all .3s;
    background: linear-gradient(0deg, rgba(240,243,247,1), rgba(26,50,87,.7));
}

.card-style02 .btn-link-1 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 7px 0 2px;
    margin-top: 20px;
    position: relative;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid white;
    background-color: transparent;
    border-radius: 0;
    color: white
}

.card-style02 .card-custom-1, .card-style02 .card-custom-2 {
    padding: 20px;
}

.card-style02 .title {
    color: #fff;
    font-size: 23px;
    margin: 0;
}

.card-style02:hover .card-data {
    opacity: 1;
    bottom: 0;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out
}

.card-style02:hover img {
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition-duration: 4s;
    transition-duration: 4s
}

.card-style02 .card-body:hover .card-hover-icon {
    opacity: 0;
    transform: scale(0);
    -ms-transform: scale(0);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out
}

.card-style02 .btn-link-1:hover {
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7)
}

@media screen and (max-width: 1199px) {
    .card-style02 .card-text {
        width: 100%
    }
}

.card-style03 {
    -webkit-transition: all 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    transition: all 0.5s cubic-bezier(0.5, 1, 0.89, 1);
    height: 100%
}

.card-style03 .card-body {
    padding: 15% 10%
}

.card-style03 .service-img {
    background-color: rgba(60, 62, 85, 0.065);
    margin-bottom: 20px;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%
}

.card-style03 .service-btn {
    color: #303334;
    font-size: 18px;
    font-weight: 700;
    display: flex
}

.card-style03 .service-btn i {
    width: 24px;
    height: 24px;
    border: 2px solid #303334;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-right: 6px
}

.card-style03 .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #1a3257;
    border-radius: 6px;
    z-index: 1;
    -webkit-transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0);
    transition: 0.4s cubic-bezier(0.12, 0, 0.39, 0)
}

.card-style03 .service-butn {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0;
    color: #1a3257
}

.card-style03 .service-butn i {
    margin-left: 10px;
    font-size: 16px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block
}

.card-style03:hover .card-overlay {
    opacity: 1
}

.card-style03:hover .service-img {
    background-color: #fff
}

.card-style03:hover h3 a {
    color: #fff
}

.card-style03:hover .service-btn {
    color: #fff
}

.card-style03:hover .service-btn i {
    border-color: #fff
}

.card-style03 .service-btn:hover i {
    border-color: rgba(255, 255, 255, 0.7)
}

.card-style03:hover p, .card-style03 .service-btn:hover {
    color: rgba(255, 255, 255, 0.7)
}

.card-style03:hover .service-butn {
    color: #fff
}

@media screen and (max-width: 991px) {
    .card-style03 .card-body {
        padding: 10%
    }
}

@media screen and (max-width: 575px) {
    .card-style03 .card-body {
        padding: 6%
    }

    .card-style03 .service-img {
        width: 100px;
        height: 100px
    }
}

.card-style04 {
    position: relative;
    z-index: 1;
    padding: 30px 40px;
    transition: 0.3s;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05)
}

.card-style04 .card-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s
}

.card-style04 .card-icons .card-icon {
    position: absolute;
    z-index: 3;
    bottom: calc(50% - 20px);
    left: calc(50% - 20px);
    margin-bottom: -40%;
    margin-left: 30%;
    color: #ffffff
}

.card-style04 .card-icons .card-icon:first-child {
    font-size: 12px;
    transform: rotate(45deg)
}

.card-style04 .card-icons .card-icon:hover {
    background-color: #1a3257;
    box-shadow: 11px 10px 38px 0 rgba(0, 0, 0, 0.2)
}

.card-style04:hover .card-icon {
    color: #ffffff;
    background: #1a3257
}

.card-style04 .card-inner-img {
    display: block;
    position: relative
}

.card-style04 .card-inner-img:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s
}

.card-style04 .card-inner-img:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    opacity: 0
}

.card-style04 .card-icon {
    width: 36px;
    height: 36px;
    margin: 5px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
    background: #1a3257
}

.card-style04:hover .card-inner-img:before {
    opacity: 0
}

.card-style04:hover .card-inner-img:after {
    opacity: 1
}

.card-style04:hover .card-image .card-icons .card-icon {
    opacity: 1
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(1) {
    transition: all 0.4s, opacity 0.3s 0s, margin 0.4s 0s
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(2) {
    transition: all 0.4s, opacity 0.3s 0.1s, margin 0.4s 0.1s
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(3) {
    transition: all 0.4s, opacity 0.3s 0.2s, margin 0.4s 0.2s
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(4) {
    transition: all 0.4s, opacity 0.3s 0.3s, margin 0.4s 0.3s
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(2) {
    margin-bottom: -15%;
    margin-left: 50%
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(3) {
    margin-bottom: 16%;
    margin-left: 50%
}

.card-style04:hover .card-image .card-icons .card-icon:nth-child(4) {
    margin-bottom: 42%;
    margin-left: 30%
}

.card-style04 .card-icons .card-icon:not(:first-child) {
    opacity: 0
}

.card-style04 .card-icons .card-icon:nth-last-child(1) {
    transition: all 0.4s, opacity 0.3s 0s, margin 0.4s 0s
}

.card-style04 .card-icons .card-icon:nth-last-child(2) {
    transition: all 0.4s, opacity 0.3s 0.1s, margin 0.4s 0.1s
}

.card-style04 .card-icons .card-icon:nth-last-child(3) {
    transition: all 0.4s, opacity 0.3s 0.2s, margin 0.4s 0.2s
}

.card-style04 .card-icons .card-icon:nth-last-child(4) {
    transition: all 0.4s, opacity 0.3s 0.3s, margin 0.4s 0.3s
}

.card-style04 .card-icons .card-icon:nth-child(3) {
    margin-bottom: -15%;
    margin-left: 50%
}

.card-style04 .card-icons .card-icon:nth-child(4) {
    margin-bottom: 16%;
    margin-left: 50%
}

@media screen and (max-width: 1199px) {
    .card-style04 {
        padding: 30px 25px
    }
}

.card-style05 {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    -webkit-transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
    border: 0
}

.card-style05 .blog-img span {
    position: absolute;
    top: 20px;
    right: 20px
}

.card-style05 .blog-img span a {
    padding: 4px 12px;
    border-radius: 2px;
    transition: .3s;
    color: #fff;
    margin-left: 5px;
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #1a3257
}

.card-style05 .blog-author {
    font-size: 14px;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden
}

.card-style05 .blog-author .blog-date {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    font-weight: 500;
    display: inline-block
}

.card-style05 .blog-author .author-name {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(32px);
    -webkit-transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.5s cubic-bezier(0.37, 0, 0.63, 1);
    display: inline-block
}

.card-style05 .blog-author .author-name a {
    font-weight: 600;
    border-bottom: 1px solid #232323;
    -webkit-transition: .3s;
    transition: .3s
}

.card-style05 .blog-author .blog-like a i {
    margin-right: 4px;
    vertical-align: middle;
    -webkit-transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1)
}

.card-style05:hover .blog-author .blog-date {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(-32px)
}

.card-style05:hover .blog-author .author-name {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.service-list {
    position: relative;
    background-color: #f0f3f7;
    overflow: hidden;
}

.portfolio-style01{
    display: block;
    margin-top: 30px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio-style01 .img-hover:before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 0;
    height: 100%;
    border-radius: 0.375rem;
    background: linear-gradient(180deg, rgb(255,255,255,0.5), rgb(26,50,87,1));
    transition: all 500ms ease
}

.portfolio-style01:hover .img-hover:before {
    width: 100%;
    left: 0
}

.portfolio-style01 .content {
    padding: 16px;
    background: #fff;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    opacity: 1;
    transition: all 700ms ease;
    border-radius: 5px;
}

@media screen and (max-width: 1399px) {
    .portfolio-style01 .content {
        bottom: 20px;
        left: 20px;
        right: 20px
    }
}

.portfolio-details-style01 .box-letter {
    background-color: #1a3257;
    position: relative;
    z-index: 1;
    float: left;
    width: 1.5em;
    height: 1.5em;
    margin-top: 0.3em;
    margin-right: 0.5em;
    font-size: 1.75em;
    line-height: 1.55em;
    color: #1a3257;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    border-radius: 10px
}

.portfolio-details-style01 .portfolio-tag a {
    display: inline-block;
    margin-bottom: 6px;
    margin-right: 6px;
    padding: 0 9px;
    font-size: 14px !important;
    line-height: 28px;
    font-weight: 500;
    color: #1a3257;
    background-color: transparent;
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid #1a3257
}

.portfolio-details-style01 .portfolio-tag a:last-child {
    margin-right: 0
}

.portfolio-details-style01 .portfolio-tag a:hover {
    color: #fff;
    border-color: #1a3257;
    background-color: #1a3257
}

.portfolio-details-style01 .portfolio-social-icons a {
    width: 36px;
    height: 36px;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #1a3257;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.4s
}

.portfolio-details-style01 .portfolio-social-icons a:last-child {
    margin-right: 0
}

.portfolio-details-style01 .portfolio-social-icons a:hover {
    background-color: #1a3257;
    color: #fff
}

.pagination {
    border-radius: 0
}

.pagination ul {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 auto;
    padding: 0
}

.pagination li {
    display: inline
}

.pagination a {
    float: left;
    padding: 0 16px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #dbdbdb;
    border-left-width: 0;
    background: #fff
}

.pagination a:hover {
    background-color: #1a3257;
    color: #fff
}

.pagination .active a {
    background-color: #f7f7f7;
    color: #999;
    cursor: default
}

.pagination .disabled span {
    color: #999;
    background-color: transparent;
    cursor: default
}

.pagination .disabled a {
    color: #999;
    background-color: transparent;
    cursor: default
}

.pagination .disabled a:hover {
    color: #999;
    background-color: transparent;
    cursor: default
}

.pagination li:first-child a {
    border-left-width: 1px
}

.page-item:not(:first-child) .page-link {
    margin-left: 0
}

.pagination-style01 {
    margin-top: 4%;
    width: 100%;
    display: flex;
    justify-content: center
}

.pagination-style01 ul {
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 0;
    padding-left: 0
}

.pagination-style01 ul li {
    list-style: none
}

.pagination-style01 ul li a {
    border: 0;
    padding: 0 2px;
    margin: 0 7px;
    background: 0 0;
    color: #828282;
    min-width: 45px;
    font-size: inherit;
    text-align: center;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    line-height: 45px;
    min-height: 45px;
    display: block;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.pagination-style01 ul li a i {
    line-height: 40px;
    font-size: 18px;
    display: inline-block
}

.pagination-style01 ul li.active a {
    background: #1a3257;
    color: #fff;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

.pagination-style01 ul li a:hover {
    background: #fff;
    color: #1a3257;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important
}

@media screen and (max-width: 575px) {
    .pagination-style01 ul {
        margin-top: 10px
    }

    .pagination-style01 ul li a {
        min-width: 40px;
        min-height: 40px;
        line-height: 40px;
        margin: 0 4px
    }
}

.owl-thumbs button {
    border: none
}

.owl-thumbs button img {
    opacity: .5
}

.owl-thumbs button.active img {
    opacity: 1
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto
}

@media screen and (max-width: 768px) {
    .main-slider .owl-item img {
        height: 500px;
        object-fit: cover;
        object-position: center;
    }
}

.owl-thumb-item {
    cursor: pointer
}

.wrap {
    position: relative;
    height: 755px;
    overflow: hidden
}

.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

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

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px
}

.owl-carousel .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot:hover span {
    background: #1a3257
}

.portfolio-carousel-one.owl-carousel .owl-nav button {
    width: 55px;
    height: 55px;
    line-height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #20282d;
    text-align: center;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%
}

.portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev {
    left: 2%;
    top: 50%
}

.portfolio-carousel-one.owl-carousel .owl-nav button.owl-next {
    right: 2%;
    top: 50%
}

.portfolio-carousel-one.owl-carousel .owl-nav button.owl-prev i, .portfolio-carousel-one.owl-carousel .owl-nav button.owl-next i {
    font-size: 19px;
    color: #fff
}

.portfolio-carousel-one .owl-nav button:hover {
    background: #1a3257
}

.portfolio-carousel-one .owl-item {
    position: relative
}

.service-slider .owl-nav {
    text-align: left;
    margin-top: 30px;
    margin-left: 0
}

.service-slider .owl-nav [class*='owl-'] {
    width: 40px;
    height: 40px;
    color: #232323;
    background: rgba(216, 151, 61, 0.1) !important;
    transition: all 0.6s ease;
    border-radius: 3px;
    line-height: 40px
}

.service-slider .owl-nav .owl-prev {
    margin-right: 35px;
    position: relative
}

.service-slider .owl-nav .owl-prev:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #1a3257;
    position: absolute;
    right: -21px;
    top: 15px;
    border-radius: 50%
}

.service-slider .owl-nav [class*='owl-']:hover, .service-slider .owl-nav [class*='owl-']:active, .service-slider .owl-nav [class*='owl-']:focus {
    background: #1a3257 !important;
    color: #fff !important
}

.service-slider .owl-nav [class*='owl-']:hover i, .service-slider .owl-nav [class*='owl-']:active i, .service-slider .owl-nav [class*='owl-']:focus i {
    color: #fff !important
}

.service-card {
    overflow: inherit;
    padding: 75px 40px 30px 40px;
    border-radius: 0.25rem;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.4s;
    height: 420px
}

.service-card:before {
    background: rgba(42, 51, 78, 0.76);
    background: linear-gradient(-180deg, transparent, #2a334e 110%);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.service-card .service-details {
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -115px;
    width: 100%;
    padding: 25px;
    transition: all 0.3s;
    z-index: 9
}

.service-card:hover .service-details {
    bottom: 10px
}

.service-card .service-details h3, .service-card .service-details a, .service-card .service-details p {
    color: #fff
}

.service-card .service-details h3:hover, .service-card .service-details h3:active, .service-card .service-details h3:focus {
    color: #1a3257
}

.service-card .service-details a:hover, .service-card .service-details a:active, .service-card .service-details a:focus {
    color: #1a3257
}

.service-card:hover .service-details p {
    height: auto;
    opacity: 1;
    visibility: visible
}

.service-card .service-details p {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    height: 70px
}

.service-carousel-one .service-block {
    padding: 4.5rem;
    display: flex;
    justify-content: end;
    align-items: start
}

.service-carousel-one .service-block .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.75;
    top: 0;
    left: 0;
    background-color: #1a3257
}

.service-carousel-one .service-block .inner-block {
    position: relative;
    display: flex;
    width: 53%;
    flex-direction: column;
    background-color: #fff;
    transition: all 0s ease-in-out !important;
    -moz-transition: all 0s ease-in-out !important;
    -webkit-transition: all 0s ease-in-out !important;
    -ms-transition: all 0s ease-in-out !important;
    -o-transition: all 0s ease-in-out !important;
    z-index: 1;
    padding: 0 4.5rem 4.5rem 4.5rem;
    opacity: 0;
    border-radius: 0.375rem
}

.service-carousel-one .service-block .inner-block h4 {
    margin-top: -72px;
    margin-right: -25px;
    width: 75px;
    text-align: center;
    padding-bottom: 15px;
    padding-top: 6rem;
    margin-bottom: 2.5rem;
    background-color: #1a3257;
    font-weight: 500;
    color: #fff;
    align-self: end;
    font-size: 2.85rem;
    line-height: 3.4rem;
    border-radius: 0 0 0.375rem 0.375rem
}

.service-carousel-one .service-block .inner-block h5 {
    font-size: 2.3rem;
    margin-bottom: 25px
}

.service-carousel-one .service-block .inner-block p {
    line-height: 32px;
    margin-bottom: 25px
}

.service-carousel-one .service-block .inner-block a .ti-arrow-right {
    font-size: 15px;
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle
}

.service-carousel-one .owl-item.active.center .service-block .overlay {
    opacity: 0.2
}

.service-carousel-one .owl-item.active.center .service-block .inner-block {
    opacity: 1
}

.service-carousel-one .owl-item.active.center .service-block .overlay {
    opacity: 0.2
}

.service-carousel-one .owl-item.active.center .service-block .inner-block {
    opacity: 1
}

.service-carousel-one.owl-carousel .owl-nav button.owl-prev, .service-carousel-one.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    left: 20px;
    margin: 0
}

.service-carousel-one.owl-carousel .owl-nav button.owl-prev i, .service-carousel-one.owl-carousel .owl-nav button.owl-next i {
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: rgba(216, 151, 61, 0.5);
    display: block;
    transition: all .3s;
    border-radius: 50rem
}

.service-carousel-one.owl-carousel .owl-nav button.owl-prev:hover i, .service-carousel-one.owl-carousel .owl-nav button.owl-next:hover i {
    background: #1a3257 !important
}

.service-carousel-one.owl-carousel .owl-nav [class*='owl-']:hover {
    background: none
}

.service-carousel-one.owl-carousel .owl-nav button.owl-prev {
    top: 44%
}

.service-carousel-one.owl-carousel .owl-nav button.owl-next {
    top: 44%;
    right: 20px;
    left: inherit
}

.service-carousel-one.owl-carousel .owl-nav:hover {
    margin-top: 0
}

@media screen and (max-width: 1599px) {
    .service-carousel-one .service-block {
        padding: 2.6rem
    }

    .service-carousel-one .service-block .inner-block {
        width: 63%;
        padding: 0 3.5rem 3.5rem 3.5rem
    }
}

@media screen and (max-width: 1399px) {
    .service-carousel-one .service-block .inner-block {
        width: 73%;
        padding: 0 3rem 3rem 3rem
    }
}

@media screen and (max-width: 1199px) {
    .service-carousel-one .service-block .inner-block {
        width: 100%
    }

    .service-carousel-one .service-block .inner-block h4 {
        margin-bottom: 1rem
    }

    .service-carousel-one .service-block .inner-block h5 {
        font-size: 2rem;
        margin-bottom: 15px
    }
}

@media screen and (max-width: 991px) {
    .service-carousel-one .service-block .inner-block {
        padding: 0 2rem 2rem 2rem
    }

    .service-carousel-one .service-block .inner-block h4 {
        margin-top: -92px;
        margin-right: -10px;
        padding-bottom: 8px;
        font-size: 2.05rem
    }
}

@media screen and (max-width: 575px) {
    .service-carousel-one .service-block {
        padding: 1.6rem
    }

    .service-carousel-one .service-block .inner-block h5 {
        font-size: 1.5rem
    }
}

@media screen and (max-width: 575px) {
    .service-carousel-one .owl-dots {
        bottom: 0;
        right: 0
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0.375rem
}

.accordion-style .card-header {
    border: 0;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: #1a3257;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 0.375rem 0.375rem 0 0
}

.accordion-style .btn-link.collapsed {
    color: #42545e;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    padding: 20px 45px 20px 18px;
    font-weight: 700;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link:hover, .accordion-style .btn-link:active, .accordion-style .btn-link:focus {
    text-decoration: none;
    color: #1a3257
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #1a3257;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    background: #fff;
    border-radius: 0 0 0.375rem 0.375rem
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.accordion-style.style01 .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0
}

.accordion-style.style01 .card:last-child {
    margin-bottom: 0
}

.accordion-style.style01 .card-header {
    border: 0;
    padding: 0;
    background: none
}

.accordion-style.style01 .accordion-collapse {
    border: none
}

.accordion-style.style01 .btn-link {
    color: #ffffff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #1a3257;
    border: 1px solid transparent
}

.accordion-style.style01 .btn-link:hover {
    text-decoration: none
}

.accordion-style.style01 .btn-link.collapsed {
    background: #ffffff;
    color: #282b2d;
    border: 1px solid #ededed
}

.accordion-style.style01 .btn-link.collapsed:after {
    background: #272c49;
    border: none;
    content: "+";
    right: 20px;
    left: inherit;
    font-size: 18px;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 22px;
    top: 18px;
    border-radius: 5px;
    text-align: center;
    color: #ffffff
}

.accordion-style.style01 .btn-link:after {
    background: #272c49;
    content: "-";
    right: 20px;
    border-radius: 5px;
    left: inherit;
    font-size: 18px;
    border: 1px solid #272c49;
    transform: none;
    width: 25px;
    height: 25px;
    line-height: 21px;
    top: 18px;
    position: absolute;
    color: #fff;
    text-align: center
}

.accordion-style.style01 .card-body {
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed
}

@media screen and (max-width: 991px) {
    .accordion-style.style01 .btn-link {
        padding: 15px 50px 15px 15px;
        font-size: 16px
    }

    .accordion-style.style01 .btn-link.collapsed:after, .accordion-style.style01 .btn-link:after {
        right: 15px;
        font-size: 16px;
        height: 22px;
        line-height: 19px;
        width: 22px;
        top: 13px
    }

    .accordion-style.style01 .card-body {
        padding: 20px 15px
    }
}

@media screen and (max-width: 575px) {
    .accordion-style.style01 .btn-link {
        padding: 15px 50px 15px 15px
    }
}

.service-sidebar .cetegory li a {
    background-color: #fff;
    padding: 15px 20px 15px 30px;
    border-radius: 0.375rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.service-sidebar .cetegory li:hover a, .service-sidebar .cetegory li.active a, .service-sidebar .cetegory li:focus a, .service-sidebar .cetegory li:active a {
    background-color: #1a3257;
    color: #fff
}

.service-sidebar .widget {
    margin-bottom: 30px;
    padding: 30px 25px;
    border-radius: 0.375rem;
    position: relative;
    display: block
}

.service-sidebar .widget .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none
}

.service-sidebar .widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    border-radius: 0.375rem;
    background: #fff
}

.service-sidebar .widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 15px;
    font-weight: 600
}

.service-sidebar .widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #1a3257;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

.service-sidebar .widget:last-child {
    margin-bottom: 0
}

@media screen and (max-width: 767px) {
    .service-sidebar .widget {
        padding: 25px 20px
    }
}

.banner-wrapper img {
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%)
}

.banner-wrapper .icon-boxs {
    position: absolute;
    top: -60px;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.banner-wrapper .icon-boxs i {
    line-height: 80px
}

.blog-sidebar .input-group-append .btn-style01 {
    padding: 14px 30px !important;
    color: #212529 !important
}

.blog-sidebar .input-group-append .btn-style01:before {
    background-color: #fff
}

.blog-sidebar .widget {
    padding: 30px 25px;
    border-radius: 0.375rem;
    position: relative;
    display: block
}

.blog-sidebar .widget .widget-content {
    position: relative
}

.blog-sidebar .widget .category-list li {
    margin-bottom: 0.5rem
}

.blog-sidebar .widget .category-list li:last-child {
    margin-bottom: 0;
}

.blog-sidebar .widget .category-list li a {
    background: rgb(0 0 0 / 10%);
    padding: 15px 30px;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a3257;
    line-height: 1;
    font-size: 15px;
}

.blog-sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative
}

.blog-sidebar .widget .category-list li a:after {
    content: "\e649";
    font-family: 'themify';
    font-size: 12px;
    font-weight: bold;
    margin-left: -10px
}

.blog-sidebar .widget .category-list li a:hover, .blog-sidebar .widget .category-list li a.active {
    background: #1a3257;
    color: #fff
}

.blog-sidebar .widget .category-list li.active a:after, .blog-sidebar .widget .category-list li:hover a:after {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out
}

.blog-sidebar .blog-tags a {
    background-color: #1a3257;
    padding: 15px 30px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    margin: 0 10px 10px 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #1a3257;
    border-radius: 5px;
}

.blog-sidebar .blog-tags a:hover, .blog-sidebar .blog-tags a.active {
    background-color: #fff;
    color: #1a3257
}

.blog-tags a {
    background-color: #1a3257;
    padding: 7px 12px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #1a3257;
    border-radius: 3px
}

.blog-tags a:hover, .blog-tags a:active, .blog-tags a:focus {
    background-color: #fff;
    color: #1a3257
}

.comment-reply-link {
    color: #191919;
    background: rgba(25, 25, 25, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

.comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
    color: #fff;
    background: #191919
}

.tags a {
    border: 1px solid #1a3257;
    padding: 7px 21px;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block
}

.tags a:hover, .tags a:active, .tags a:focus {
    border-color: #1a3257;
    background: #1a3257;
    color: #fff
}

.recent-post > div:first-child a {
    display: inline-block;
    width: 80px;
    height: auto
}

.widget .widget-brochure {
    margin-bottom: 0;
    padding: 0;
    list-style: none
}

.widget .widget-brochure li {
    position: relative;
    margin-bottom: 12px;
    display: inline-block;
    border: 1px solid #ededed;
    width: 100%;
    background: #fff
}

.widget .widget-brochure li a {
    position: relative;
    display: block;
    padding: 16px 15px 16px 75px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800
}

.widget .widget-brochure li a i {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    line-height: 3;
    text-align: center;
    font-size: 20px;
    background: #1a3257;
    color: #ffffff
}

.widget .widget-brochure li:last-child {
    margin-bottom: 0
}

.sidebar .widget {
    margin-bottom: 30px;
    box-shadow: 0 0 14px rgba(82, 85, 90, 0.1)
}

.sidebar .widget .blog-tags a {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9;
    padding: 5px 12px;
    margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags a:hover {
    color: #f9275a
}

.sidebar .widget .blog-tags a:hover:before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.sidebar .widget .blog-tags a:before {
    width: 0;
    content: "";
    height: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: -1
}

.sidebar .widget .blog-tags.sm-tags a {
    font-size: 14px;
    background-color: white;
    color: #1a3257;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9;
    padding: 5px 12px;
    margin: 5px 10px 5px 0
}

.sidebar .widget .blog-tags.sm-tags a:hover {
    color: #f9275a
}

.sidebar .widget.categories ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px
}

.sidebar .widget.categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: unset
}

.sidebar .widget.categories ul li a {
    color: #fff
}

.sidebar .widget.categories ul li:hover a {
    color: #f9275a
}

.sidebar .widget.categories ul li:hover span {
    color: #f9275a
}

.sidebar .widget.categories ul li:hover span:before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out
}

.sidebar .widget.categories ul li span {
    width: 27px;
    height: 27px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: 500ms all ease;
    transition: 500ms all ease;
    z-index: 9
}

.sidebar .widget.categories ul li span:before {
    width: 0;
    content: "";
    height: 0;
    position: absolute;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #fff;
    z-index: -1
}

.sidebar .widget-info {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: #f0f2f7;
    padding: 30px;
    margin-bottom: 40px;
    position: relative
}

.sidebar .widget-info .info-img {
    background: #fff;
    display: inline-block;
    padding: 15px 20px 15px 0;
    width: 150px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px
}

.sidebar .widget-info .info-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1
}

.sidebar .widget-info h3 {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px
}

.error-style01 h1 {
    font-size: 450px;
    margin-bottom: 50px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    letter-spacing: .027em;
    line-height: 0.8
}

@media screen and (max-width: 1399px) {
    .error-style01 h1 {
        font-size: 395px
    }
}

@media screen and (max-width: 1199px) {
    .error-style01 h1 {
        font-size: 315px
    }
}

@media screen and (max-width: 767px) {
    .error-style01 h1 {
        font-size: 235px
    }
}

@media screen and (max-width: 575px) {
    .error-style01 h1 {
        font-size: 125px;
        margin-bottom: 25px
    }
}

.counter-style01 .counter-box {
    box-shadow: 0 6px 30px 0 #00000012
}

.counter-style01 .counter-box .inner-box {
    border: 1rem solid #fff
}

.counter-style01 .counter-box .inner-box:hover {
    background-color: #1a3257;
    transition: .4s
}

.counter-style01 .counter-box .inner-box:hover .counter-no, .counter-style01 .counter-box .inner-box:hover span {
    filter: brightness(0) invert(1);
    transition: .4s
}

.extra-style01 .extra-content-box {
    padding-top: 330px
}

.extra-style01 .extra-content-box ul.inner-box {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: end
}

.extra-style01 .extra-content-box ul.inner-box li.one {
    background-color: #fff;
    width: 350px;
    display: flex;
    align-items: center;
    padding: 40px;
    margin-right: 30px
}

.extra-style01 .extra-content-box ul.inner-box li.one h4, .extra-style01 .extra-content-box ul.inner-box li.one .h4 {
    font-size: 40px;
    margin-bottom: 0;
    margin-right: 15px
}

.extra-style01 .extra-content-box ul.inner-box li.two {
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 350px;
    padding: 37px;
    display: flex;
    align-items: center
}

@media screen and (max-width: 1199px) {
    .extra-style01 .extra-content-box {
        padding-top: 200px
    }
}

@media screen and (max-width: 767px) {
    .extra-style01 .extra-content-box {
        padding-top: 120px
    }

    .extra-style01 .extra-content-box ul.inner-box {
        display: block
    }

    .extra-style01 .extra-content-box ul.inner-box li.one {
        margin-right: 0;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 575px) {
    .extra-style01 .extra-content-box {
        padding-top: 0
    }

    .extra-style01 .extra-content-box ul.inner-box li.one, .extra-style01 .extra-content-box ul.inner-box li.two {
        width: 296px
    }

    .extra-style01 .extra-content-box ul.inner-box li.one h4 {
        font-size: 34px
    }

    .extra-style01 .extra-content-box ul.inner-box li.two {
        padding: 35px
    }
}

.faq-style01 {
    margin-top: -245px;
    position: relative;
    overflow: visible;
    z-index: 99;
    background: transparent
}

.faq-style01 .faq-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.faq-style01 .faq-video a {
    display: block;
    width: 84px;
    height: 84px;
    background: #1a3257;
    text-align: center;
    line-height: 84px;
    color: #ffffff;
    font-size: 30px;
    border-radius: 50%;
    position: relative;
    border: 1px solid #1a3257
}

.faq-style01 .faq-video a:before {
    content: " ";
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: -12px;
    -webkit-animation: pulse 1s infinite;
    animation: pulse 1s infinite;
    z-index: -1
}

.faq-style01 .faq-content {
    padding: 61px;
    background-color: #f8f8f8;
    border-radius: 0.375rem
}

.faq-style01 img {
    border-radius: 0.375rem
}

.faq-style01 .faq-img {
    position: relative
}

@media screen and (max-width: 1199px) {
    .faq-style01 .faq-content {
        padding: 30px
    }
}

.whychoose-img-box {
    position: relative;
    padding: 20px;
    border-radius: 5px;
    background: #ebecef;
    margin-bottom: 30px;
    transition: all .3s;
    border: 1px solid rgba(26,50,87,.2);
}

@media screen and (max-width: 1199px) {
    .whychoose-img-box {
        padding: 15px;
    }
}

.whychoose-img-box:hover {
    transform: translateY(-10px);
    transition: all .3s;
}

.whychoose-img-box .icon {
    margin-bottom: 15px;
    background-color: #fff;
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
}
.whychoose-img-box .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.whychoose-img-box .title {
    color: #1a3257;
    font-size: 22px;
    margin-bottom: 15px;
}
.whychoose-img-box .desc {
    color: #6a7483;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.whyus-style01 .about-text {
    width: 180px;
    height: 180px;
    color: white;
    padding: 14px;
    font-weight: 600;
    position: relative;
    border-radius: 50%;
    background: #1a3257;
    margin: 0 auto
}

.whyus-style01 .about-text .coloring {
    fill: #fff
}

.whyus-style01 .about-text svg {
    -webkit-animation: rotated_circle 12s linear infinite;
    animation: rotated_circle 12s linear infinite
}

.whyus-style01 .about-text .about-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 55px;
    width: 70px;
    height: 70px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: #fff;
    display: flex
}

.whyus-style01 .whyus-content {
    margin-right: -202px;
    position: relative;
    z-index: 9
}

.whyus-style01 .whyus-bg {
    box-shadow: 0 0 57.2px 4px rgba(0, 0, 0, 0.0509803922);
    border-radius: 0.375rem;
    padding: 35px;
    background-color: #1a3257
}

@media screen and (max-width: 1399px) {
    .whyus-style01 .whyus-content {
        margin-right: -251px
    }
}

@media screen and (max-width: 1199px) {
    .whyus-style01 .whyus-bg {
        padding: 30px
    }

    .whyus-style01 .whyus-content {
        margin-right: -281px
    }
}

@media screen and (max-width: 991px) {
    .whyus-style01 .whyus-content {
        margin-right: 0
    }
}

@keyframes rotated_circle {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(-360deg)
    }
}

@-webkit-keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle-2 {
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .process-block .process-img .count-size {
        left: 24px
    }
}

@media screen and (max-width: 991px) {
    .process-style01 {
        background-image: none
    }

    .process-block .process-img .count-size {
        left: 23%
    }
}

@media screen and (max-width: 575px) {
    .process-block .process-img .count-size {
        left: 33%
    }
}

.process-style02 .process-block {
    position: relative;
    background-color: #f0f3f7;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    overflow: hidden
}

.process-style02 .process-block:before {
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a3257;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0
}

.process-style02 .process-block:hover:before {
    height: 100%;
    top: 0;
    bottom: auto
}

.process-style02 .process-block .process-content {
    position: relative;
    z-index: 1
}

.process-style02 .process-block .process-content .logo {
    width: 100%;
    padding: 10px;
    background-color: #f0f3f7;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #e7ecf2;
}

.process-style02 .process-block .process-content .logo img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.process-style02 .process-block .process-content .title {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out
}

.process-style02 .process-block:hover .process-content .title {
    color: #fff
}

.process-style02 .process-block .process-content .desc {
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    line-height: 1.5;
}

.process-style02 .process-block:hover .process-content .desc {
    color: #fff
}

.client-style01 .client-logo {
    opacity: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1)
}

.client-style01:hover .client-logo {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: .6
}

.client-style01 .client-logo:hover {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0)
}

.about-style01 .about-image {
    position: relative
}

.about-style01 .about-img-text {
    margin: 0 auto;
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    bottom: 40px
}

.about-style01 .steps-item-wrap {
    position: relative;
    transition: opacity 0.5s;
    display: flex;
    text-align: left;
    margin-left: 0;
    width: 100%
}

.about-style01 .steps-wrap {
    display: flex;
    flex-direction: column;
    flex-basis: content;
    align-items: center
}

.about-style01 .steps-number {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #1a3257;
    position: relative;
    font-size: 20px;
    border-radius: 50%;
    text-align: center
}

.about-style01 .steps-line-wrap {
    flex-grow: 1;
    position: relative;
    width: 2px
}

.about-style01 .steps-line-wrap .steps-line {
    position: absolute;
    left: 0;
    right: 0;
    content: '';
    width: 2px;
    top: 0;
    height: calc(100% - 40px);
    margin: 20px auto;
}

.about-style01 .steps-line-wrap .steps-line:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    display: block;
    background-color: #1a3257;
    border-radius: 0
}

.about-style01 .steps-content {
    margin: 0 25px 50px 25px;
    align-items: center
}

.about-style01 .steps-line-wrap .steps-line.last:before {
    content: none
}

.about-style02 .arrow-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    border: 2px solid #1a3257;
    border-radius: 50%
}

.contact-style01 .contact-text {
    font-size: 80px;
    color: #1a3257;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width: 1199px) {
    .contact-style01 .contact-text {
        font-size: 80px
    }
}

@media screen and (max-width: 575px) {
    .contact-style01 .contact-text {
        font-size: 60px
    }
}

.countdown {
    padding: 0
}

.countdown li {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    text-align: center;
    flex-direction: column;
    width: 170px;
    align-items: center;
    justify-content: center;
    height: 170px;
    overflow: hidden;
    margin-right: 10px;
    padding: 15px 10px;
    position: relative;
    border-radius: 50%
}

.countdown li:last-child {
    margin-right: 0
}

.countdown li span {
    font-size: 52px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: normal;
    position: relative
}

.countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize
}

@media screen and (max-width: 1399px) {
    .countdown li {
        height: 160px;
        width: 160px
    }

    .countdown li span {
        font-size: 45px
    }
}

@media screen and (max-width: 767px) {
    .countdown li {
        height: 120px;
        width: 120px
    }

    .countdown li span {
        font-size: 34px
    }
}

@media screen and (max-width: 575px) {
    .countdown li {
        margin: 5px
    }
}

.progress-text {
    font-size: 15px;
    margin-bottom: 8px
}

.custom-progress {
    height: 9px;
    border-radius: 2px;
    box-shadow: none;
    margin-bottom: 2rem;
    background-color: #fff
}

.custom-bar {
    height: 100%;
    background-color: #1a3257;
    box-shadow: none
}

.contact-map {
    width: 100%;
    height: 520px;
    vertical-align: top;
    border: 0
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative
}

.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running
}

.pause-on-hover:hover, .pause-on-hover:active, .pause-on-hover:focus {
    animation-play-state: paused
}

.scroll-left {
    animation-name: scroll-left
}

.scroll-right {
    animation-name: scroll-right
}

.scroll-group {
    display: inline-flex;
    white-space: nowrap
}

.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1
}

.scroll-item.with-img {
    min-width: 100px;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: inline-flex
}

.scroll-item.with-img img {
    vertical-align: middle
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-200%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-200%)
    }
    100% {
        transform: translateX(0)
    }
}

.scroll-speed-1 {
    animation-duration: 10s
}

.scroll-speed-2 {
    animation-duration: 15s
}

.scroll-speed-3 {
    animation-duration: 20s
}

.scroll-speed-4 {
    animation-duration: 30s
}

.scroll-speed-5 {
    animation-duration: 40s
}

.scroll-speed-6 {
    animation-duration: 60s
}

.scroll-speed-7 {
    animation-duration: 80s
}

.scroll-speed-8 {
    animation-duration: 100s
}

.scroll-speed-9 {
    animation-duration: 120s
}

.scroll-dot {
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%
}

.scroll-section-style01 {
    position: absolute;
    width: 104%;
    left: -2%
}

.scroll-overlay {
    position: relative
}

.scroll-section-style01:nth-of-type(2) {
    top: 50px;
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.scroll-section-style01:nth-of-type(3) {
    bottom: 30px;
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg)
}

.scroll-section-style01:nth-of-type(4) {
    left: -10%;
    bottom: -10%;
    -ms-transform: rotate(35deg);
    transform: rotate(35deg)
}

.scroll-section-style01:nth-of-type(5) {
    left: -10%;
    top: -100%;
    -ms-transform: rotate(60deg) translateX(100%);
    transform: rotate(60deg) translateX(100%)
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f6f6;
    padding: 0
}

.prev-page, .next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

.prev-page:before, .next-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: .3s ease-in-out;
    pointer-events: none
}

.prev-page .page-info > a, .next-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s
}

.prev-page .page-info .image-prev, .prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    border-radius: 4px;
    overflow: hidden
}

.next-page .page-info .image-prev, .next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden
}

.prev-page .page-info .prev-title, .prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.next-page .page-info .prev-title, .next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
    display: none
}

.next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
    display: none
}

.prev-page:hover:before, .next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.prev-page a {
    justify-content: flex-start;
    text-align: left
}

.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1
}

.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0
}

.prev-page .image-prev {
    margin-right: 20px
}

.prev-page .image-prev:after {
    background-color: #1a3257
}

.next-page .image-next:after {
    background-color: #1a3257
}

.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.prev-page .image-prev:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page {
    margin-left: auto
}

.next-page a {
    justify-content: flex-end;
    text-align: right
}

.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1
}

.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0
}

.next-page .image-next {
    margin-left: 20px
}

.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    transform: scaleX(-1)
}

.next-page .image-next:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page .next-title {
    text-align: right
}

.prev-link-page-info > span, .next-link-page-info > span {
    display: block
}

.prev-link-page-info .date-details, .next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

.prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
    margin-top: 0
}

@media (max-width: 767px) {
    .prev-page, .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }

    .prev-page + .next-page {
        margin-top: 0
    }

    .page-navigation {
        flex-direction: column
    }
}

@media (max-width: 575px) {
    .prev-page .page-info > a, .next-page .page-info > a {
        padding: 10px
    }

    .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
        max-width: 168px
    }

    .next-page .page-info .prev-title, .next-page .page-info .next-title {
        max-width: 168px
    }
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #1a3257
}

.lg-progress-bar .lg-progress {
    background-color: #1a3257
}

.lg-backdrop.in {
    opacity: 0.85
}

.vertical-timeline {
    position: relative;
    z-index: 1
}

.vertical-timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000
}

.vertical-timeline:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000
}

.vertical-timeline .item {
    display: flex;
    position: relative;
    transition: 0.3s
}

.vertical-timeline .item .icon {
    position: relative;
    display: block;
    overflow: hidden
}

.vertical-timeline .item .icon img {
    overflow: hidden;
    display: block;
    -webkit-transition: 0.4s;
    transition: 0.4s
}

.vertical-timeline .item:hover .icon img {
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.vertical-timeline .item:nth-child(odd) .count {
    left: -59px
}

.vertical-timeline .item:nth-child(odd) .text {
    padding-left: 100px
}

.vertical-timeline .item:nth-child(even) .text {
    padding-right: 100px
}

.vertical-timeline .item:nth-child(odd) .icon {
    justify-content: flex-end
}

.vertical-timeline .item:nth-child(odd) .timeline-circle:before {
    left: 100%
}

.vertical-timeline .item:nth-child(odd) .timeline-circle .circle {
    border-right: 0
}

.vertical-timeline .item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right
}

.vertical-timeline .item:nth-child(even) .count {
    right: -59px
}

.vertical-timeline .item:nth-child(even) .icon {
    justify-content: flex-start
}

.vertical-timeline .item:nth-child(even) .timeline-content {
    flex-direction: row-reverse
}

.vertical-timeline .item:nth-child(even) .timeline-circle:before {
    right: 100%
}

.vertical-timeline .item:nth-child(even) .timeline-circle .circle {
    border-left: 0;
    left: -15px
}

.vertical-timeline .icon, .vertical-timeline .timeline-content {
    flex-basis: calc(50% - 1px);
    transition: 0.5s;
    display: flex;
    align-items: center;
    position: relative
}

.vertical-timeline .timeline-circle {
    position: relative;
    margin: 0 100px 0 100px
}

.vertical-timeline .item .timeline-circle .circle {
    width: 0;
    height: 0;
    border-top: calc(25px * 0.5) solid transparent;
    border-right: calc(25px * 0.55) solid #1a3257;
    border-bottom: calc(25px * 0.5) solid transparent;
    border-left: calc(25px * 0.55) solid #1a3257;
    position: absolute;
    top: calc(50% - 25px * 0.5);
    left: 3px;
    z-index: 2;
    transition: 0.4s;
    opacity: 0
}

.vertical-timeline .item:hover .timeline-circle .circle {
    opacity: 1
}

.vertical-timeline .item .timeline-circle:before {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    background-image: linear-gradient(0deg, #cbcbcb, #cbcbcb 50%, #cbcbcb 50%, #cbcbcb 100%);
    background-size: 20px 20px
}

.vertical-timeline .item:hover .timeline-circle:before {
    background-image: linear-gradient(0deg, #000, #000 50%, #000 50%, #000 100%)
}

.vertical-timeline .item .count {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: auto;
    margin: auto;
    max-width: 100%;
    display: inline-block;
    font-weight: 700;
    letter-spacing: normal;
    font-size: 128px;
    line-height: 1em;
    height: min-content;
    color: #D1D1D1;
    z-index: 1;
    pointer-events: none;
    transition: 0.4s;
    transform: rotateZ(180deg);
    writing-mode: vertical-rl
}

.vertical-timeline .item:hover .count {
    color: #1a3257
}

@media screen and (max-width: 1399px) {
    .vertical-timeline .item .count {
        font-size: 110px
    }

    .vertical-timeline .item:nth-child(odd) .text {
        padding-left: 80px
    }
}

@media screen and (max-width: 1199px) {
    .vertical-timeline .item:nth-child(even) .text {
        padding-right: 80px
    }
}

@media screen and (max-width: 991px) {
    .vertical-timeline .timeline-circle {
        position: relative;
        margin: 0 55px 0 55px
    }

    .vertical-timeline .item:nth-child(odd) .count {
        left: -33px
    }

    .vertical-timeline .item .count {
        font-size: 74px
    }

    .vertical-timeline .item:nth-child(odd) .text {
        padding-left: 60px;
        padding-top: 0
    }

    .vertical-timeline .item:nth-child(even) .text {
        padding-left: 23px
    }

    .vertical-timeline .item:nth-child(even) .count {
        right: -20px
    }

    .vertical-timeline .timeline-circle:before {
        width: calc(100px + -20px)
    }

    .vertical-timeline .text {
        margin: 0;
        padding: 20px 20px 20px 40px
    }

    .vertical-timeline .count {
        width: 50px;
        height: 50px;
        font-size: 14px;
        line-height: 50px
    }

    .vertical-timeline .item:nth-child(even) .text {
        margin: 0;
        padding-right: 37px
    }
}

@media screen and (max-width: 767px) {
    .vertical-timeline:before, .vertical-timeline:after, .vertical-timeline .timeline-items:before {
        left: 10px
    }

    .vertical-timeline .timeline-content {
        order: 2;
        flex-basis: 70%
    }

    .vertical-timeline .icon {
        order: 3;
        flex-basis: 30%
    }

    .vertical-timeline .text {
        padding: 20px 20px 20px 30px
    }

    .vertical-timeline .item .count {
        font-size: 56px
    }

    .vertical-timeline:before, .vertical-timeline:after {
        display: none
    }

    .vertical-timeline .item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        margin-bottom: 2rem
    }

    .vertical-timeline .item:nth-child(even) .count {
        right: unset;
        left: -18px
    }

    .vertical-timeline .item:nth-child(even) .text {
        padding-left: 60px;
        padding-top: 0
    }

    .vertical-timeline .item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        margin-bottom: 2rem
    }

    .vertical-timeline .item:nth-child(even) .count {
        right: unset;
        left: -35px;
        margin-right: 0;
        margin-left: 0
    }

    .vertical-timeline .item:nth-child(odd) .count {
        margin-right: 0;
        margin-left: 0
    }

    .vertical-timeline .item:nth-child(even) .timeline-content, .vertical-timeline .item:nth-child(odd) .timeline-content {
        flex-direction: row
    }

    .vertical-timeline .item:nth-child(even) .icon {
        justify-content: center
    }

    .vertical-timeline .item:nth-child(odd) .icon {
        justify-content: center
    }

    .vertical-timeline .item:nth-child(odd) .count {
        left: -20px
    }

    .vertical-timeline .item:nth-child(even) .count {
        right: unset;
        left: -20px
    }
}

@media screen and (max-width: 575px) {
    .vertical-timeline .item {
        display: block
    }

    .vertical-timeline .item:nth-child(even) .text {
        padding-left: 55px;
        margin: 0;
        padding-right: 0
    }

    .vertical-timeline .item:nth-child(odd) .text {
        padding-right: 0;
        padding-left: 55px
    }

    .vertical-timeline .item:nth-child(odd) .count {
        left: -6px
    }

    .vertical-timeline .item:nth-child(even) .count {
        right: unset;
        left: -6px
    }

    .vertical-timeline .item .count {
        font-size: 50px
    }
}

.contact-us-f {
    background-color: #EBECEF;
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    margin-bottom: .5rem
}

.form-control:focus {
    border-color: #1a3257
}

.form-check-input:checked {
    border-color: #1a3257;
    background-color: #1a3257
}

.quform-input {
    position: relative
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1
}

.quform-element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px
}

.quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px
}

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

.quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input, .quform-has-error textarea, .quform-has-error select, .quform-has-error input[type=file], .quform-has-error .custom-file-label {
    border-color: #f5543f
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

.quform-loading-wrap .quform-loading {
    display: inline-block
}

.quform-element {
    margin-bottom: 1rem
}

.newsletter-form-icon .quform-elements {
    position: relative
}

.newsletter-form-icon .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 3px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form-icon .quform-submit-inner .btn {
    border: none;
    padding: 0.500rem 1.15rem
}

.newsletter-form-icon .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form-icon input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
    border-radius: 0.25rem
}

.newsletter-form-icon .form-control:focus, .newsletter-form-icon .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff
}

.newsletter-form-icon .quform-has-error input, .newsletter-form-icon .quform-has-error textarea, .newsletter-form-icon .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form-icon .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form-icon i {
    font-size: 1.2rem;
    line-height: 2rem
}

.newsletter-form .quform-submit-inner .btn {
    padding: 0.500rem 1.15rem
}

.newsletter-form .quform-submit-inner .btn:focus, .newsletter-form .quform-submit-inner .btn:active {
    border: 1px solid transparent
}

.newsletter-one .form-control {
    min-height: 55px;
    border-radius: 5px
}

.newsletter-one .quform-submit-inner {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: unset
}

.social-icon-style01 li {
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 0;
}

.social-icon-style01 li a {
    font-size: 15px;
    display: inline-block;
    border-radius: 0;
    text-align: center;
    color: #fff;
    -webkit-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out
}

.social-icon-style01 li a:hover {
    color: rgba(255, 255, 255, 0.6)
}

.social-icon-style02 {
    margin-bottom: 0;
    display: inline-block
}

.social-icon-style02 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style02 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #1a3257;
    height: 41px;
    line-height: 41px;
    width: 41px;
    border-radius: 50%
}

.social-icon-style02 li a:hover, .social-icon-style02 li a:focus, .social-icon-style02 li a:active {
    background: #75a6d9;
    color: #fff
}

.social-icon-style02 li:last-child {
    margin-right: 0
}

@media screen and (max-width: 767px) {
    .social-icon-style02 li a {
        width: 36px;
        height: 36px;
        line-height: 37px
    }
}

.social-icon-style03 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style03 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style03 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #1a3257;
    background: #fff;
    height: 41px;
    line-height: 42px;
    width: 41px;
    border-radius: 3px
}

.social-icon-style03 li a:hover {
    background: #1a3257;
    color: #fff
}

.social-icon-style03 li:last-child {
    margin-right: 0
}

.social-icon-style03 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style03.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style03.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

.social-icon-style04 ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.social-icon-style04 ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.social-icon-style04 ul li:last-child {
    margin: 0
}

.social-icon-style04 ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.social-icon-style04 ul li a:hover {
    color: #fff;
    border-color: #1a3257;
    background: #1a3257
}

footer {
    word-break: break-word
}

footer li a {
    color: #fff
}

.footer-logo {
    width: 100%;
    background-color: #ebecef;
    padding: 10px;
    border-radius: 5px;
}

.footer-logo img {
    width: auto;
    height: 55px;
    object-fit: contain;
}

.reference-list {
    position: relative;
    overflow: hidden;
    background: #f0f3f7;
}
.reference-list .reference-item {
    margin-top: 30px;
    border: 1px solid #e9eef3;
    border-radius: 5px;
    background: #fff;
    padding: 10px;
    display: block;
    transition: all .3s;
}
.reference-list .reference-item:hover {
    border-color: #1a3257;
    transition: all .3s;
}
.reference-list .reference-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.card-cover {
    display: block;
    margin-bottom: 30px;
}
.card-cover img {
    width: 100%;
    border-radius: 5px;
}

.gallery {
    position: relative;
}
.gallery a {
    display: block;
    margin-top: 30px;
    transition: all .3s;
}
.gallery a:hover{
    transform: scale(1.05);
    transition: all .3s;
}
.gallery a img {
    width: 100%;
    height: 175px;
    border-radius: 5px;
    border: 1px solid #ebecef;
    object-fit: cover;
}

.text p:last-child {
    margin: 0;
}

.widget-content.related a {
    margin-bottom: 30px;
    align-items: center;
}
.widget-content.related a:last-child {
    margin-bottom: 0;
}
.widget-content.related a img {
    max-width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.service-detail img {
    height: 175px;
    object-fit: cover;
    width: 100%;
}

.brand-detail {
    position: relative;
}
.brand-detail .cover {
    display: block;
}
.brand-detail .cover img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.contact {
    position: relative;
}
.contact .box {
    background-color: #ebecef;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
}
.contact .box .icon {
    font-size: 30px;
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1;
    margin-bottom: 15px;
}
.contact .box .title {
    font-size: 19px;
    margin-bottom: 5px;
}
.contact .box a, .contact .box p {
    font-size: 20px;
    line-height: 1.3;
    margin: 0;
}
.contact .box iframe {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5 !important;
}

.form-error, .form-error p {
    font-size: 12px;
    display: block;
    line-height: 1;
    font-style: italic;
    color: red;
    margin-top: 10px;
}

.select2-container .select2-selection--single {
    border: var(--bs-border-width) solid var(--bs-border-color);
    min-height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border-radius: var(--bs-border-radius);
}
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px;
}
.select2-results__option:hover,
.select2-results__option--highlighted {
    background-color: #ebecef;
    transition: all .3s;
    cursor: pointer;
}

input[type="file"].form-control {
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    height: 50px;
    box-sizing: border-box;
}

.career {
    position: relative;
}
.career .item {
    margin-bottom: 30px;
    border: 1px solid #ebecef;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}
.career .item .title {
    font-size: 23px;
    margin-bottom: 10px;
}
.career .item .desc {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #616976;
}
.career .item .action {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.career .item .action .link {
    width: 30px;
    background-color: #f0f1f3;
    border: 1px solid #f0f1f3;
    color: #1a3257;
    height: 30px;
    text-align: center;
    line-height: 27px;
    border-radius: 5px;
    font-size: 17px;
    transition: all .3s;
}
.career .item .action .link:hover {
    background-color: #1a3257;
    color: #fff;
    transition: all .3s;
}

.modal {
    z-index: 99991;
}

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(255,255,255,.9);
    z-index: 999999;
    transition: 0.3s ease opacity;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
#preloader img {
    height: 60px;
    object-fit: contain;
}

.search-list {
    position: relative;
}
.search-list .group {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}
.search-list .group .title {
    font-size: 25px;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1;
    padding-bottom: 20px;
}
.search-list .group .item {
    margin-bottom: 30px;
}
.search-list .group .item:last-child {
    margin-bottom: 0;
}
.search-list .group .item .item-title {
    font-size: 18px;
    font-weight: 500;
}
.search-list .group .item .content {
    font-size: 14px;
    line-height: 1.5;
    color: #7e7e7e;
    margin-bottom: 20px;
}
.search-list .group .item strong {
    background-color: #e91818;
    color: #fff;
}
.search-list .group .item .butn-style01 {
    padding: 5px 10px;
    font-size: 13px;
}

.footer-menu-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.attr-nav>ul>li.search-toggle {
    display: inline-block;
}