/*===========================
      01.COMMON css 
      ===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Work Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #677284;
    --def: #fff;
    --inv: #fff;
}

/* Selection */
::-moz-selection {
    background: #898d8e;
    color: #fff;
}

::-webkit-selection {
    background: #898d8e;
    color: #fff;
}

::selection {
    background: #898d8e;
    color: #fff;
}


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

a,
a:hover {
    color: #00586f;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #1A3154;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #677284;
    margin: 0px;
}

/* play-icon */
.play-icon {
    width: 85px;
    height: 85px;
    border: 3px solid $white;
    border-radius: 50%;
    display: block;
    text-align: center;

    &:focus {
        outline: 0;
    }

    i {
        line-height: 79px;
        display: block;
        font-size: 30px;
        color: $white;
    }
}

/* round icon */
.round-icon {
    height: 70px;
    min-width: 70px;
    max-width: 70px;
    border-radius: 5px;
    background: #fff;
    text-align: center;
    line-height: 70px;
    font-size: 30px;
    color: #006eb6;
    display: inline-block;
    box-shadow: 3px 3px 15px 3px rgba(0, 0, 0, 0.2);

}

/* 18. squre icon */
.square-icon {
    height: 65px;
    width: 65px;
    background: #212121;
    color: #fff;
    font-size: 35px;
    line-height: 65px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
}

/* team social icon */
.social-icon-lg {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 25px;
    display: inline-block;

    i {
        margin: 0;
        color: #fff;
    }
}

.box-shadow {
    box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 5px;
    padding: 0 15px 2px;
    height: 40px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 600;
    font-size: 14px;
    color: #666;

    :focus {
        border-color: #EC2323;
        box-shadow: none !important;
    }

    ::placeholder {
        color: #000;
    }
}



.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 40px;
    font-size: 16px;
    line-height: 48px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background-color: #00586f;
}

.main-btn:hover {
    background-color: rgba(255, 179, 22, 0.8);
    color: #fff;
}

.main-btn.main-btn-2 {
    background-color: #fff;
    color: #00586f;
    border-color: #00586f;
}

.main-btn.main-btn-2:hover {
    background-color: #00586f;
    border-color: #00586f;
    color: #fff;
}

/*Buttons*/
/* ~~~~~~~ INIT. BTN ~~~~~~~ */

.btn {
    background-color: rgba(255,183,27, 0.7);
    position: relative;
    padding: .4rem 1.2rem;
    padding-right: 1.1rem;
    font-size: 1rem;
    color: var(--inv);
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    -webkit-transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-shadow: 3px 3px 15px 3px rgba(0, 0, 0, 0.1);

}

.btn:before,
.btn:after {
    content: '';
    position: absolute;
    -webkit-transition: inherit;
    transition: inherit;
    z-index: 1;
}

.btn:hover {
    color: #fff;
    -webkit-transition-delay: .5s;
    transition-delay: .5s;

}

.btn:hover:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.btn:hover:after {
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition-delay: .35s;
    transition-delay: .35s;
}

/* From Top */

.from-top:before,
.from-top:after {
    left: 0;
    height: 0;
    width: 100%;
}

.from-top:before {
    bottom: 0;
    border: 1px solid var(--inv);
    border-top: 0;
    border-bottom: 0;
}

.from-top:after {
    top: 0;
    height: 0;
}

.from-top:hover:before,
.from-top:hover:after {
    height: 100%;
}

/* From Left */

.from-left:before,
.from-left:after {
    top: 0;
    width: 0;
    height: 100%;
}

.from-left:before {
    right: 0;
    border: 2px solid var(--inv);
    border-left: 0;
    border-right: 0;
}

.from-left:after {
    left: 0;
}

.from-left:hover:before,
.from-left:hover:after {
    width: 100%;
}

/* From Right */

.from-right:before,
.from-right:after {
    top: 0;
    width: 0;
    height: 100%;
}

.from-right:before {
    left: 0;
    border: 1px solid var(--inv);
    border-left: 0;
    border-right: 0;
}

.from-right:after {
    right: 0;
}

.from-right:hover:before,
.from-right:hover:after {
    width: 100%;
}

/* From center */

.from-center:before {
    top: 0;
    left: 50%;
    height: 100%;
    width: 0;
    border: 1px solid var(--inv);
    border-left: 0;
    border-right: 0;
}

.from-center:after {
    bottom: 0;
    left: 0;
    height: 0;
    width: 100%;
    background: var(--inv);
}

.from-center:hover:before {
    left: 0;
    width: 100%;
}

.from-center:hover:after {
    top: 0;
    height: 100%;
}

/* From Bottom */

.from-bottom:before,
.from-bottom:after {
    left: 0;
    height: 0;
    width: 100%;
}

.from-bottom:before {
    top: 0;
    border: 1px solid var(--inv);
    border-top: 0;
    border-bottom: 0;
}

.from-bottom:after {
    bottom: 0;
    height: 0;
}

.from-bottom:hover:before,
.from-bottom:hover:after {
    height: 100%;
}

/*===== All Button Style =====*/
.section_title .title {
    font-size: 40px;
    font-weight: 700;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title .title {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title .title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .section_title .title {
        font-size: 24px;
    }
}

.section_title.section_title_2 .title {
    color: #fff;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
    outline: 0;
}

/*===== All Preloader Style =====*/
.preloader {
    /* Body Overlay */
    position: fixed;
    top: 0;
    left: 0;
    display: table;
    height: 100%;
    width: 100%;
    /* Change Background Color */
    background: #fff;
    z-index: 99999;
}

.preloader .loader {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.preloader .loader .ytp-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    margin-left: -32px;
    z-index: 18;
    pointer-events: none;
}

.preloader .loader .ytp-spinner .ytp-spinner-container {
    pointer-events: none;
    position: absolute;
    width: 100%;
    padding-bottom: 100%;
    top: 50%;
    left: 50%;
    margin-top: -50%;
    margin-left: -50%;
    -webkit-animation: ytp-spinner-linspin 1568.2353ms linear infinite;
    animation: ytp-spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    right: 50%;
}

.preloader .loader .ytp-spinner .ytp-spinner-container .ytp-spinner-rotator .ytp-spinner-right {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    left: 50%;
}

.preloader .loader .ytp-spinner-circle {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    width: 200%;
    height: 100%;
    border-style: solid;
    /* Spinner Color */
    border-color: #2b388f #006eb6 #898d8e;
    border-radius: 50%;
    border-width: 6px;
}

.preloader .loader .ytp-spinner-left .ytp-spinner-circle {
    left: 0;
    right: -100%;
    border-right-color: #8C96A7;
    -webkit-animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .ytp-spinner-right .ytp-spinner-circle {
    left: -100%;
    right: 0;
    border-left-color: #8C96A7;
    -webkit-animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
    animation: ytp-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */
@-webkit-keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes ytp-spinner-linspin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }

    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }

    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }

    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }

    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }

    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@keyframes ytp-spinner-easespin {
    12.5% {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    25% {
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    37.5% {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }

    50% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }

    62.5% {
        -webkit-transform: rotate(675deg);
        transform: rotate(675deg);
    }

    75% {
        -webkit-transform: rotate(810deg);
        transform: rotate(810deg);
    }

    87.5% {
        -webkit-transform: rotate(945deg);
        transform: rotate(945deg);
    }

    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@-webkit-keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }

    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@keyframes ytp-spinner-left-spin {
    0% {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }

    50% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    to {
        -webkit-transform: rotate(130deg);
        transform: rotate(130deg);
    }
}

@-webkit-keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }

    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}

@keyframes ytp-right-spin {
    0% {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }

    50% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    to {
        -webkit-transform: rotate(-130deg);
        transform: rotate(-130deg);
    }
}

/*===========================
     02.HEADER css 
     ===========================*/
/*===== NAVBAR =====*/
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #00586f;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: #428bca;
}

#topbar .contact-info i {
    color: #fff;
    padding: 4px;
}

#topbar .contact-info .icofont-phone {
    padding-left: 10px;
    margin-left: 10px;
}

#topbar .social-links a {
    color: #fff;
    padding: 4px 0px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}

#topbar .social-links a i:hover {
    color: #428bca;
}

#topbar li {
    list-style-type: none;
    display: contents;
}

@media only screen and (max-width: 576px) {
    #topbar li {
        display: -webkit-inline-box;
    }
}

@media only screen and (max-width: 450px) {
    #topbar li {
        display: inline-block;
    }
}


.header_navbar {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    background-color: #fff;
    /*background-image: linear-gradient(to left, #00586f 0%, rgba(44,0,88, 0.11) 30.76%, rgba(255, 255, 255, 0) 100%);*/
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 450px) {
    .header_navbar {
        top: 50px;
    }
}

@media only screen and (max-width: 390px) {
    .header_navbar {
        top: 75px;
    }
}

.sticky {
    top: 0;
    position: fixed;
    z-index: 99;
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 15px 0;
}

.navbar {
    padding: 20px 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-brand {
    position: absolute;
    left: 0;
    top: -52px;
    height: 170px;
    width: 220px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
    z-index: 9;
}

.navbar-brand img {
    width: 180px;
    position: relative;
    top: 10%;
    transform: translateY(50%);
    vertical-align: middle;
    text-align: auto;
}

@media only screen and (max-width: 991px) {
    .navbar-brand {
        position: relative;
        height: unset;
        width: unset;
        box-shadow: none;
        top: -20px;
        background: none
    }

    .navbar-brand img {
        width: 150px;
        height: 50px;
        width: auto;

    }

}

.navbar-toggler {
    padding: 0;
}

.navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #00586f;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

@media (max-width: 767px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 9;
        -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
        padding: 5px 12px;
    }
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav .nav-item {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item {
        margin: 0;
    }
}

.navbar-nav .nav-item a {
    font-size: 16px;
    font-weight: 400;
    color: #00586f;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
}

.navbar-nav .nav-item a::before {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    width: 0;
    height: 3px;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, #00586f 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.1) 0%, #00586f 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, #00586f 100%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a::before {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #00586f;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item a {
        display: block;
        padding: 4px 0;
        color: #00586f;
    }
}

.navbar-nav .nav-item.active > a::before,
.navbar-nav .nav-item:hover > a::before {
    width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
        top: 0;
    }
}

.navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
        position: relative;
        width: 100%;
        top: 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-item .sub-menu li {
    display: block;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #00586f;
}

.navbar-nav .sub-nav-toggler {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px;
    }
}

.navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
}

.sticky .navbar-toggler .toggler-icon {
    background-color: #00586f;
}

.sticky .navbar-nav .nav-item a {
    color: #00586f;
}

.sticky .navbar-nav .nav-item.active > a,
.sticky .navbar-nav .nav-item:hover > a {
    color: #898d8e;
}

/*===== SLIDER =====*/

.slider-section {
    position: relative;
    box-shadow: 1px 3px 25px 5px;;
}

.slider-section .single-slider {
    position: relative;
    z-index: 1;
    height: 750px;
}

.slider-section .single-slider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: -webkit-gradient(linear, left top, right top, from(#00586f), color-stop(60.76%, rgba(27, 117, 187, 0.5)), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to right, #00586f 0%, rgba(27, 117, 187, 0.5) 60.76%, rgba(255, 255, 255, 0) 100%);
}

.slider-section .single-slider .slider-content {
    padding: 190px 0 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-section .single-slider .slider-content {
        padding: 160px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-section .single-slider .slider-content {
        padding: 110px 0px;
    }
}

@media (max-width: 767px) {
    .slider-section .single-slider .slider-content {
        padding: 100px 0px;
    }
}

.slider-section .single-slider .slider-content h1 {
    font-size: 65px;
    line-height: 76px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-section .single-slider .slider-content h1 {
        font-size: 60px;
        line-height: 72px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-section .single-slider .slider-content h1 {
        font-size: 54px;
        line-height: 66px;
    }
}

@media (max-width: 767px) {
    .slider-section .single-slider .slider-content h1 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .slider-section .single-slider .slider-content h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

.slider-section .single-slider .slider-content p {
    color: #CCCCCC;
    margin-bottom: 30px;
}

.slider-section .single-slider .slider-content .theme-btn {
    background: #fff;
    color: #006eb6;
}

.slider-section .single-slider .slider-content .theme-btn:hover {
    -webkit-box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
}

.tns-nav {
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: 99;
}

.slider-section .tns-nav {
    bottom: 60px;
}

.slider-section .tns-nav button {
    display: none;
    /*background: rgba(255, 255, 255, 0.4)!important;*/
}

.slider-section .tns-nav button.tns-nav-active {
    background: #fff !important;
    -webkit-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
}

.we-do-section {
    position: relative;
}

.we-do-section .shape {
    left: -100px;
}

.we-do-section .we-do-item {
    text-align: center;
}

.we-do-section .we-do-item .we-do-icon {
    width: 87px;
    height: 87px;
    line-height: 83px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 25px rgba(0, 173, 181, 0.15);
    box-shadow: 0 0 25px rgba(0, 173, 181, 0.15);
}

/*===========================
      03.FEATUREAS css 
      ===========================*/
.single_features .features_image img {
    width: 100%;
    border-radius: 40px;
}

.single_features .features_content .features_title a {
    font-size: 30px;
    font-weight: 600;
    color: #1A3154;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_features .features_content .features_title a {
        font-size: 24px;
    }
}


/*-------------- About Sections --------------------------- */
/* style 1 */

.about-us-info{
    background-image: url(../images/about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.bg-color-about{
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(79.76%, rgba(27, 117, 187, 0)), to(rgba(255, 255, 255, 0)));
    background-image: linear-gradient(to right, #fff 40%, rgba(27, 117, 187, 0.0) 75.76%, rgba(255, 255, 255, 0) 100%);
}

.about-us-info p{
    padding:10px 0;
    color: #0F2340;
    font-weight: 500;
}

.about-us-info li{
    color: #0F2340;
    font-weight: 600;
}

.padding-lg{
    padding: 80px 50px;
}

.about {
    padding: 60px 0;
}

.about img {
    box-shadow: 1px 1px 5px 1px;
}

.about .content h3 {
    font-weight: 500;
    font-size: 24px;
    color: #58716d;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #1bbca3;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .progress {
    height: 50px;
    display: block;
    background: none;
}

.about .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    color: #58716d;
}

.about .progress .skill .val {
    float: right;
    font-style: normal;
}

.about .progress-bar-wrap {
    background: #e6eceb;
}

.about .progress-bar {
    width: 1px;
    height: 10px;
    transition: .9s;
    background-color: #898d8e;
}

.section-about {
    padding: 50px 0;
    background-color: #00586f;
    color: #fff;

}

.section-about p {
    color: #fff
}

.section-about h5 {
    color: #fff;
}

.section-about h3 {
    color: #fff;
}

.section-about a {
    color: #fff;
}

.description-about {
    max-width: 800px;
    display: -webkit-inline-box;
}


.theme_about {
    position: relative;
}

.theme_about .theme_about-content .important-text {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, .03);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.theme_about .theme_about-content .important-text::before {
    content: "\f12a";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    font-size: 80px;
    top: -5px;
    right: -5px;
    opacity: .2;
    color: var(--thm-base);
}

.theme_about .theme_general-list {
    padding: 0;
    background-color: #fff;
    margin: 20px 0;
}

.theme_about .theme_about-image-1,
.theme_about .theme_about-image-2 {
    border: 8px solid var(--thm-base);
    background-color: #fff;
    padding: 5px;
    border-radius: 50%;
}

.theme_about .theme_about-image-1 img,
.theme_about .theme_about-image-2 img {
    border-radius: 50%;
    width: 100%;
}

.theme_about .theme_about-image-2 {
    position: absolute;
    bottom: 30px;
    left: 5px;
}

/* style 2 */
.theme_about.style-2 .theme_about-image-1,
.theme_about.style-3 .theme_about-image-1,
.theme_about.style-3 .theme_about-image-2,
.theme_about.style-4 .theme_about-image-1 {
    border: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
}

.theme_about.style-2 .theme_about-image-1 img,
.theme_about.style-3 .theme_about-image-1 img,
.theme_about.style-3 .theme_about-image-2 img,
.theme_about.style-4 .theme_about-image-1 img {
    border-radius: 0;
}

.theme_about.style-2 .theme_about-image-1 .theme_video-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* style 3 */
.theme_about.style-3 .theme_about-image-1,
.theme_about.style-3 .theme_about-image-2 {
    border-radius: 0;
}

.theme_about.style-3 .theme_about-image-2 {
    right: 0;
    left: auto;
    bottom: -125px;
    z-index: 1;
}

.theme_about.style-3 .theme_about-image-1 img,
.theme_about.style-3 .theme_about-image-2 img,
.theme_about.style-4 .theme_about-image-1 img {
    width: auto;
}

.theme_about.style-3 .theme_about-exp {
    color: #000;
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    position: absolute;
    top: 75px;
    right: -36px;
    transform: rotate(270deg);
    background-color: #fff;
    padding: 10px;
}

.theme_about.style-3 .theme_video-btn {
    position: absolute;
    left: 10px;
    bottom: -104px;
    width: 80px;
    height: 80px;
    background-color: var(--thm-base);
    color: #fff;
    z-index: 1;
}

.theme_about.style-3 .theme_video-btn:hover,
.theme_about.style-4 .theme_video-btn:hover {
    background-color: var(--thm-base-hover);
}

.theme_about.style-3 .theme_general-list ul,
.theme_about.style-4 .theme_about-list {
    column-count: 2;
}

.theme_about.style-3 .theme_general-list ul li i {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

/* style 4 */
.theme_about.style-4 .theme_about-image-1 img {
    border: 20px solid var(--thm-base);
    border-radius: 0;
}

.theme_about.style-4 .theme_video-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    background-color: var(--thm-base);
    color: #fff;
}

.theme_about.style-4 .theme_about-list {
    margin: 20px 0;
}

.theme_about.style-4 .theme_about-list li span {
    color: var(--thm-secondary);
    font-family: var(--thm-font);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}

.theme_about.style-4 .theme_about-list li + li {
    margin-top: 20px;
}

/* Style 5 */
.theme_about.style-8 .theme_about-image-1,
.theme_about.style-8 .theme_about-image-2,
.theme_about.style-7 .theme_about-image-1,
.theme_about.style-7 .theme_about-image-2,
.theme_about.style-9 .theme_about-image-1,
.theme_about.style-5 .theme_about-image-1,
.theme_about.style-5 .theme_about-image-2,
.theme_about.style-10 .theme_about-image-1,
.theme_about.style-10 .theme_about-image-2 {
    border-radius: 0;
    border: 0;
    padding: 0;
    background-color: transparent;
}

.theme_about.style-8 .theme_about-image-1 img,
.theme_about.style-8 .theme_about-image-2 img,
.theme_about.style-7 .theme_about-image-1 img,
.theme_about.style-7 .theme_about-image-2 img,
.theme_about.style-9 .theme_about-image-1 img,
.theme_about.style-5 .theme_about-image-1 img,
.theme_about.style-5 .theme_about-image-2 img,
.theme_about.style-10 .theme_about-image-1 img,
.theme_about.style-10 .theme_about-image-2 img {
    border-radius: 0;
    width: auto;
}

.theme_about.style-5 [class*="theme_about-image-"],
.theme_about.style-10 [class*="theme_about-image-"] {
    position: absolute;
}

.theme_about.style-5 .theme_about-image-1 {
    top: 0;
    left: 0;
    max-width: 400px;
    max-height: 450px;
    z-index: 1;
}

.theme_about.style-5 .theme_about-image-2 {
    right: 20px;
    bottom: 0;
    left: auto;
    max-width: 400px;
    max-height: 260px;
    z-index: 2;
}

.theme_about.style-5 .theme_about-image-3 {
    right: 20px;
    top: 20px;
    max-width: 160px;
    z-index: 2;
}

.theme_about.style-5 .theme_about-image-4 {
    top: 140px;
    right: 95px;
    z-index: 3;
}

.theme_about.style-5 .theme_about-image-5 {
    z-index: 4;
    left: -45px;
    bottom: 20px;
}

/* Style 7 */
.theme_about.style-7 .theme_about-image-1 img,
.theme_about.style-9 .theme_about-image-1 img {
    width: 100%;
}

.theme_about.style-7 .theme_about-image-2 {
    position: absolute;
    left: -20px;
    bottom: 0;
    border-right: 20px solid #fff;
    border-top: 20px solid #fff;
    z-index: 1;
}

.theme_about.style-7 .theme_media span,
.theme_about.style-9 .theme_media span {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    font-size: 20px;
    line-height: 1;
    color: #00586f;
    min-width: 300px;
    box-shadow: 3px 3px 15px 1px rgba(0, 0, 0, 0.5);
}

.theme_about.style-7 .theme_media span b,
.theme_about.style-9 .theme_media span b {
    font-size: 78px;
    margin-right: 20px;
    font-weight: 700;
    min-width: 100px;
}

.theme_about.style-7 .theme_media-content img {
    position: absolute;
}

/* Style 8 */
.theme_about.style-8 {
    position: relative;
}

.theme_about.style-8 .theme_about-image-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 575px;
}

.theme_about.style-8 .shape {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100px;
    background-color: var(--thm-base);
    height: 465px;
    width: 465px;
    border-radius: 50%;
    z-index: -1;
}


/* Style 9 */

.theme_about.style-9 .theme_about-image-1 {
    position: relative;
}

.theme_about.style-9 .theme_about-image-1:before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: -15px;
    border-left: 320px solid var(--thm-base);
    border-top: 320px solid transparent;
    border-right: 400px solid transparent;
    z-index: -1;
}

.theme_about.style-9 .theme_media span {
    top: 340px;
    right: -90px;
}

@media only screen and (max-width: 643px) {

    .theme_about.style-9 .theme_media span {
        top: 0px;
        right: 0px;
    }

    .theme_about.style-9 .theme_about-image-1:before {
        display: none;
    }

}

.theme_info{
    background-color: #014E62;
    padding:25px;
    border-radius: 10px;
}

.theme_about.style-9 .theme_info.style-15 {
    padding: 10px;
}

.theme_about.style-9 .theme_info.style-15 .theme_info-description h5 {
    font-size: 14px;
}

.theme_about.style-9 .video-box span {
    color: var(--thm-secondary);
    font-weight: 500;
    line-height: 1.2;
    margin-left: 40px;
}


.video-box {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.video-box a {
    width: 60px;
    height: 60px;
    line-height: 62px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    position: relative;
    color: #fff;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    -webkit-transition: .5s;
    background: #2A4BDF;
    font-size: 24px;
    z-index: 44;
}


@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(42, 75, 223, 0.3), 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3);
        box-shadow: 0 0 0 0 rgba(42, 75, 223, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(42, 75, 223, 0.3), 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3);
        box-shadow: 0 0 0 0 rgba(42, 75, 223, 0.3), 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3), 0 0 0 30px rgba(42, 75, 223, 0);
        box-shadow: 0 0 0 10px rgba(42, 75, 223, 0.3), 0 0 0 20px rgba(42, 75, 223, 0.3), 0 0 0 30px rgba(42, 75, 223, 0)
    }
}


/* Style 10 */

.theme_about.style-10 .theme_about-image-1 {
    top: 0;
    right: 0;
    position: absolute;
    max-width: 300px;
}

.theme_about.style-10 .theme_about-image-1:before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -26px;
    background-color: var(--thm-base);
    width: 258px;
    height: 200px;
    z-index: -1;
}

.theme_about.style-10 .theme_about-image-2 {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 0;
    left: auto;
    z-index: -2;
}

.theme_about.style-10 .theme_about-image-3 {
    right: 70px;
    bottom: 0;
    z-index: -1;
    max-width: 300px;
    max-height: 260px;
    z-index: -3;
}

.theme_about.style-10 .theme_media {
    flex-direction: column;
    align-items: flex-start;
    margin: 16px 0 30px;
}

.theme_about.style-10 .theme_media span {
    display: inline-block;
    font-size: 36px;
    font-weight: 600;
    color: var(--thm-base);
}

.theme_about.style-10 .theme_media-content {
    margin-left: 0;
}


.about_area {
    position: relative;
    z-index: 5;
}

.about_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    padding-right: 280px;
}

.about_bg .about_bg_image {
    width: 100%;
    height: 100%;
}

.about_image img {
    width: 100%;
    border-radius: 40px;
    border-bottom-right-radius: 0;
}

.about_content {
    padding-left: 45px;
}

.about_content .sub_title {
    font-size: 38px;
    font-weight: 400;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_content .sub_title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about_content .sub_title {
        font-size: 24px;
    }
}

.about_content .sub_title::before {
    position: absolute;
    content: '';
    width: 9px;
    height: 100%;
    left: -45px;
    top: 0;
    background-color: #1A3154;
}

.about_content .sub_title span {
    font-size: 70px;
    font-weight: 800;
    color: #00586f;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_content .sub_title span {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .about_content .sub_title span {
        font-size: 44px;
    }
}

.about_content .main_title {
    font-size: 40px;
    margin-top: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .about_content .main_title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .about_content .main_title {
        font-size: 24px;
    }
}

.about_content p {
    margin-top: 25px;
}

.about_content .main-btn {
    margin-top: 45px;
}

/*===========================
  SERVICES css 
       ===========================*/

/* Single Service */

.single-services {
    margin-top: 140px;
}

#tabs ul {
    margin: 0;
    padding: 0;


}

#tabs ul li {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;

}

#tabs ul li:last-child {
    margin-bottom: 0px;
}

#tabs ul li a {
    text-transform: capitalize;
    width: 100%;
    padding: 10px 10px;
    display: inline-block;
    background-color: rgba(1, 86, 141, 1);
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 700;
    transition: all 0.3s;
    border-radius: 10px;
}

#tabs ul li a i {
    float: right;
    margin-top: 10px;
}

#tabs ul .ui-tabs-active span {
    background: #faf5b2;
    border: #faf5b2;
    line-height: 90px;
    border-bottom: none;
}

#tabs ul .ui-tabs-active {
    box-shadow: 4px 4px 10px 3px rgb(0 0 0 / 30%);
    border: 1px solid #00586f;
    transition: all 0.5s;
    border-radius: 10px;
}

#tabs ul .ui-tabs-active a {
    color: #898d8e;
}

#tabs ul .ui-tabs-active span {
    color: #1e1e1e;
}

.tabs-content {
    text-align: left;
    display: inline-block;
    transition: all 0.3s;
}

.tabs-content article {
    transition: all 1s;
}

.tabs-content img {
    max-width: 100%;
    overflow: hidden;
}

.tabs-content h4 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.25px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.tabs-content h3 {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.25px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.tabs-content p {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 0px;
}

.services {
    padding-bottom: 30px;
}

/*widget contact*/


.widget {
    margin-top: 60px;
}

.contact-widget {
    background-image: url(../images/services/bg-serv.jpg);
    background-size: cover;
    padding: 55px 40px;
    position: relative;
    text-align: center;
    background-repeat: no-repeat;
    background-position: bottom;
}

.contact-widget a {
    margin-top: 10px;
}

.contact-widget:before{
content: "";
    background: #00586f;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
}

.contact-widget h5{
    color:#fff;
    position: relative;
    font-weight: 400;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin: 1em 0;
}

.widget-responsive {
    display: none;
}

@media (max-width: 767px) {
    .widget-responsive {
        display: block;
    }

    .widget-pc {
        display: none;
    }
}



.services .icon-box {
    margin-bottom: 20px;
    text-align: center;
}

.services .icon {
    display: flex;
    justify-content: center;
}

.services .icon i {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    transition: 0.5s;
    color: #00586f;
    font-size: 40px;
    overflow: hidden;
    padding-top: 20px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
    padding: 0 50px;
}

.services .icon-box:hover .icon i {
    box-shadow: 0px 0 30px rgba(1, 86, 141, 0.5);
}

.services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
}

.services .title a {
    color: #444;
    transition: 0.3s;
}

.services .title a:hover {
    color: #00586f;
}

.services .title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: #00586f;
    bottom: 0;
    left: calc(50% - 25px);
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}

.services-section {
    margin: 100px 0px;
}


.single_services .services_icon i {
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 40px;
    color: #00586f;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(213, 213, 213, 0.4);
    -moz-box-shadow: 0px 3px 10px 0px rgba(213, 213, 213, 0.4);
    box-shadow: 0px 3px 10px 0px rgba(213, 213, 213, 0.4);
}

.single_services .services_content {
    margin-top: 25px;
}

.single_services .services_content .title {
    font-size: 30px;
    font-weight: 700;
    object-fit: cover;
    object-position: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_services .services_content .title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .single_services .services_content .title {
        font-size: 24px;
    }
}

.single_services .services_content p {
    margin-top: 25px;
}

/*-------- Style 1 --------*/

.features-box {
    position: relative;
    display: block;
    margin: 30px 0px;
}

.features-box-icon {
    display: table-cell;
    vertical-align: top;
}

.features-box-icon i {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    color: #46bfe2;
    font-size: 50px;
    padding: 10px;
    border-radius: 50%;
}

.features-box-content {
    display: table-cell;
    padding-left: 20px;
}

.features-box-content h3 {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.features-box p {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    line-height: 1.8;
    margin-top: 10px;
}

/*-------- Style 2 --------*/
.features-box-2 {
    position: relative;
    text-align: center;
    padding: 30px;
}

.features-box-2-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    transform: rotate(45deg);
    background-image: linear-gradient(to bottom, rgba(137, 141, 142, .15), transparent);
    margin: auto;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-box-2-icon img{
     transform: translateY(10px)rotate(-45deg);
     width: 95px;

}

.features-box-2-icon:hover {
    background-image: linear-gradient(to bottom, transparent, rgba(137, 141, 142, .15));
     -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-box-2-icon i {
    display: block;
    color: #00586f;
    font-size: 60px;
    transform: translateY(40px) rotate(-45deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-box-2-icon i:hover {
    display: block;
    font-size: 60px;
    transform: translateY(40px) rotate(-45deg);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.features-box-2 h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 8px;
}

.features-box-2 p {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-top: 13px;
}

/*-------- Style 3 --------*/
.features-box-3 {
    display: block;
    text-align: center;
    padding: 10px 15px;
    margin: 15px 0px;
}

.features-box-3 i {
    font-size: 55px;
    color: #46bfe2;
}

.features-box-3 h4 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-top: 15px;
}

.features-box-3 p {
    font-weight: 400;
    margin-top: 12px;
}

/*-------- Style 4 --------*/
.features-box-4 {
    position: relative;
    text-align: left;
    margin: 20px 0px;
}

.features-box-4 .features-box-4-icon {
    text-align: center;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    background-image: linear-gradient(to bottom left, rgba(70, 191, 226, .2), transparent);
}

.features-box-4 .features-box-4-icon i {
    display: block;
    color: #46bfe2;
    font-size: 42px;
    transform: translateY(22px);
}

.features-box-4 h4 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 15px;
}

.features-box-4 p {
    font-size: 13px;
    color: #999;
    line-height: 1.7;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
}

/*-------- Style 5 --------*/
.features-box-5 {
    position: relative;
    text-align: center;
    margin: 10px 0px;
    padding: 20px;
}

.features-box-5 span {
    position: relative;
    display: block;
    font-size: 130px;
    line-height: 1;
    font-weight: 600;
    color: #eee;
    opacity: .6;
    z-index: 9;
    margin-bottom: -80px;
}

.features-box-5 img {
    position: relative;
    width: 80px;
    z-index: 99;
}

.features-box-5 h4 {
    font-size: 19px;
    color: #222;
    font-weight: 600;
    margin-top: 20px;
}

.features-box-5 p {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0px;
}

/*-------- Style 6 --------*/
.service-section {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, .01);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

.service-section:hover {
    box-shadow: 0 20px 30px rgba(0, 0, 0, .07);
    transform: translateY(-5px);
    background: #46bfe2;
}

.service-section:hover .service-section-icon i {
    color: #fff;
}

.service-section-icon {
    text-align: right;
}

.service-section-icon i {
    color: #46bfe2;
    font-size: 50px;
}

.service-section h4 {
    color: #222;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
}

.service-section:hover h4 {
    color: #fff;
}

.service-section p {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 20px;
}

.service-section:hover p {
    color: #fff;
}



/*===========================
       07.COUNTER css 
       ===========================*/
.counter_area {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-bottom-right-radius: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .counter_area {
        border-bottom-right-radius: 80px;
    }
}

@media (max-width: 767px) {
    .counter_area {
        border-bottom-right-radius: 60px;
    }
}

.counter_area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(26, 49, 84, 0.79);
    width: 100%;
    height: 100%;
}

.single_counter .counter_icon i {
    font-size: 60px;
    line-height: 60px;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_counter .counter_icon i {
        font-size: 44px;
        line-height: 50px;
    }
}

@media (max-width: 767px) {
    .single_counter .counter_icon i {
        font-size: 44px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_counter .counter_icon i {
        font-size: 40px;
        line-height: 50px;
    }
}

.single_counter .counter_content {
    margin-top: 25px;
}

.single_counter .counter_content span {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_counter .counter_content span {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .single_counter .counter_content span {
        font-size: 38px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_counter .counter_content span {
        font-size: 34px;
    }
}

.single_counter .counter_content p {
    color: #fff;
}

/*===========================
        10.BRAND css 
        ===========================*/
.single_logo img {
    border-radius: 50%;
    -webkit-box-shadow: 0px 3px 24px 0px rgba(213, 213, 213, 0.49);
    -moz-box-shadow: 0px 3px 24px 0px rgba(213, 213, 213, 0.49);
    box-shadow: 0px 3px 24px 0px rgba(213, 213, 213, 0.49);
    width: 100%;
}

.single_logo.logo_2 {
    padding-top: 158px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single_logo.logo_2 {
        padding-top: 130px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single_logo.logo_2 {
        padding-top: 90px;
    }
}

@media (max-width: 767px) {
    .single_logo.logo_2 {
        padding-top: 0;
    }
}

/*===========================
       11.CONTACT css 
       ===========================*/
p.form-message.success,
p.form-message.error {
    font-size: 16px;
    color: #1A3154;
    background: #f7f7fd;
    padding: 10px 15px;
    margin-top: 30px;
}

p.form-message.success.form-message.error,
p.form-message.error.form-message.error {
    color: #f00;
}

.contact_form .single_form {
    margin-top: 30px;
}

.contact_form .single_form textarea,
.contact_form .single_form input {
    width: 100%;
    height: 55px;
    padding: 0 25px;
    border: 1px solid #677284;
    border-radius: 5px;
}

.contact_form .single_form textarea:focus,
.contact_form .single_form input:focus {
    border: 1px solid #00586f;
}

.contact_form .single_form textarea {
    padding-top: 15px;
    resize: none;
    height: 125px;
}

.contact_info p {
    margin-top: 15px;
}

.single_info {
    margin-top: 30px;
}

.single_info .info_icon i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    border-radius: 5px;
    background-color: #00586f;
    color: #fff;
}

@media (max-width: 767px) {
    .single_info .info_icon i {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

.single_info .info_content {
    padding-left: 15px;
}

.single_info .info_content p {
    margin-top: 0;
}

@media (max-width: 767px) {
    .single_info .info_content p {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single_info .info_content p {
        font-size: 16px;
    }
}

/*===========================
      FOOTER css 
       ===========================*/
.footer_area {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-top: 1px solid rgba(0, 146, 212, 0.7);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer_area {}
}

@media (max-width: 767px) {
    .footer_area {}
}

.footer_area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer_about img {
    max-width: 150px;
}

.footer_about p {
    margin-top: 25px;
    color: #898d8e;
}

.footer_title {
    font-size: 25px;
    font-weight: 600;
    color: #898d8e;
}

.footer_link_wrapper .footer_link {
    width: 50%;
}

@media (max-width: 767px) {
    .footer_link_wrapper .footer_link {
        width: 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .footer_link_wrapper .footer_link {
        width: 50%;
    }
}

.footer_link_wrapper .footer_link .link {
    padding-top: 25px;
}

.footer_link_wrapper .footer_link .link li {
    margin-top: 10px;
}

.footer_link_wrapper .footer_link .link li a {
    font-size: 16px;
    font-weight: 400;
    color: #898d8e;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer_link_wrapper .footer_link .link li a:hover {
    color: #00586f;
}

.footer_copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    padding: 25px 0;
}

.footer_copyright p {
    color: #898d8e;
}

.footer_link_wrapper .footer_link .map-canvas {
    border-radius: 10px;
    width: 100%;
    height: 200px;
}

.footer_link_wrapper .footer_link .map-canvas .map {
    height: 200px;
}

.social-link-footer li {
    display: inline-block;
}

/*===== BACK TO TOP =====*/
.back-to-top {
    font-size: 20px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background-color: #00586f;
    text-align: center;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: none;
}

.back-to-top:hover {
    color: #fff;
    background-color: #00586f;
}

.client-logo-section {
    background: #F9FAFF;
    padding: 50px 0;
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo {
    padding: 10px;
    text-align: center;
    margin: auto
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img {
    max-width: 180px;
    width: 100%;
    opacity: .3;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s
}

.client-logo-section .client-logo-wrapper .client-logo-carousel .client-logo img:hover {
    opacity: 1
}

.section-title {
    position: relative;
    max-width: 680px;
    margin: 0 0 50px;
}

.section-title.centered {
    text-align: center;
    margin: 0 auto 50px;
}

.section-title.flex-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 50px;
    max-width: 100%;
}

.section-title .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 1;
    position: relative;
}

.title-underline-bg {
    height: 10px;
    width: 150px;
    background: #B9B9B9;
    margin: 20px auto;
    position: relative;
}

.title-underline-bg:before {
    content: '';
    position: absolute;
    left: 0;
    height: 4px;
    width: 15px;
    background: #00586f;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ani-bg;
    animation-name: ani-bg;
}

.title-underline-bg:after {
    content: '';
    position: absolute;
    left: 0;
    height: 4px;
    width: 15px;
    background: #00586f;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: ani-bg-b;
    animation-name: ani-bg-b;
    top: 5px;
}

@-webkit-keyframes ani-bg {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(136px);
        transform: translateX(136px);
    }
}

@keyframes ani-bg {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(136px);
        transform: translateX(136px);
    }
}

@-webkit-keyframes ani-bg-b {
    from {
        -webkit-transform: translateX(136px);
        transform: translateX(136px);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes ani-bg-b {
    from {
        -webkit-transform: translateX(136px);
        transform: translateX(136px);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

/*PROCESS*/

/*.nav>li>a:focus, .nav>li>a:hover{background: transparent!important;}*/

.section-process {
    padding: 100px 0;
    border-top: 1px solid rgba(1, 86, 141, 0.1);
    border-bottom: 1px solid rgba(1, 86, 141, 0.1);
    background-image: url(../images/bg-process.svg);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.design-process-section .text-align-center {
    line-height: 25px;
    margin-bottom: 12px;
}

.design-process-content {
    border: 1px solid #e9e9e9;
    position: relative;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.3);
}

.design-process-content img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    max-height: 100%;
}

.design-process-content h3 {
    margin-bottom: 16px;
}

.design-process-content p {
    line-height: 26px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.process-model {
    list-style: none;
    padding: 0;
    position: relative;
    max-width: 100%;
    margin: 20px 0 26px 30px;
    border: none;
    z-index: 0;
}

.process-model li::after {
    background: #e5e5e5 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    margin: 0 auto;
    position: absolute;
    left: 80px;
    top: 33px;
    width: 82%;
    z-index: -1;
}

.process-model li.visited::after {
    background: #006eb6;
}

.process-model li:last-child::after {
    width: 0;
}

.process-model li {
    display: inline-block;
    width: 20%;
    text-align: center;
    float: none;
}

.nav-tabs.process-model > li.active > a,
.nav-tabs.process-model > li.active > a:hover,
.nav-tabs.process-model > li.active > a:focus,
.process-model li a:hover,
.process-model li a:focus {
    border: none;
    background: transparent;

}

.process-model li a {
    padding: 0;
    border: none;
    color: #606060;
}

.process-model li.active,
.process-model li.visited {
    color: #006eb6;
}

.process-model li.active a,
.process-model li.active a:hover,
.process-model li.active a:focus,
.process-model li.visited a,
.process-model li.visited a:hover,
.process-model li.visited a:focus {
    color: #006eb6;
}

.process-model li.active p,
.process-model li.visited p {
    font-weight: 600;
    color: #006eb6;
}

.process-model li i {
    display: block;
    height: 68px;
    width: 68px;
    text-align: center;
    margin: 0 auto;
    background: #f5f6f7;
    border: 2px solid #e5e5e5;
    line-height: 65px;
    font-size: 30px;
    border-radius: 10px;
}

.process-model li.active i,
.process-model li.visited i {
    background: #fff;
    border-color: #006eb6;
}

.process-model li p {
    font-size: 1rem;
    margin-top: 11px;
}

.process-model.contact-us-tab li.visited a,
.process-model.contact-us-tab li.visited p {
    color: #606060 !important;
    font-weight: normal
}

.process-model.contact-us-tab li::after {
    display: none;
}

.process-model.contact-us-tab li.visited i {
    border-color: #e5e5e5;
}



@media screen and (max-width: 560px) {

    .process-model {
        margin: 0px;
    }


    .more-icon-preocess.process-model li span {
        font-size: 23px;
        height: 50px;
        line-height: 46px;
        width: 50px;
    }

    .more-icon-preocess.process-model li::after {
        display: none;
    }

    .process-model li {
        display: inline-block;
        width: 50%;
        text-align: center;
        float: none;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 380px) {
    .process-model.more-icon-preocess li {
        width: 50%;
    }

    .more-icon-preocess.process-model li span {
        font-size: 16px;
        height: 35px;
        line-height: 32px;
        width: 35px;
    }

    .more-icon-preocess.process-model li p {
        font-size: 1rem;
    }

    .more-icon-preocess.process-model li::after {
        display: none;
    }

    .process-model.more-icon-preocess {
        text-align: center;
    }
}

/*sections headers*/

.page-heading {
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 230px 0px 150px 0px;
    color: #fff;
}

.bg-about {
    background-image: url(../images/bg-about.jpg);


}

.bg-services {
    background-image: url(../images/bg-services.jpg);

}

.bg-faq {
    background-image: url(../images/bg-faq.jpg);
    padding: 150px 0px 80px 0px;

}

.bg-contact {
    background-image: url(../images/bg-contact.jpg);

}

.about-serv {
    background-image: url(../images/bg-about-serv-1.jpg);
    background-size: cover;
    padding: 100px 0;
}

.about-serv .subtitle {
    color: #BABABA;
}

.about-serv .features-box-2-icon i {
    color: #fff;
}


.about-serv h4 {
    color: #fff;
}




.page-heading h1 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: #fff;
}

.page-heading span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    display: block;
}


/*CounterUp*/

.counts {
    background-color: #EEFCFF
}

.counts .count-box {
    box-shadow: 3px 3px 40px 0 rgb(0 0 0 / 18%);
    padding: 30px;
    width: 80%;
    background: #fff;
}

.counts .count-box i {
    display: block;
    font-size: 30px;
    color: #898d8e;
    float: left;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #00586f;
    margin-left: 50px;
}

.counts .count-box p {
    padding: 30px 0 0 0;
    margin: 0;
    font-size: 14px;
}

.counts .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #7c9995;
    font-size: 15px;
    transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
    color: #a7bbb8;
}

/* Testimonials Style */

.about-testimonials {
    margin-top: 0px!important;
}

.testimonials .title{
    padding-bottom:50px;

}

.testimonials {
    margin-top: 30px;
    background-color: #f7f7f7;
    padding: 70px 0px;
}
.testimonial-item .inner-content {
    text-align: center;
    background-color: #fff; 
    padding: 30px;
    border-radius: 5px;
}
.testimonial-item p {
    font-size: 14px;
    font-weight: 400;
}
.testimonial-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1e1e1e;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}
.testimonial-item span {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #898d8e;
}
.testimonial-item img {
    max-width: 60px;
    border-radius: 50%;
    margin: 25px auto 0px auto;
}

.faq-bg{
    
    padding: 90px 0;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background-image: url(../images/bg-process.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.faq-section .faq-video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: hidden;
  width: 50%;
}

@media only screen and (min-width: 1400px) {
  .faq-section .faq-video-wrapper {
    width: 48%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-section .faq-video-wrapper {
    width: 47%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-section .faq-video-wrapper {
    position: unset;
    display: block;
    width: 47%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section .faq-video-wrapper {
    position: unset;
    display: block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .faq-section .faq-video-wrapper {
    position: unset;
    display: block;
    width: 100%;
  }
}

.faq-section .faq-video-wrapper .faq-video {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-section .faq-video-wrapper .faq-video img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section .faq-video-wrapper .faq-video img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .faq-section .faq-video-wrapper .faq-video img {
    width: 100%;
  }
}

.faq-section .faq-video-wrapper .faq-video .video-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq-section .faq-video-wrapper .faq-video .video-btn a {
  display: inline-block;
  width: 77px;
  height: 77px;
  line-height: 77px;
  background: #00586f;
  color: #fff;
  position: relative;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.faq-section .faq-video-wrapper .faq-video .video-btn a::before {
  content: '';
  position: absolute;
  width: 129px;
  height: 129px;
  border-radius: 50%;
  background: rgba(0, 173, 181, 0.16);
  z-index: -1;
  top: -26px;
  left: -26px;
  -webkit-animation: animation1 2s linear infinite;
          animation: animation1 2s linear infinite;
}

.faq-section .faq-video-wrapper .faq-video .video-btn a::after {
  content: '';
  position: absolute;
  width: 199px;
  height: 199px;
  border-radius: 50%;
  background: rgba(0, 173, 181, 0.13);
  z-index: -1;
  top: -61px;
  left: -61px;
  -webkit-animation: animation1 2s linear infinite 2s;
          animation: animation1 2s linear infinite 2s;
}

.faq-section .shape {
  position: absolute;
  right: -150px;
  top: 0;
}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item {
  background: rgba(44,0,88, 0.8);
  border-radius: 10px;
  margin-bottom: 20px;
}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item .faq-btn {
  display: block;
  width: 100%;
  text-align: left;
  color: #fff;
  background: none;
  font-size: 1rem;
  padding: 20px 50px 20px 30px;
  position: relative;
  white-space: normal;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: none;

}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item .faq-btn i {
  position: absolute;
  right: 30px;
  top: 30px;
  font-size: 12px;
}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item .faq-btn i::before {
  content: "\eb2c";
  font: normal normal normal 1em/1 "LineIcons";
}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item .faq-btn.collapsed i::before {
  content: "\eb53";
}

.faq-section .faq-content-wrapper .faq-wrapper .faq-item .faq-content {
  color: #fff;
  padding: 5px 30px 30px;
  font-size: 16px;
  line-height: 25px;
}
