#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%}
#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #005153;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,  -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #005153;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,  -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
    width: 0;
    height: 0;
    opacity: 0;
}
10% {
    width: 10px;
    height: 10px;
    opacity: 1;
}
80% {
    width: 60px;
    height: 60px;
    opacity: 0.1;
}
100% {
    width: 70px;
    height: 70px;
    opacity: 0;
}
}h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: #1e3238;
}
a:hover, a:active {
    color: #005153;
    text-decoration: none;
}
.primary-overlay[data-overlay-dark]:before {
    background: #005153;
}
.secondary-overlay[data-overlay-dark]:before {
    background: #ffb922;
}
.dark-overlay[data-overlay-dark]:before {
    background: #1e3238;
}
.left-overlay-dark[data-overlay-dark]:before {
    background: rgba(30, 50, 56, 0.76);
    background: linear-gradient(-90deg,  transparent,  #1e3238 65%);
}
.text-primary, .text-primary-hover:hover {
    color: #005153 !important;
}
.bg-primary {
    background-color: #005153 !important;
}
.text-secondary, .text-secondary-hover:hover {
    color: #ffb922 !important;
}
.bg-secondary {
    background-color: #ffb922 !important;
}
.bg-dark {
    background-color: #1e3238 !important;
}
.bg-light {
    background-color: #edf4f2 !important;
}
.text-dark {
    color: #1e3238 !important;
}
.bg-white-opacity-light-one {
    background-color: rgba(255, 255, 255, 0.1);
}
.form-control {
    border-radius: 0;
}
.common-letter-spacing-minus {
    letter-spacing: -0.2em;
}
.letter-spacing-minus-05px {
    letter-spacing: -0.5px;
}
.border-primary {
    border: 1px solid #005153 !important;
}
.border-top-radius {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.border-bottom-radius {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.bg-gradient-black-dark-orange:before {
    opacity: 0.7;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, 0.76);
    background-image: linear-gradient(to right top,  #353332,  #312b28,  #15110f,  #4a3229,  #5a2611);
}
.ms-minus-20 {
    margin-left: -20px;
}
.min-vh-100 {
    min-height: 100vh;
}
.height-316 {
    height: 316px;
}
.height-400 {
    height: 400px;
}
@media screen and (min-width: 992px) {
    .min-width {
    min-width: 100vw;
}
}.box-text {
    width: 40px;
    height: 40px;
    border: 1px solid #ffb922;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 30px;
    color: #ffb922;
    margin-right: 8px;
    margin-bottom: 5px;
}
.shape-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 90px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    bottom: -300px;
    left: -310px;
}
.shape-2 {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -110px;
    right: -100px;
}
.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    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 {
    -webkit-transform: scale(1);
    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 (max-width: 575px),  only screen and (min-width: 576px) and (max-width: 767px),  only screen and (min-width: 992px) and (max-width: 1199px) {
    .scroll-top-percentage {
    right: 30px;
    bottom: 20px;
}
}#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    color: var(--rr-common-white);
    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% {
    -webkit-transform: translate3d(0,  80%,  0);
    transform: translate3d(0,  80%,  0);
    visibility: visible;
}
to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}@keyframes scrollToTop {
    0% {
    -webkit-transform: translate3d(0,  80%,  0);
    transform: translate3d(0,  80%,  0);
    visibility: visible;
}
to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
}.list-style1 li {
    margin-bottom: 15px;
}
.list-style1 li:last-child {
    margin-bottom: 0;
}
.list-style1 li a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
}
.list-style1 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: #ffb922;
}
.list-style1 li a:hover {
    color: #ffb922;
}
.list-style1 li a:hover:after {
    width: 100%}
.list-style2 {
    list-style: none;
    padding-left: 0;
}
.list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}
.list-style2 li:last-child {
    margin-bottom: 0;
}
.list-style2 li:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #005153;
}
.list-style2.second li {
    color: #fff;
}
.list-style2.second li:before {
    color: #fff;
}
.list-style3 li {
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 15px;
}
.list-style3 li:last-child {
    margin-bottom: 0;
}
.list-style3 li span {
    width: 20%;
    display: inline-block;
    font-weight: 700;
    color: #001F3F;
}
@media screen and (max-width: 575px) {
    .list-style3 li span {
    display: flex;
    width: unset;
}
}.btn-style1 {
    color: #FFFFFF;
    background-color: #ffb922;
    border-style: none;
    padding: 18px 30px 18px 30px !important;
    border-radius: 5px;
    transition: all 0.2s cubic-bezier(0.455,  0.03,  0.515,  0.955);
    font-size: 14px !important;
    font-weight: 600;
    position: relative;
    align-items: center;
    display: inline-flex;
    line-height: 1;
    vertical-align: middle;
    text-align: center;
    text-transform: uppercase;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.btn-style1 i {
    margin-left: 10px;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    line-height: 1;
}
.btn-style1:hover, .btn-style1:active, .btn-style1:focus {
    background-color: #fff;
    color: #005153 !important;
}
.btn-style1.md {
    padding: 14px 23px !important;
}
.btn-style1.primary:hover, .btn-style1.primary:active, .btn-style1.primary:focus {
    background-color: #005153;
    color: #fff !important;
}
.btn-style2 {
    color: #fff !important;
    padding: 18px 40px !important;
    font-size: 16px;
    font-weight: 600;
    background-color: #005153;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
}
.btn-style2:hover, .btn-style2:active, .btn-style2:focus {
    background-color: #ffb922;
}
.btn-style2.medium {
    padding: 12px 28px !important;
    font-size: 14px;
}
.btn-style2.small {
    padding: 8px 28px !important;
    font-size: 14px;
}
.btn-style2.secondary {
    background-color: #ffb922;
}
.btn-style2.secondary:hover, .btn-style2.secondary:active, .btn-style2.secondary:focus {
    background-color: #005153;
    color: #fff;
}
.btn-style3 {
    background-color: #1e3238;
    color: #fff !important;
    font-size: 14px !important;
    padding: 12px 30px !important;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: .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;
}
.btn-style3: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);
    -webkit-transform: translate3d(0,  -2px,  0);
    transform: translate3d(0,  -2px,  0);
}
.btn-style3.white {
    background-color: #fff;
    color: #1e3238 !important;
}
.btn-style3.secondary {
    background-color: #ffb922;
    color: #fff !important;
}
.btn-style3.md {
    padding: 10px 26px !important;
}
.button-link {
    padding: 0 0 2px;
    position: relative;
    border: 0;
    border-bottom: 2px solid;
    letter-spacing: 0;
    background-color: transparent;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    width: auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.button-link:hover {
    opacity: 0.7;
}
.button-link.contact-link {
    font-size: 14px;
}
.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}
.top-bar-info ul {
    margin-bottom: 0;
}
.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0;
}
.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
}
.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}
.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}
.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px;
}
.top-social-icon li:last-child {
    padding-right: 0;
}
.top-social-icon li:last-child a {
    padding-right: 0;
}
.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 0 3px;
}
.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65);
}
.navbar-nav li.current>a, .navbar-nav li.active>a {
    color: #ffb922;
}
.attr-nav>ul>li>a.butn {
    color: #fff;
}
.navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.menu_area-light .navbar-nav li.current>a, .menu_area-light .navbar-nav li.active>a {
    color: #ffb922;
}
.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: #ffb922;
}
.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: #ffb922;
}
.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: #ffb922;
}
.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 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: #ffb922;
}
.menu_area-light .navbar>ul>li.has-sub>a:hover:after {
    border-color: #ffb922;
}
.menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style2 .navbar ul ul li.active>a {
    color: #ffb922;
}
.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: #ffb922;
}
.header-style2 .navbar-nav li.current>a, .header-style2 .navbar-nav li.active>a {
    color: #ffb922;
}
.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 #ffb922 #ffb922 transparent;
}
}@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
    background: #ffb922;
}
.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: #ffb922;
}
.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #ffb922;
}
.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
    color: #ffb922;
}
.header-style2 .butn.secondary:before {
    background: #ffffff;
}
.header-style2 .butn.secondary:hover, .header-style2 .butn.secondary:focus, .header-style2 .butn.secondary:active {
    color: #ffb922 !important;
}
.header-style2.scrollHeader .butn.secondary:before {
    background: #ffb922;
}
.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 {
    color: #ffb922;
}
.header-style3 .navbar-nav li.active>a {
    color: #ffb922;
}
@media screen and (min-width: 992px) {
    .header-style3 .navbar-nav li.active>a {
    color: #ffb922;
}
.header-style3 .navbar-nav>li>a:hover, .header-style3 .navbar-nav>li>a:active, .header-style3 .navbar-nav>li>a:focus {
    color: #ffb922;
}
.header-style3 .navbar ul ul li.active>a {
    color: #ffb922;
}
.header-style3 .navbar-nav li.has-sub a:hover, .header-style3 .navbar-nav li.current>a {
    color: #ffb922;
}
.header-style3 .navbar-nav>li.has-sub>a:hover {
    color: #ffb922;
}
.header-style3 .navbar>ul>li.has-sub>a:hover:after, .header-style3 .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style3.scrollHeader .navbar-nav>li.has-sub>a:hover {
    color: #ffb922;
}
.header-style3.scrollHeader .navbar>ul>li.has-sub>a:hover:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
.header-style3.scrollHeader .navbar-nav>li.active>a {
    color: #ffb922;
}
.header-style3.scrollHeader .navbar-nav li.current>a {
    color: #ffb922;
}
.header-style3.scrollHeader .navbar-nav li.current>a:hover {
    color: #ffb922;
}
.header-style3.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #ffb922 #ffb922 transparent;
}
}@media screen and (max-width: 991px) {
    .header-style3 .navbar-toggler {
    background: #ffb922;
}
.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 {
    background: #fff;
}
.header-style3 .navbar-toggler.menu-opened:before {
    background: #fff;
}
}.slider-fade1 .owl-item {
    height: 100vh;
    position: relative;
}
.slider-fade1 .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.slider-fade1 h1, .slider-fade1 .h1 {
    animation-delay: 0.8s;
}
.slider-fade1 a {
    animation-delay: 1.2s;
}
.slider-fade1 .owl-dots {
    position: absolute;
    top: 50%;
    right: 50px;
    margin: 0 !important;
    transform: translateY(-50%);
}
.slider-fade1.owl-theme .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #fff;
}
.slider-fade1.owl-theme .owl-dots .owl-dot {
    position: relative;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active {
    color: #fff;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:before {
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
    background-color: #ffb922;
    position: absolute;
    right: 70px;
    width: 120px;
    height: 120px;
    font-weight: 600;
    z-index: 2;
    font-size: 0;
    top: -70px;
    padding: 10px;
    line-height: 2.8;
    opacity: 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active:before {
    opacity: 1;
    font-size: 34px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    height: 0;
    width: 0;
    border-radius: 0;
    position: relative;
    margin: 0;
}
.slider-fade1.owl-carousel .owl-nav button.owl-prev {
    display: none;
}
.slider-fade1.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 0;
    margin: 0;
}
.slider-fade1.owl-carousel .owl-nav button.owl-next span {
    font-size: 28px;
}
.slider-fade1.owl-theme .owl-nav {
    margin-top: 0;
}
.slider-fade1.owl-theme .owl-dots .owl-dot.active span, .slider-fade1.owl-theme .owl-dots .owl-dot:hover span {
    background-color: transparent;
}
@media screen and (max-width: 1199px) {
    .slider-fade1.owl-carousel .owl-nav button.owl-next {
    width: 100px;
    height: 100px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:before {
    width: 100px;
    height: 100px;
    line-height: 2.3;
    right: 50px;
    top: -60px;
}
}@media screen and (max-width: 767px) {
    .slider-fade1.owl-theme .owl-dots {
    top: inherit;
    bottom: -4px;
}
.slider-fade1.owl-carousel .owl-nav button.owl-next {
    width: 80px;
    height: 80px;
    top: inherit;
    bottom: -40px;
}
.slider-fade1.owl-theme .owl-dots .owl-dot:before {
    width: 80px;
    height: 80px;
    line-height: 1.8;
    right: 30px;
    top: -50px;
}
}.banner-style1 .main-title h1 {
    background: #ffb922;
    display: inline;
    color: #fff;
    font-size: 110px;
    line-height: 1.4em !important;
}
.banner-style1 .img1 {
    margin-left: -20px;
}
@media screen and (max-width: 1199px) {
    .banner-style1 .main-title h1 {
    font-size: 90px;
}
}@media screen and (max-width: 767px) {
    .banner-style1 .main-title h1 {
    font-size: 70px;
}
}@media screen and (max-width: 575px) {
    .banner-style1 .main-title h1 {
    font-size: 36px;
}
}.banner-style2 .main-title h1 {
    font-size: 170px;
    letter-spacing: -12px;
    line-height: 0.75 !important;
}
@media screen and (max-width: 1399px) {
    .banner-style2 .main-title h1 {
    font-size: 150px;
    letter-spacing: -0.02em;
}
}@media screen and (max-width: 1199px) {
    .banner-style2 .main-title h1 {
    font-size: 120px;
}
}@media screen and (max-width: 991px) {
    .banner-style2 .main-title h1 {
    font-size: 95px;
}
}@media screen and (max-width: 767px) {
    .banner-style2 .main-title h1 {
    font-size: 75px;
}
}@media screen and (max-width: 575px) {
    .banner-style2 .main-title h1 {
    font-size: 50px;
}
}.section-title-01 span {
    font-size: 16px;
    color: #005153;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-left: 40px;
}
.section-title-01 span:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #005153;
    top: 50%;
    left: 0;
    display: inline-block;
    transform: translateY(-50%);
}
.section-title-01.secondary span {
    color: #ffb922;
}
.section-title-01.secondary span:before {
    background-color: #ffb922;
}
.section-title-02 h2 {
    margin-bottom: 1em;
    z-index: 9;
    position: relative;
    display: inline-block;
    font-weight: 700;
}
.section-title-02.footer-title h2 {
    font-size: 24px;
    font-weight: 500;
}
.page-title-section {
    padding: 370px 0 110px 0;
    text-align: center;
}
.page-title-section.style1 {
    padding: 150px 0;
}
.page-title-section h1 {
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 74px;
}
.page-title-section p {
    font-size: 13px;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 3px !important;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}
@media screen and (max-width: 1399px) {
    .page-title-section {
    padding: 330px 0 110px 0;
}
}@media screen and (max-width: 991px) {
    .page-title-section {
    padding: 280px 0 100px 0;
}
.page-title-section h1 {
    font-size: 64px;
}
}@media screen and (max-width: 767px) {
    .page-title-section {
    padding: 250px 0 80px 0;
}
.page-title-section h1 {
    font-size: 54px;
    margin-bottom: 14px;
}
.page-title-section p {
    font-size: 11px;
}
}@media screen and (max-width: 575px) {
    .page-title-section {
    padding: 220px 0 60px 0;
}
.page-title-section h1 {
    font-size: 35px;
    margin-bottom: 10px;
}
}.card .card-body {
    color: #6e7676;
}
.card-style01 {
    background-color: #005153;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin-bottom: 35px;
    border-radius: 0.25rem;
}
.card-style01 .img-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    margin-bottom: 35px;
    position: relative;
}
.card-style01 .img-icon .hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
    opacity: 0;
}
.card-style01:hover {
    background-color: #fff;
}
.card-style01:hover .img-icon .hover-img {
    opacity: 1;
}
.card-style01:hover .img-icon .main-img {
    opacity: 0;
}
.card-style01 h3 {
    color: #fff;
}
.card-style01:hover h3 {
    color: #001F3F;
}
.card-style01:hover .img-icon {
    background-color: rgba(255, 185, 34, 0.1);
}
.card-style02 {
    -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);
    -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;
    border-radius: 0;
}
.card-style02 .card-body a {
    line-height: 1.4 !important;
}
.card-style02 .blog-img span {
    position: absolute;
    top: 20px;
    right: 20px;
}
.card-style02 .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: #ffb922;
}
.card-style02 .blog-author {
    font-size: 14px;
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.card-style02 .blog-author .blog-date {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    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-style02 .blog-author .author-name {
    position: absolute;
    width: auto;
    left: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(32px);
    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-style02 .blog-author .author-name a {
    font-weight: 600;
    border-bottom: 1px solid #232323;
    -webkit-transition: .3s;
    transition: .3s;
}
.card-style02 .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-style02:hover .blog-author .blog-date {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
}
.card-style02:hover .blog-author .author-name {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.card-style03 .whyus-img img {
    -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);
    will-change: transform;
}
.card-style03:hover .whyus-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s cubic-bezier(61,  10,  88,  10);
    transition: all 0.5s cubic-bezier(61,  10,  88,  10);
}
.card-style04 .team-img {
    overflow: hidden;
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}
.card-style04 .team-img:after {
    background: #005153;
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    transition: all .3s ease;
}
.card-style04 .team-img .team-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
    opacity: 0;
    z-index: 99;
}
.card-style04 .team-img .team-icon ul {
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;
    transition: all .3s ease;
    padding-left: 0;
}
.card-style04 .team-img .team-icon ul li {
    text-align: center;
    margin: 0 15px;
}
.card-style04 .team-img .team-icon ul li a {
    color: #fff;
    transition: .3s all ease;
}
.card-style04 .card-body {
    transition: all .3s ease;
}
.card-style04 .card-body .team-name {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #E7E7E7;
    border-bottom: 1px solid #E7E7E7;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.card-style04 .card-body .team-arrow {
    padding: 10px;
    border-left: 1px solid #E7E7E7;
}
.card-style04 .card-body .team-arrow i {
    transition: all ease-in-out .3s;
    transform: rotate(-45deg);
    color: #222;
    text-align: right;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    display: inline-flex;
}
.card-style04:hover .team-img:after {
    opacity: 0.9;
}
.card-style04:hover .team-img .team-icon {
    opacity: 1;
    transition: all .5s ease;
}
.card-style04:hover .card-body .team-arrow i {
    transform: rotate(0deg);
    transition: all .3s ease;
    color: #005153;
}
.card-style04 .team-img .team-icon ul li a:hover {
    color: #ffb922;
}
@media screen and (max-width: 1199px) {
    .card-style04 .team-img {
    margin-bottom: 30px;
}
}.card-style05 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    -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);
    will-change: transform;
}
.card-style05 i {
    color: #fff;
    -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);
}
.card-style05 h3 {
    color: #fff;
    -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);
    line-height: 1.2 !important;
}
.card-style05:hover {
    border: 1px solid transparent;
    webkit-transform: translate3d(0,  -3px,  0);
    transform: translate3d(0,  -3px,  0);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 60px 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);
    /* background-color: #fff; */
}
.card-style05:hover i, .card-style05:hover h3 {
    color: #001F3F;
    -webkit-transition: all 350ms cubic-bezier(0.37,  0,  0.63,  1);
    transition: all 350ms cubic-bezier(0.37,  0,  0.63,  1);
}
.card-style05 .img-icon .hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,  -50%);
    opacity: 0;
    -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);
}
.card-style05:hover .img-icon .hover-img {
    opacity: 1;
}
.card-style05:hover .img-icon .main-img {
    opacity: 0;
    -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);
}
.card-style06 .card-body {
    padding: 40px 0;
    display: grid;
    gap: 15px;
    grid-template-columns: 0.25fr 1fr 1fr 0.4fr;
}
.card-style06 .service-no span {
    font-size: 36px;
    font-weight: 500;
    margin-left: -2px;
    -webkit-transition: .3s;
    transition: all .3s;
    line-height: 1;
}
.card-style06 h3 {
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
    -webkit-transition: .5s;
    transition: all .5s;
    margin-bottom: 0;
    position: relative;
}
.card-style06 h3:before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    top: 5px;
    -webkit-transition: .5s;
    transition: all .5s;
    background-color: #001F3F;
}
.card-style06:hover .service-no span {
    color: #ffb922;
}
.card-style06:hover h3 {
    padding-left: 80px;
}
.card-style06:hover h3:before {
    width: 60px;
}
@media screen and (max-width: 991px) {
    .card-style06 .card-body {
    padding: 20px 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
}.card-style07 .card-body {
    background-color: #1e3238;
    transform: translateX(-102%);
    transition: transform 0.65s cubic-bezier(0.19,  1,  0.22,  1);
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%}
.card-style07 .card-body .team-item {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%}
.card-style07 .card-body .team-item .team-content {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
}
.card-style07 .card-body .team-item .team-content h4 {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 1s .35s,  opacity 1s .35s;
    transition-timing-function: cubic-bezier(0.19,  1,  0.22,  1);
    font-size: 19px;
    margin-bottom: 1rem;
}
.card-style07 .card-body .team-item .team-content span {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 1s .35s,  opacity 1s .35s;
    transition-timing-function: cubic-bezier(0.19,  1,  0.22,  1);
    color: #fff;
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
}
.card-style07 .card-body .team-item .team-arrow {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 1s .35s,  opacity 1s .35s;
    transition-timing-function: cubic-bezier(0.19,  1,  0.22,  1);
    font-size: 20px;
    color: #fff;
    margin-inline-start: auto;
}
.card-style07 .card-body .team-item .team-arrow i {
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.card-style07:hover .card-body {
    transform: translateX(0);
}
.card-style07:hover .card-body .team-item .team-content h4 {
    transform: translateX(0);
    opacity: 1;
}
.card-style07:hover .card-body .team-item .team-content span {
    transform: translateX(0);
    opacity: 1;
    font-weight: 400;
    transition-delay: .4s;
}
.card-style07:hover .card-body .team-item .team-arrow {
    transform: translateX(0);
    opacity: 1;
}
@media screen and (max-width: 1599px) {
    .card-style07 .card-body .team-item {
    padding: 0.6rem;
}
}@media screen and (max-width: 1399px) {
    .card-style07 .card-body .team-item .team-content {
    display: block;
}
}.filtering {
    margin-bottom: 40px;
}
.filtering span {
    cursor: pointer;
    font-size: 14.4px;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 6px 15px;
    background: transparent;
    color: #ffb922;
    border: 2px solid #ffb922;
}
.filtering span:last-child {
    margin: 0;
}
.filtering .active {
    color: #ffffff;
    background: #005153;
    border: 2px solid #005153;
}
@media screen and (max-width: 767px) {
    .filtering {
    margin-bottom: 0;
}
.filtering span {
    margin-bottom: 17px;
}
}@media screen and (max-width: 575px) {
    .filtering span {
    padding: 6px 8px;
    margin-right: 5px;
    font-size: 13px;
}
}.lg-backdrop {
    z-index: 99999;
}
.lg-outer {
    z-index: 999999;
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #005153;
}
.lg-progress-bar .lg-progress {
    background-color: #005153;
}
.lg-backdrop.in {
    opacity: 0.85;
}
.portfolio-style-01 {
    position: relative;
}
.portfolio-style-01:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1e1d1d;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -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);
}
.portfolio-style-01 .portfolio-img {
    position: relative;
    overflow: hidden;
    -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);
}
.portfolio-style-01 .portfolio-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: flex-end;
    -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);
}
.portfolio-style-01 .portfolio-inner .portfolio-icon {
    margin-top: 0;
    transform-style: inherit;
    z-index: 1;
    margin-right: 30px;
    margin-left: auto;
    margin-bottom: auto;
    -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);
}
.portfolio-style-01 .portfolio-inner .portfolio-icon i {
    font-size: 28px;
    color: #fff;
    display: inline-block;
    -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);
}
.portfolio-style-01 .portfolio-inner .portfolio-heading {
    font-size: 22px;
    overflow: hidden;
    -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);
}
.portfolio-style-01 .portfolio-inner .portfolio-heading h4 {
    opacity: 0;
    display: block;
    will-change: transform;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s cubic-bezier(0.37,  0.31,  0.2,  0.85);
    transition: all 0.5s cubic-bezier(0.37,  0.31,  0.2,  0.85);
}
.portfolio-style-01 .portfolio-inner .portfolio-subtitle {
    overflow: hidden;
    opacity: 0.6;
    -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);
    color: #fff;
    line-height: 28px;
    font-size: 15px;
}
.portfolio-style-01 .portfolio-inner .portfolio-subtitle span {
    opacity: 0;
    display: block;
    will-change: transform;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.5s cubic-bezier(0.37,  0.31,  0.2,  0.85);
    transition: all 0.5s cubic-bezier(0.37,  0.31,  0.2,  0.85);
}
.portfolio-style-01:hover .portfolio-inner {
    opacity: 1;
}
.portfolio-style-01:hover .portfolio-inner .portfolio-heading h4 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.portfolio-style-01:hover .portfolio-inner .portfolio-subtitle span {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.portfolio-style-01:hover:before {
    opacity: 0.5;
    overflow: visible;
}
.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: #232323;
    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: #232323;
    color: #fff;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
.pagination-style01 ul li a:hover {
    background: #fff;
    color: #232323;
    box-shadow: 0 0 10px rgba(23, 23, 23, 0.15) !important;
}
ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
}
.resp-tabs-list li {
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
}
.resp-tabs-list li:last-child {
    margin-right: 0;
}
.resp-tabs-list li i {
    font-size: 20px;
    padding-right: 5px;
    vertical-align: text-bottom;
}
.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}
.resp-tab-content {
    display: none;
    padding: 20px;
}
.resp-tabs-list li.resp-tab-active {
    border: 1px solid #86bc42;
    border-bottom: none;
    border-color: #86bc42 !important;
    margin-bottom: -1px;
    padding: 12px 14px 14px 14px;
    border-top: 4px solid #86bc42 !important;
    border-bottom: 0px #fff solid;
    border-bottom: none;
    background-color: #fff;
    color: #86bc42;
}
.resp-content-active, .resp-accordion-active {
    display: block;
}
.resp-tab-content {
    border: 1px solid #c1c1c1;
    border-top-color: #c1c1c1;
    float: left;
    width: 100%}
h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 14px;
    border: 1px solid #c1c1c1;
    border-top: 0px solid #c1c1c1;
    margin: 0px;
    padding: 14px 15px;
    float: left;
    width: 100%}
h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #86bc42 !important;
    color: #fff;
}
h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}
.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 30%}
.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0 0 4px;
    cursor: pointer;
    float: none;
}
.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    border: 1px solid #86bc42 !important;
    float: left;
    width: 70%;
    min-height: 250px;
    clear: none;
}
.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
}
.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 14px 15px 15px 11px !important;
    border-top: 1px solid;
    border: 1px solid #86bc42 !important;
    border-left: 4px solid #86bc42 !important;
    margin-bottom: 4px !important;
    border-right: 1px #FFF solid !important;
}
.resp-arrow {
    border-color: transparent #282b2d #282b2d transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}
.resp-easy-accordion h2.resp-accordion {
    display: block;
}
.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}
.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
}
.resp-jfit {
    width: 100%;
    margin: 0px;
}
.resp-tab-content-active {
    display: block;
    border-color: #86bc42 !important;
}
h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1;
}
h2.resp-accordion.resp-tab-active {
    border-color: #86bc42 !important;
}
.tab-style1 .resp-tabs-list li {
    min-width: unset;
    padding: 0 15px;
    font-weight: bold;
    font-size: 16px;
    color: rgba(0, 31, 63, 0.3);
}
.tab-style1 .resp-tab-content {
    padding-bottom: 0;
    border-color: unset !important;
    border: 0;
    position: relative;
    padding-left: 100px;
    padding-top: 30px;
}
.tab-style1 .resp-tab-content .tab-btn {
    transform: rotate(90deg);
    position: absolute;
    left: -40px;
    top: 100px;
}
.tab-style1 .resp-tab-content .tab-btn a {
    padding: 10px 40px;
    font-size: 12px;
}
.tab-style1 .quform-submit-inner {
    float: none;
}
.tab-style1 .resp-tabs-list li.resp-tab-active {
    border: 0;
    border-top: 0 !important;
    color: #005153;
}
@media screen and (max-width: 767px) {
    .tab-style1 .resp-tab-content {
    padding: 25px 30px 25px 80px;
    border: 1px solid #005153 !important;
    border-width: 0 1px 1px 1px !important;
}
.tab-style1 .resp-tab-content .tab-btn {
    top: 95px;
}
}@media screen and (max-width: 575px) {
    .tab-style1 .resp-tab-content {
    padding: 25px 30px;
}
.tab-style1 .resp-tab-content .tab-btn {
    position: unset;
    transform: unset;
}
}@media screen and (max-width: 767px) {
    .tab-style1 ul.resp-tabs-list {
    display: none;
}
.tab-style1 h2.resp-accordion {
    display: block;
}
.tab-style1 h2.resp-accordion i {
    margin-right: 8px;
    font-size: 18px;
}
.tab-style1 h2.resp-accordion.resp-tab-active {
    border-color: #005153 !important;
}
.tab-style1 h2.resp-tab-active {
    background-color: #005153 !important;
}
}.tab-style2.resp-vtabs .resp-tabs-container {
    padding: 0 0 0 10%;
    background: none;
    border: none !important;
}
.tab-style2.resp-vtabs h4 {
    font-size: 18px;
}
.tab-style2.resp-vtabs .resp-tab-content {
    border: none;
    word-wrap: break-word;
    padding: 0;
}
.tab-style2.resp-vtabs .resp-tab-content img {
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.05);
}
.tab-style2.resp-vtabs .resp-tabs-list li {
    padding: 20px 30px !important;
    margin: 0 0 20px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.175);
}
.tab-style2.resp-vtabs .resp-tabs-list li:last-child {
    margin-bottom: 0 !important;
}
.tab-style2.resp-vtabs li.resp-tab-active {
    margin-right: 0 !important;
    padding: 25px 30px !important;
    margin-bottom: 15px !important;
    box-shadow: 0px 12px 15px rgba(140, 152, 164, 0.1);
    border: 2px solid #005153 !important;
    background-color: #005153;
}
.tab-style2.resp-vtabs li.resp-tab-active h3 a {
    color: #fff;
}
.tab-style2 .resp-arrow {
    border-color: transparent #282b2d #282b2d transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}
.tab-style2 h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}
@media screen and (max-width: 1199px) {
    .tab-style2.resp-vtabs .resp-tabs-container {
    padding: 0 0 0 5%}
}@media screen and (max-width: 767px) {
    .tab-style2.resp-vtabs .resp-tabs-container {
    padding: 0;
    width: 100%;
    min-height: auto;
}
.tab-style2.resp-vtabs h4 {
    font-size: 16px;
}
.tab-style2.resp-vtabs .resp-tab-active h4 {
    color: #fff;
}
.tab-style2 h2.resp-accordion {
    border-color: rgba(0, 0, 0, 0.09);
}
.tab-style2.resp-vtabs .resp-tab-content {
    padding: 20px;
    border: 1px solid #005153;
}
.tab-style2 ul.resp-tabs-list {
    display: none;
}
.tab-style2 h2.resp-accordion {
    display: block;
}
.tab-style2 h2.resp-accordion.resp-tab-active {
    border-color: #005153 !important;
    background-color: #005153 !important;
}
.tab-style2 h2.resp-accordion.resp-tab-active h3 a {
    color: #fff;
}
.tab-style2 .accordion-style .card-body {
    padding: 18px 30px 0 26px;
}
.tab-style2 .accordion-style .card:last-child .card-header {
    border-bottom: none;
}
}@media screen and (max-width: 575px) {
    .tab-style2.resp-vtabs h4 {
    font-size: 14px;
}
.tab-style2.resp-vtabs .resp-tab-content {
    padding: 15px;
}
}.tab-style3 ul.resp-tabs-list {
    background: #ffb922;
    display: table;
    padding: 8px;
    border-radius: 0.25rem;
}
.tab-style3 .resp-tabs-list li {
    position: relative;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    list-style: none;
    cursor: pointer;
    min-width: auto;
    color: #ffffff;
    margin-right: 0;
    padding: 8px 40px;
}
.tab-style3 .resp-tabs-list li.resp-tab-active {
    color: #005153;
    border-bottom: unset !important;
    background-color: #fff;
    border: none !important;
    border-radius: 0.25rem;
}
@media screen and (min-width: 992px) {
    .tab-style3 ul.resp-tabs-list {
    text-align: center;
}
.tab-style3 ul.resp-tabs-list.text-left {
    padding-left: 15px;
}
.tab-style3 ul.resp-tabs-list li:last-child {
    margin-right: 0;
}
.tab-style3 .resp-tab-content {
    margin-top: 25px;
    border: none;
    padding: 0;
}
}@media screen and (max-width: 991px) {
    .tab-style3 ul.resp-tabs-list {
    display: none;
}
.tab-style3 h2.resp-accordion {
    display: block;
    border-color: #005153 !important;
    background-color: #005153 !important;
    color: #fff;
}
.tab-style3 .resp-arrow {
    border-color: transparent #ffffff #ffffff transparent;
}
.tab-style3 h2.resp-accordion i {
    margin-right: 8px;
    font-size: 18px;
}
.tab-style3 .resp-accordion-closed {
    display: none !important;
}
.tab-style3 .resp-tab-content {
    background-color: #fff;
    border-color: #005153 !important;
}
}.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #005153;
}
.owl-nav i, .owl-nav span {
    color: #232323;
    font-size: 28px;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.owl-carousel .owl-prev span, .owl-carousel .owl-next span {
    line-height: 1;
    font-size: 14px;
}
.owl-carousel .owl-nav .owl-prev {
    position: relative;
    margin-right: 40px;
}
.owl-carousel .owl-nav .owl-prev:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - 2px);
    right: -27px;
    background-color: #ffb922;
    border-radius: 50em;
}
.whowehelp-carousel.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 7px;
}
.whowehelp-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 8px;
    height: 8px;
    background-color: #fff;
}
.whowehelp-carousel.owl-carousel .owl-prev span, .whowehelp-carousel.owl-carousel .owl-next span {
    color: #fff;
}
.whowehelp-carousel.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}
.service-carousel .service-text {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 50px;
    z-index: 9;
    width: 100%;
    height: 100%}
.service-carousel .service-text h4 a {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2222222222;
}
.service-carousel .service-text span {
    display: block;
    color: #fff;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.service-carousel .service-item .service-btn {
    position: absolute;
    bottom: 60px;
    left: 60px;
}
.service-carousel .service-item .service-btn a {
    opacity: 0;
    transition: all ease .35s;
    transform: translateY(50px);
    z-index: 9;
    position: relative;
}
.service-carousel .service-item:hover .service-btn a {
    opacity: 1;
    transform: translateY(0);
}
.service-carousel .service-item:before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all ease .35s;
}
.service-carousel .service-item:hover:before {
    opacity: 1;
}
.service-carousel .service-item:after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-image: linear-gradient(#000,  transparent);
    opacity: 0.8;
}
@media screen and (max-width: 1399px) {
    .service-carousel .service-text {
    padding: 30px;
}
.service-carousel .service-text h4 a {
    font-size: 23px;
}
.service-carousel .service-item .service-btn {
    bottom: 30px;
    left: 30px;
}
}.testmonial-carousel-one .owl-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-top: 0;
}
.testmonial-carousel-one.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}
.testmonial-carousel-two .owl-nav {
    position: absolute;
    top: -120px;
    right: 620px;
}
.testmonial-carousel-two .owl-prev span, .testmonial-carousel-two .owl-next span {
    color: #fff;
}
.testmonial-carousel-two.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}
@media screen and (max-width: 1599px) {
    .testmonial-carousel-two .owl-nav {
    right: 200px;
}
}@media screen and (max-width: 1399px) {
    .testmonial-carousel-two .owl-nav {
    right: 250px;
}
}@media screen and (max-width: 991px) {
    .testmonial-carousel-two .owl-nav {
    right: -6px;
    top: -100px;
}
}@media screen and (max-width: 575px) {
    .testmonial-carousel-two .owl-nav {
    top: -45px;
}
}.testmonial-carousel-three.owl-theme .owl-dots .owl-dot span {
    height: 2px;
    width: 15px;
}
.testmonial-carousel-three.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    height: 2px;
}
.testmonial-carousel-four.owl-theme .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #18455d;
    text-align: start;
    margin-left: 6.5rem;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot {
    position: relative;
    color: #fff;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot.active {
    color: #ffb922;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot:before {
    counter-increment: dots;
    content: counter(dots, decimal-leading-zero);
    position: absolute;
    right: 8px;
    font-weight: 400;
    z-index: 2;
    font-size: 17px;
    line-height: 1;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    height: 30px;
    width: 30px;
    border-radius: 0;
    position: relative;
    margin: 0 20px 0 0;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    content: '';
    width: 11px;
    height: 1px;
    right: -31px;
    top: 9px;
    background-color: #fff;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot:last-child span:before {
    content: none;
}
.testmonial-carousel-four.owl-theme .owl-dots .owl-dot.active span {
    background-color: transparent;
}
.testmonial-carousel-four.owl-theme .owl-nav {
    position: absolute;
    left: 95px;
    bottom: 15px;
    margin-top: 45px;
}
.testmonial-carousel-four.owl-theme .owl-dots {
    margin-top: 45px;
}
.testmonial-carousel-four.owl-carousel .owl-nav .owl-prev {
    margin-right: 140px;
}
.testmonial-carousel-four.owl-carousel .owl-nav .owl-prev:before {
    display: none;
}
.testmonial-carousel-four.owl-theme .owl-nav span {
    color: #fff;
}
.testmonial-carousel-four.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
}
@media screen and (max-width: 575px) {
    .testmonial-carousel-four.owl-theme .owl-nav {
    left: 0;
}
.testmonial-carousel-four.owl-theme .owl-dots {
    margin-left: 0.6rem;
}
}.client-carousel-one .client-img {
    position: relative;
    display: inherit;
    transition: transform .3s;
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.client-carousel-one .client-img img {
    margin: 0 auto;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: -webkit-transform .2s,  opacity .2s;
    -moz-transition: -moz-transform .2s,  opacity .2s;
    transition: transform .2s,  opacity .2s;
    opacity: 1;
}
.client-carousel-one .client-img:hover img {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0.6;
}
.marquee-section {
    overflow-x: clip;
    overflow-y: visible;
    z-index: 99;
    position: relative;
    margin-bottom: -4%}
.marquee {
    position: relative;
    overflow: hidden;
    width: calc(100% + 60px);
    margin-left: -30px;
}
.marquee h4 {
    font-size: 70px;
}
.slide-har {
    position: relative;
}
.slide-har.st1 .box {
    position: relative;
    -webkit-animation: slide-har 80s linear infinite;
    animation: slide-har 80s linear infinite;
}
@-webkit-keyframes slide-har {
    0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
}@keyframes slide-har {
    0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
}.main-marq {
    position: relative;
    padding: 25px 0;
}
.main-marq:after {
    position: absolute;
    top: -30px;
    bottom: -30px;
    left: -30px;
    right: -30px;
    pointer-events: none;
    background: -webkit-linear-gradient(right,  #181818,  rgba(255, 255, 255, 0) 220px,  rgba(255, 255, 255, 0) calc(100% - 220px),  #181818);
    background: -o-linear-gradient(right,  #181818,  rgba(255, 255, 255, 0) 220px,  rgba(255, 255, 255, 0) calc(100% - 220px),  #181818);
    background: linear-gradient(to left,  #181818,  rgba(255, 255, 255, 0) 220px,  rgba(255, 255, 255, 0) calc(100% - 220px),  #181818);
}
.main-marq .slide-har {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-marq .strok .item h4 {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #1e3238;
}
.main-marq .strok .item h4 a {
    color: transparent !important;
    -webkit-text-stroke: 0.5px #1e3238;
}
.main-marq .non-strok .item h4 {
    color: #1e3238 !important;
    -webkit-text-stroke: 0;
}
.main-marq .non-strok .item h4 a {
    color: #1e3238 !important;
    -webkit-text-stroke: 0 !important;
}
.main-marq .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.main-marq .box .item {
    padding: 0 30px;
}
.main-marq .box .item h4 {
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    font-weight: 600;
    letter-spacing: -5px !important;
    font-size: 150px;
}
.main-marq .box .item h4 .icon {
    margin-bottom: -15px;
}
.main-marq .box .item:nth-of-type(even) h4 {
    color: transparent;
    -webkit-text-stroke: 0.5px #1e3238;
    -webkit-text-stroke-color: #1e3238;
    -webkit-text-fill-color: transparent;
}
.main-marq .box .item:nth-of-type(even) h4 a {
    color: transparent;
    -webkit-text-stroke: 0.5px #1e3238;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
    color: #1e3238;
    -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
    color: #1e3238;
    -webkit-text-stroke: 0;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
    color: transparent;
    -webkit-text-stroke: 1px #1e3238;
}
.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
    color: transparent;
    -webkit-text-stroke: 1px #1e3238;
}
@media screen and (max-width: 1399px) {
    .marquee-section {
    margin-bottom: -5%}
.main-marq .box .item h4 {
    font-size: 130px;
}
}@media screen and (max-width: 1199px) {
    .main-marq .box .item h4 {
    font-size: 100px;
}
}@media screen and (max-width: 991px) {
    .main-marq .box .item h4 {
    font-size: 70px;
}
}@media screen and (max-width: 767px) {
    .marquee-section {
    margin-bottom: -7%}
}@media screen and (max-width: 575px) {
    .marquee-section {
    margin-bottom: -13%}
.main-marq .box .item h4 {
    font-size: 50px;
}
}.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-top: 0 !important;
    border: none;
}
.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
}
.accordion-style .btn-link {
    background: #fff;
    color: #575a7b;
    line-height: 20px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 4px;
    padding: 20px 35px 20px 20px;
    font-weight: 500;
    text-decoration: none;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed:after {
    background: none;
    content: "+";
    right: 15px;
    left: inherit;
    font-size: 20px;
    height: auto;
    transform: none;
    width: auto;
    top: 20px;
    color: #ffb922;
}
.accordion-style .btn-link:after {
    background: none;
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    height: auto;
    transform: none;
    width: auto;
    top: 20px;
    position: absolute;
    color: #ffb922;
}
.accordion-style .card-body {
    padding: 0px 40px 30px 20px;
}
@media screen and (max-width: 991px) {
    .accordion-style .btn-link: after, .accordion-style .btn-link.collapsed:after {
    top: 20px;
}
.accordion-style .card-body {
    padding: 10px 25px 30px 25px;
}
}.accordion-style.style1 .card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 0;
}
.accordion-style.style1 .card-body {
    padding: 0px 40px 30px 0px;
    opacity: 0.8;
}
.accordion-style.style1 .btn-link {
    padding: 20px 35px 20px 0;
    font-weight: 600;
    color: #005153;
}
.accordion-style.style1 .card:last-child {
    border-bottom: 0;
}
.accordion-style.style1 .btn-link.collapsed {
    color: #001F3F;
}
.accordion-style.style1 .btn-link.collapsed:after {
    color: #001F3F;
}
.accordion-style.style1 .btn-link:after {
    color: #005153;
}
.sidebar .widget {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid rgba(220, 224, 229, 0.6);
    padding: 30px;
}
.sidebar .menu li {
    margin-bottom: 10px;
}
.sidebar .menu li:last-child {
    margin-bottom: 0;
}
.sidebar .menu li a:hover, .sidebar .menu li.active a {
    color: #fff;
    background-color: #005153;
    border: 1px solid #005153;
}
.sidebar .menu li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #1e2434;
    text-transform: uppercase;
    background-color: #fff;
    padding: 17px 20px 17px 20px;
    border: 1px solid #e7e3e3;
}
.sidebar .menu li a:hover:before {
    background-color: #ffb922;
}
.sidebar .menu li.active a:before {
    background-color: #ffb922;
}
.sidebar .menu li a::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 100%;
    background-color: #f4f5f4;
    text-align: center;
    font-size: 16px;
    color: #707582;
    transition: all 500ms ease;
}
.blog-tags a {
    border: 1px solid #e8e9e8;
    background-color: #fff;
    padding: 7px 12px;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
}
.blog-tags a:hover {
    border: 1px solid #005153;
    background-color: #005153;
    color: #fff;
}
.contact-widget {
    min-height: 300px;
}
.contact-widget .shape-2 {
    position: absolute;
    bottom: 32px;
    right: 20px;
    background-color: #ffffff;
    z-index: 3;
    padding: 10px;
}
@media screen and (max-width: 575px) {
    .sidebar .widget {
    padding: 22px;
}
}.countdown {
    padding: 0;
}
.countdown li {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-align: center;
    min-width: 120px;
    overflow: hidden;
    margin-right: 10px;
    padding: 15px 10px;
    position: relative;
}
.countdown li:last-child {
    margin-right: 0;
}
.countdown li span {
    font-size: 32px;
    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;
}
.about-style-01 .center-content .exp-number {
    font-size: 120px;
    line-height: 0.8;
    margin-bottom: 35px;
    color: #005153;
    display: inline-block;
}
@media screen and (max-width: 1199px) {
    .about-style-01 .center-content .exp-number {
    font-size: 100px;
}
}@media screen and (max-width: 991px) {
    .about-style-01 .center-content .exp-number {
    font-size: 90px;
}
}@media screen and (max-width: 767px) {
    .about-style-01 .center-content .exp-number {
    font-size: 72px;
}
}.about-style-02 .left-content .icon {
    width: 45px;
    height: 45px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 32px;
}
.about-style-02 .right-content .right-inner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}
@media screen and (max-width: 575px) {
    .about-style-02 .right-content .right-inner {
    display: none;
}
.about-style-02 .left-content .icon {
    margin-right: 25px;
}
}.about-style-03 .about-box .about-img .box {
    position: absolute;
    top: -6px;
    right: -3px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 185, 34, 0.2);
    transition: all 500ms ease;
}
.about-style-03 .about-box:hover .about-img .box {
    background-color: #005153;
}
.about-style-04 .exp-no {
    background: #005153;
    border-radius: 50%;
    position: relative;
    width: 225px;
    height: 225px;
    margin: 0 auto;
}
.about-style-04 .exp-no .counter {
    font-size: 180px;
    line-height: 1;
    text-transform: capitalize;
    color: #fff;
    position: absolute;
    bottom: -23px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
}
.about-style-04 .feature-item:hover h3 a {
    color: #005153;
}
.about-style-04 .feature-item .img-icon .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .4s;
}
.about-style-04 .feature-item:hover .img-icon .hover-img {
    opacity: 1;
}
.about-style-04 .feature-item:hover .img-icon .main-img {
    opacity: 0;
    transition: .4s;
}
@media screen and (max-width: 1199px) {
    .about-style-04 .exp-no {
    width: 190px;
    height: 190px;
}
.about-style-04 .exp-no span {
    font-size: 150px;
    bottom: -18px;
}
}@media screen and (max-width: 767px) {
    .about-style-04 .exp-no {
    margin: unset;
}
}.round-text {
    width: 106px;
    height: 106px;
    position: relative;
    text-transform: uppercase;
    margin: 0 auto 50px;
}
.round-text .coloring {
    font-size: 21px;
    letter-spacing: 1px;
}
.round-text svg {
    -webkit-animation: rotated_circle 12s linear infinite;
    animation: rotated_circle 12s linear infinite;
}
.round-text .about-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,  -50%);
    -ms-transform: translate(-50%,  -50%);
    transform: translate(-50%,  -50%);
    font-size: 55px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
    border: 1px dashed white;
    padding: 25px;
}
@-webkit-keyframes rotated_circle {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}
}@keyframes rotated_circle {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}
}.extra-style01 .right-content .right-icon {
    width: 110px;
    height: 110px;
    background-color: #005153;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 991px) {
    .extra-style01 .right-content .right-icon {
    width: 85px;
    height: 85px;
}
}.contact-01 .contact-form {
    margin-right: -200px;
    z-index: 9;
    position: relative;
}
@media screen and (max-width: 991px) {
    .contact-01 .contact-form {
    margin-right: 0;
}
}.contact-form-two .quform-input .form-control {
    min-height: 52px;
    border-radius: 3px;
    background-color: #F9FAFC;
    padding-left: 20px;
    padding-right: 20px;
}
.fixed-contact-button {
    position: fixed;
    bottom: 0;
    left: 120px;
    display: flex;
    align-items: end;
    padding: 80px 0 10px 0;
    transform: rotate(180deg);
    flex-direction: column;
    z-index: 9;
}
.fixed-contact-button a {
    transform: rotate(180deg) translateX(-40%);
    text-align: start;
    background-color: #ffb922;
    writing-mode: horizontal-tb;
    border-radius: 5em;
    pointer-events: auto;
    border: 0;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    transition: all .3s;
}
.fixed-contact-button .contact-button {
    align-items: center;
    display: inline-flex;
    padding: 1.15em 2.1em;
}
.fixed-contact-button .contact-text {
    position: relative;
    z-index: 3;
}
.fixed-contact-button a .contact-text strong, .fixed-contact-button a .contact-text span.text {
    color: #ffb922;
}
.fixed-contact-button .contact-icon {
    border-radius: 10em;
    order: -1;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 22px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background .3s, color 125ms, box-shadow .3s, border .3s, opacity .25s, transform .5s;
}
.fixed-contact-button a:hover {
    color: #fff;
    background-color: #005153;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.fixed-contact-button a:hover .contact-icon {
    background-color: rgba(255, 255, 255, 0.08);
}
.process-style-01 .process-block {
    perspective: 1200px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.65s cubic-bezier(0.23,  1,  0.32,  1);
}
.process-style-01 .process-block .process-content {
    position: relative;
    z-index: 1;
    transition: all 0.65s cubic-bezier(0.23,  1,  0.32,  1);
}
.process-style-01 .process-block .process-content span {
    font-size: 22px;
    font-weight: 700;
    color: #46484B;
    margin-bottom: 28px;
    display: block;
    transition: all 0.65s cubic-bezier(0.23,  1,  0.32,  1);
    transition-property: transform,  opacity,  filter,  background,  color,  border,  box-shadow,  text-shadow,  fill,  stroke,  border-radius;
}
.process-style-01 .process-block .process-content .process-dot {
    justify-content: center;
    align-items: center;
    transition: all 0.65s cubic-bezier(0.23,  1,  0.32,  1);
    position: relative;
    display: inline-flex;
    width: 7px;
    height: 7px;
    vertical-align: middle;
    margin: 0;
    background-color: #ffb922;
    border-radius: 50%;
    margin-bottom: 25px;
}
.process-style-01 .process-block .process-btn {
    inset-inline-end: auto;
    inset-inline-start: 0%;
    bottom: auto;
    top: 100%;
    width: 100%;
    white-space: inherit;
    transform: translateY(15%);
    opacity: 0;
    padding-top: 30px;
    transition: all 0.65s cubic-bezier(0.23,  1,  0.32,  1);
}
.process-style-01 .process-block:hover {
    transform: translateY(-10px);
}
.process-style-01 .process-block:hover .process-btn {
    opacity: 1;
}
.process-style-01 .process-line {
    top: 186px;
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0, 81, 83, 0.2);
    left: 0;
}
.process-style-01 .process-block:hover .process-content .process-dot {
    opacity: 0;
}
@media screen and (max-width: 1199px) {
    .process-style-01 .process-line {
    top: 156px;
}
}@media screen and (max-width: 991px) {
    .process-style-01 .process-line {
    display: none;
}
}@media screen and (max-width: 575px) {
    .process-style-01 .process-block .process-btn {
    padding-top: 15px;
}
}.testimonials-style-01 .testimonials-block:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -40px;
    left: 0;
    background-color: #E3E3E3;
    z-index: 99;
}
.testimonials-style-01 .testimonials-block:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    top: -40px;
    left: 0;
    background-color: #E3E3E3;
    transition: 0.3s cubic-bezier(0.47,  0.05,  0.5,  0.94);
    z-index: 99;
}
.testimonials-style-01 .testimonials-block:hover:after {
    background-color: #005153;
    width: 100%;
    transition: 0.3s cubic-bezier(0.47,  0.05,  0.5,  0.94) 0.2s;
}
.progress-style1 .progress {
    height: 5px;
}
.progress-style1 .progress .progress-bar {
    background-color: #005153;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    margin-bottom: .5rem;
}
.form-control:focus {
    border-color: #ffb922;
}
.form-check-input:checked {
    border-color: #005153;
    background-color: #005153;
}
.quform-input {
    position: relative;
}
.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1;
}
.quform .quform-elements {
    position: relative;
}
.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 !important;
}
.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 .quform-elements {
    position: relative;
}
.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px;
}
.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-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
}
.newsletter-form .form-control:focus, .newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.newsletter-form .quform-has-error input, .newsletter-form .quform-has-error textarea, .newsletter-form .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}
.newsletter-three .form-control {
    background: transparent;
    border-width: 0 0 1px 0;
    padding: .375rem 1.45rem .375rem 0;
    color: #fff;
}
.newsletter-three .quform-submit-inner {
    position: absolute;
    top: 10px;
    right: 0;
    width: unset;
}
.newsletter-five .form-control {
    min-height: 55px;
    border-radius: 5px;
}
.newsletter-five .quform-submit-inner {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: unset;
}
.newsletter-six .quform-submit-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
}
.newsletter-six button {
    width: 52px;
    height: 52px;
    background-color: #005153;
    border-radius: 50%;
    color: #fff;
    transition: .4s;
}
.newsletter-six button:hover {
    background-color: #ffb922;
}
.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}
.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: transparent;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 1px solid #ffb922;
    border-radius: 50%}
.social-icon-style1 li a:hover, .social-icon-style1 li a:active, .social-icon-style1 li a:focus {
    color: #005153;
    background: #fff;
    border: 1px solid #fff;
}
.social-icon-style1 li:last-child {
    margin-right: 0;
}
.social-icon-style1 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}
.social-icon-style1.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}
.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #ffb922;
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.social-icon-style2 li a:hover, .social-icon-style2 li a:active, .social-icon-style2 li a:focus {
    color: #fff;
    background: #005153;
}
.social-icon-style2 li:last-child {
    margin-right: 0;
}
.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}
.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
}
}.search-form_input {
    color: #005153;
}
.search-frame h4 a:hover {
    color: #005153;
}
.search-frame .search_list .match {
    color: #005153;
}
.search-frame .search_list li:before {
    color: #005153;
}
.search-frame .search_list li+li {
    border-top: 3px solid #005153;
}
.search-frame .search {
    color: #005153;
}
.contact-map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0;
}
.error-wrapper .number-wrap h1 {
    color: #fff;
    font-size: 250px;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width: 1199px) {
    .error-wrapper .number-wrap h1 {
    font-size: 230px;
    margin-bottom: 20px;
}
}@media screen and (max-width: 991px) {
    .error-wrapper .number-wrap h1 {
    font-size: 220px;
    margin-bottom: 15px;
}
}@media screen and (max-width: 767px) {
    .error-wrapper .number-wrap h1 {
    font-size: 200px;
    margin-bottom: 10px;
}
}@media screen and (max-width: 575px) {
    .error-wrapper .number-wrap h1 {
    font-size: 120px;
}
}.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background-color: #f8f9fa;
}
.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;
    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;
    font-weight: 600;
    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;
    font-weight: 600;
    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: #005153;
}
.next-page .image-next:after {
    background-color: #005153;
}
.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;
}
}.vertical-timeline {
    position: relative;
    z-index: 1;
}
.vertical-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 185, 34, 0.4);
    margin-left: -4px;
}
.vertical-timeline:after {
    content: '\e64b';
    font-family: 'themify';
    font-size: 14px;
    position: absolute;
    left: 50%;
    bottom: -19px;
    color: #ffb922;
    margin-left: -6px;
}
.vertical-timeline .timeline-items {
    padding-bottom: 40px;
}
.vertical-timeline .timeline-items:before {
    content: '';
    height: 100%;
    width: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    background-image: linear-gradient(0deg,  #cbcbcb,  #cbcbcb 50%,  transparent 50%,  transparent 100%);
    background-size: 20px 20px;
}
.vertical-timeline .item {
    display: flex;
    position: relative;
    transition: 0.3s;
}
.vertical-timeline .item:hover .count {
    background: #ffb922;
    transition: 0.3s;
}
.vertical-timeline .item:not(:last-child) {
    margin-bottom: 70px;
}
.vertical-timeline .item:nth-child(even) .text {
    margin-left: 45px;
    margin-right: 0px;
    padding-left: 40px;
    padding-right: 50px;
    border-radius: 5px 5px 5px 5px;
}
.vertical-timeline .item:nth-child(odd) .count {
    margin-right: -30px;
}
.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(even) {
    flex-direction: row-reverse;
    text-align: right;
}
.vertical-timeline .item:nth-child(even) .count {
    margin-left: -30px;
}
.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 .icon, .vertical-timeline .timeline-content {
    flex-basis: calc(50% - 1px);
    transition: 0.5s;
    display: flex;
    align-items: center;
}
.vertical-timeline .timeline-circle {
    position: relative;
    margin: 0px 100px 0px 100px;
}
.vertical-timeline .timeline-circle .circle {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 7px);
    left: -7px;
    width: 15px;
    height: 15px;
    background: #ffb922;
}
.vertical-timeline .timeline-circle:before {
    content: '';
    height: 1px;
    position: absolute;
    top: 50%;
    background-image: linear-gradient(90deg,  #cbcbcb,  #cbcbcb 50%,  transparent 50%,  transparent 100%);
    background-size: 20px 20px;
    width: calc(100px + 30px);
}
.vertical-timeline .timeline-circle:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    transition: 0.4s;
    top: calc(50% - 4px);
    left: -4px;
    width: 9px;
    height: 9px;
    background: #fff;
}
.vertical-timeline .text {
    box-shadow: 6px 7px 20px rgba(0, 0, 0, 0.1);
    margin: 0px 45px 0px 0px;
    padding: 31px 40px 33px 50px;
    background-color: #ffffff;
}
.vertical-timeline .count {
    position: relative;
    font-size: 18px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    flex: 1 0 auto;
    color: #fff;
    background: #005153;
}
@media screen and (max-width: 1199px) {
    .vertical-timeline .text {
    margin: 0px 35px 0px 0px;
}
.vertical-timeline .item:nth-child(even) .text {
    margin-left: 35px;
}
}@media screen and (max-width: 991px) {
    .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-left: 20px;
    padding-right: 40px;
}
.vertical-timeline .timeline-circle {
    margin: 0px 30px 0px 30px;
}
}@media screen and (max-width: 767px) {
    .vertical-timeline: before, .vertical-timeline:after, .vertical-timeline .timeline-items:before {
    left: 10px;
}
.vertical-timeline .item:not(:last-child) {
    margin-bottom: 40px;
}
.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:nth-child(even) {
    flex-direction: row;
    text-align: left;
}
.vertical-timeline .item:nth-child(even) .text {
    padding-left: 30px;
    padding-right: 20px;
}
.vertical-timeline .item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
}
.vertical-timeline .item:nth-child(even) .count, .vertical-timeline .item:nth-child(odd) .count {
    margin-right: -20px;
    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, .vertical-timeline .item:nth-child(odd) .icon {
    justify-content: center;
}
}footer {
    word-break: break-word;
}
footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px;
}
footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease;
}
footer .email a:hover:after, footer .email a:active:after, footer .email a:focus:after {
    width: 100%}
footer .email a:hover {
    color: #ffb922;
}
footer .email a:active, footer .email a:focus {
    color: #ffb922;
}
footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -11px;
    right: 0;
    width: 0;
}
footer .phone {
    padding-bottom: 0;
    margin-bottom: 0;
}
footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: white;
}
footer .phone a:hover {
    color: #ffb922;
}
footer .phone a:active, footer .phone a:focus {
    color: #ffb922;
}
@media screen and (max-width: 767px) {
    footer .email a: after {
    bottom: -10px;
}
}.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block;
}
.footer-list {
    list-style: none;
}
.footer-list li {
    margin-bottom: 5px;
}
.footer-list li:last-child {
    margin-bottom: 0;
}
.footer-list li a {
    color: rgba(255, 255, 255, 0.7);
    transition-duration: .2s;
}
.footer-list li a:hover, .footer-list li a:active, .footer-list li a:focus {
    color: #ffb922;
}
.footer-style1 .text-arrow a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    -webkit-transition: 0.35s cubic-bezier(0.04,  0.11,  0.6,  0.97);
    -o-transition: 0.35s cubic-bezier(0.04,  0.11,  0.6,  0.97);
    transition: 0.35s cubic-bezier(0.04,  0.11,  0.6,  0.97);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.footer-style1 .text-arrow a:hover:after {
    -webkit-transform: scaleX(0.9);
    -ms-transform: scaleX(0.9);
    transform: scaleX(0.9);
    -webkit-transition-delay: .34s;
    -o-transition-delay: .34s;
    transition-delay: .34s;
}
.footer-style1 .footer-logo {
    max-width: 234px;
    margin-bottom: 30px;
}
.footer-style1 .bg-img {
    background-size: 73% auto;
    background-repeat: no-repeat;
    background-position: 0 -24px;
}
