@import "https://fonts.googleapis.com/css?family=Poppins:400,400i,500,600,700&amp;display=swap";
@import "https://fonts.googleapis.com/css?family=Cabin:400,400i,500,500i,600,600i,700,700i&amp;display=swap";
body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    font-family: poppins, sans-serif;
    color: #7a7e9a;
}
a {
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: #24416b;
}
a:focus {
    text-decoration: none;
}
button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}
button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #24416b;
    font-family: cabin, sans-serif;
    font-weight: 700;
}
h3 {
    font-size: 20px;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
p {
    font-size: 15px;
    margin-bottom: 15px;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-control{
    height: 50px;
    color: #24416b;
    border: 2px solid #fc0d2d;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
}
.form-control::-webkit-input-placeholder {
    color: #495057;
    font-size: 13px;
}
.form-control:-ms-input-placeholder {
    color: #495057;
    font-size: 13px;
}
.form-control::-ms-input-placeholder {
    color: #495057;
    font-size: 13px;
}
.form-control::placeholder {
    color: #495057;
    font-size: 13px;
}
.form-control:focus {
    color: #000;
    background-color: transparent;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    outline: 0;
    border: 1px solid #09acd9;
}
.form-control:hover:focus,
.form-control:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
textarea.form-control {
    height: auto;
    height: 250px;
}
.ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-70 {
    padding-top: 70px;
}
.pb-70 {
    padding-bottom: 70px;
}
.mb-30 {
    margin-bottom: 30px;
}
.pl-30 {
    padding-left: 30px;
}
.pr-30 {
    padding-right: 30px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-minus-70 {
    margin-top: -70px;
}
.mb-minus-70 {
    margin-bottom: -70px;
}
.ml-30 {
    margin-left: 30px;
}
.mr-30 {
    margin-right: 30px;
}
.fun-blue-bg {
    background-color: #fc0d2d;
}
.go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 15px;
    background-color: #fc0d2d;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.9s;
    transition: 0.9s;
}
.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
}
.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}
.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #09acd9;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.go-top:hover {
    color: #fff;
    background-color: #09acd9;
}
.go-top:hover::before {
    opacity: 1;
    visibility: visible;
}
.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}
.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.go-top:focus {
    color: #fff;
}
.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
}
.page-navigation-area {
    text-align: center;
    margin: 20px auto 0;
    display: table;
}
.page-navigation-area .page-link {
    color: #09acd9;
    background-color: #fff;
    -webkit-box-shadow: 0 0 15px #d0d0d0;
    box-shadow: 0 0 15px #d0d0d0;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    line-height: 24px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 700;
}
.page-navigation-area .page-link i {
    margin-right: -4px;
    font-size: 21px;
}
.page-navigation-area .page-link:hover {
    color: #fff;
    background-color: #09acd9;
    border: 1px solid #09acd9;
}
.page-navigation-area .page-link:focus {
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.page-navigation-area .page-link.page-links i::before {
    margin-left: -4px;
}
.page-navigation-area .page-item {
    padding: 0 8px;
}
.page-navigation-area .page-item:first-child .page-link {
    border-radius: none;
}
.page-navigation-area .page-item:last-child .page-link {
    border-radius: none;
}
.page-navigation-area .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #09acd9;
    border-color: #09acd9;
}
.video-btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 69px;
    text-align: center;
    border-radius: 50%;
    color: #09acd9;
    position: relative;
    top: 3px;
    z-index: 1;
    background-color: #fff;
}
.video-btn i {
    font-size: 30px;
    font-weight: 700;
    padding-left: 4px;
    color: #09acd9;
    position: relative;
    top: 5px;
    left: 0;
}
.video-btn::after,
.video-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    background-color: #fff;
}
.video-btn::before {
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
}
.video-btn::after {
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
}
.video-btn:hover {
    background-color: #09acd9;
}
.video-btn:hover i {
    color: #fff;
}
@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
.default-btn {
    font-size: 16px;
    color: #09acd9;
    padding: 20px 35px;
    line-height: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1;
    text-transform: capitalize;
    border: 1px solid #09acd9;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.default-btn.active {
    background-color: #09acd9;
    border-color: #09acd9;
    color: #fff;
}
.default-btn.active:hover {
    color: #09acd9;
}
.default-btn.active::after {
    width: 100%;
}
.default-btn.active::before {
    border-top: 20px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 20px solid transparent;
    left: -1px;
}
.default-btn.active:hover {
    background-color: transparent;
    border-color: #09acd9;
}
.default-btn.active:hover::before {
    border-top: 20px solid transparent;
    border-left: 20px solid #09acd9;
    border-bottom: 20px solid transparent;
    left: -1px;
}
.default-btn.active:hover::after {
    width: 0;
}
.default-btn::before {
    content: "";
    position: absolute;
    border-right: 0;
    border-top: 20px solid transparent;
    border-left: 20px solid #09acd9;
    border-bottom: 20px solid transparent;
    top: 9px;
    left: -1px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.default-btn::after {
    position: absolute;
    content: "";
    background-color: #09acd9;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}
.default-btn:hover {
    color: #fff;
    border-color: #09acd9;
}
.default-btn:hover::before {
    border-top: 20px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 20px solid transparent;
}
.default-btn:hover::after {
    width: 100%;
}
.read-more {
    line-height: 1;
    color: #09acd9;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: block;
    font-size: 14px;
}
.read-more i {
    position: relative;
    top: 4px;
    font-size: 18px;
    left: 8px;
    width: 20px;
    height: 20px;
    line-height: 19px;
    border-radius: 50%;
    border: 1px solid #09acd9;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.read-more:hover {
    color: #09acd9;
}
.read-more:hover i {
    background-color: #09acd9;
    color: #fff;
}
.circle-read-more i {
    background-color: #fedad0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    color: #09acd9;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    z-index: 1;
}
.circle-read-more i::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #09acd9;
    z-index: -1;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}
.circle-read-more:hover i {
    color: #fff;
}
.circle-read-more:hover i::after {
    -webkit-transform: scale(1);
    transform: scale(1);
    background-color: #09acd9;
}
.section-title {
    max-width: 625px;
    margin: -8px auto 80px;
    text-align: center;
    position: relative;
}
.section-title span {
    text-transform: uppercase;
    color: #09acd9;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}
.section-title h2 {
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
    display: block;
}
.section-title h2::before {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #09acd9;
    margin: auto;
}
.section-title h2::after {
    position: absolute;
    bottom: -25px;
    left: -45px;
    right: 0;
    content: "";
    width: 5px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    -webkit-animation: moveLeftBounces 10s linear infinite;
    animation: moveLeftBounces 10s linear infinite;
}
.section-title h2:last-child {
    margin-bottom: 0;
}
.section-title p {
    margin-bottom: -30px;
}
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}
.preloader .lds-ripple {
    position: relative;
    width: 64px;
    height: 64px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.preloader .lds-ripple div {
    position: absolute;
    border: 4px solid #09acd9;
    opacity: 1;
    border-radius: 50%;
    -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.preloader .lds-ripple div:nth-child(2) {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
@-webkit-keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}
@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}
@-webkit-keyframes moveLeftBounces {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(45px);
        transform: translateX(45px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes moveLeftBounces {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(45px);
        transform: translateX(45px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.bx-fade-left {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.bx-fade-left:hover {
    -webkit-transition: all 1s;
    transition: all 1s;
    -webkit-animation: none;
    animation: none;
}
.bx-fade-right {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.bx-fade-right:hover {
    -webkit-transition: all 1s;
    transition: all 1s;
    -webkit-animation: none;
    animation: none;
}
.nice-select .list {
    width: 100%;
}
.nice-select .option:hover {
    background-color: #09acd9;
    color: #fff;
}
.nice-select .option.selected.focus {
    background-color: #24416b;
    color: #09acd9;
}
.header-area {
    background-color: #fff;
}
.top-header {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}
.top-header .header-left-content img {
    width: 170px;
    position: relative;
    top: 2px;
}
.top-header .header-right-content {
    float: right;
}
.top-header .header-right-content ul li {
    display: inline-block;
    color: #24416b;
    padding-left: 50px;
    position: relative;
    margin-right: 30px;
    top: 8px;
}
.top-header .header-right-content ul li:last-child {
    margin-right: 0;
}
.top-header .header-right-content ul li i {
    color: #09acd9;
    font-size: 20px;
    position: absolute;
    top: -1px;
    left: 0;
    width: 35px;
    height: 35px;
    border: 1px solid #f3ddd0;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}
.top-header .header-right-content ul li span {
    display: block;
    font-size: 12px;
    line-height: 1;
    color: #7a7e9a;
    font-weight: 500;
    margin-bottom: 2px;
}
.top-header .header-right-content ul li a {
    color: #24416b;
    font-size: 13px;
    font-weight: 600;
}
.top-header .header-right-content ul li:hover a {
    color: #09acd9;
}
.top-header .flag-wrap {
    position: relative;
    top: -18px;
    margin-right: 40px;
}
.top-header .flag-wrap .flag-item-top {
    padding-left: 0;
}
.top-header .flag-wrap .flag-item-top .flag-bar {
    position: relative;
}
.top-header .flag-wrap .flag-item-top .flag-bar img {
    width: 40px;
}
.top-header .flag-wrap .flag-item-top .flag-bar span {
    position: absolute;
    top: 13px;
    left: 30px;
    color: #24416b;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 15px;
    font-weight: 500;
    padding-left: 20px;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom {
    position: absolute;
    bottom: -255px;
    padding: 20px !important;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background-color: #fff;
    width: 250px;
    left: -158px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    top: -8px;
    right: 57px;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item {
    margin-bottom: 10px;
    padding-left: 0;
    margin-right: 0;
    display: block;
    position: unset;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item:last-child {
    margin-bottom: 0;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link img {
    width: 20px;
    margin-right: 5px;
}
.top-header .flag-wrap .flag-item-top .flag-item-bottom .flag-item .flag-link:hover {
    color: #09acd9;
}
.top-header .flag-wrap .flag-item-top:hover .flag-bar span {
    color: #09acd9;
}
.top-header .flag-wrap .flag-item-top:hover .flag-item-bottom {
    visibility: visible;
    opacity: 1;
    bottom: -260px;
}
.prevoz-nav-style .navbar-area .navbar-brand {
    display: none;
}
.prevoz-nav-style .navbar-area .main-nav {
    position: unset;
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 16px;
    color: #24416b;
    text-transform: capitalize;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-left: 0;
    margin-right: 30px;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a i {
    font-size: 25px;
    line-height: 0;
    position: relative;
    top: 6px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    color: #09acd9;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item a.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item:hover a {
    color: #09acd9;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item:hover a i {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 0;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu::before {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    top: -8px;
    left: 20px;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 14px;
    color: #24416b;
    position: relative;
    padding: 6px 15px;
    border-bottom: 1px dashed #eee;
    margin-left: 0;
    margin-right: 0;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #09acd9;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
    color: #09acd9;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover::before {
    width: 100%;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover i {
    opacity: 1;
    margin-left: 145px;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #09acd9;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
    opacity: 0;
    position: relative;
    top: 6px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all 1s;
    transition: all 1s;
    margin-left: 0;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a i {
    opacity: 1;
    margin-left: 145px;
    color: #09acd9;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: 105%;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu::before {
    position: absolute;
    width: 0;
    height: 0;
    content: "";
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 8px solid transparent;
    top: 35px;
    left: -11px;
    -webkit-transform: rotate(-86deg);
    transform: rotate(-86deg);
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
}
.prevoz-nav-style .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a::before {
    display: none;
}
.prevoz-nav-style .navbar-area.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
    background-color: #313538;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100% !important;
}
.prevoz-nav-style .dropdown-toggle::after {
    display: none;
}
.prevoz-nav-style .others-option .search-wrap {
    display: inline-block;
    position: relative;
    top: 3px;
    right: 15px;
}
.prevoz-nav-style .others-option .search-wrap a {
    color: #24416b;
}
.prevoz-nav-style .others-option .search-wrap a i {
    font-size: 23px;
    line-height: 1;
}
.prevoz-nav-style .others-option .search-wrap a:hover {
    color: #09acd9;
}
.prevoz-nav-style .others-option .sidebar-menu {
    background-color: transparent;
    cursor: pointer;
    padding-right: 0;
}
.prevoz-nav-style .others-option .sidebar-menu i {
    font-size: 21px;
    color: #24416b;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.prevoz-nav-style .others-option .sidebar-menu i:hover {
    color: #09acd9;
}
.prevoz-slider-area .owl-next {
    position: absolute;
    top: 50%;
    right: 30px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.prevoz-slider-area .owl-next i {
    background-color: #09acd9;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    border-radius: 4px;
}
.prevoz-slider-area .owl-next i:hover {
    background-color: #09acd9 !important;
}
.prevoz-slider-area .owl-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.prevoz-slider-area .owl-prev i {
    background-color: #09acd9 !important;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    border-radius: 4px;
}
.prevoz-slider-area .owl-prev i:hover {
    background-color: #09acd9 !important;
}
.prevoz-slider-area:hover .owl-prev {
    opacity: 1;
}
.prevoz-slider-area:hover .owl-next {
    opacity: 1;
}
.prevoz-slider-area .owl-theme .owl-nav {
    margin-top: 0 !important;
}
.prevoz-slider-area .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}
.prevoz-slider-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.prevoz-slider-item .prevoz-slider-text {
    text-align: center;
    margin-top: -80px;
}
.prevoz-slider-item .prevoz-slider-text span {
    color: #fff;
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
}
.prevoz-slider-item .prevoz-slider-text h1 {
    font-size: 80px;
    color: #fff;
    margin-bottom: 30px;
}
.prevoz-slider-item .prevoz-slider-text p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 45px;
}
.prevoz-slider-item .prevoz-slider-text .slider-btn .default-btn {
    margin: 0 20px;
}
.prevoz-slider-item .prevoz-slider-text .slider-btn .default-btn.white {
    color: #fff;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.overflow-hidden {
    overflow: hidden;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one span {
    -webkit-animation: 1s 0.1s fadeInUpBig both;
    animation: 1s 0.1s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one .video-btn-animat {
    -webkit-animation: 1s 0.1s fadeInUpBig both;
    animation: 1s 0.1s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one h1 {
    -webkit-animation: 2s 0.2s fadeInUpBig both;
    animation: 2s 0.2s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one p {
    -webkit-animation: 3s 0.3s fadeInUpBig both;
    animation: 3s 0.3s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one .slider-btn {
    -webkit-animation: 4s 0.4s fadeInUpBig both;
    animation: 4s 0.4s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.one .tracking-body {
    -webkit-animation: 4s 0.4s fadeInUpBig both;
    animation: 4s 0.4s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two span {
    -webkit-animation: 2s 0.2s fadeInDownBig both;
    animation: 2s 0.2s fadeInDownBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two .video-btn-animat {
    -webkit-animation: 2s 0.2s fadeInDownBig both;
    animation: 2s 0.2s fadeInDownBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two h1 {
    -webkit-animation: 2s 0.2s fadeInLeft both;
    animation: 2s 0.2s fadeInLeft both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two p {
    -webkit-animation: 2s 0.2s fadeInRight both;
    animation: 2s 0.2s fadeInRight both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two .slider-btn {
    -webkit-animation: 2s 0.2s fadeInUpBig both;
    animation: 2s 0.2s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.two .tracking-body {
    -webkit-animation: 2s 0.2s fadeInUpBig both;
    animation: 2s 0.2s fadeInUpBig both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three span {
    -webkit-animation: 2s 0.2s fadeInDown both;
    animation: 2s 0.2s fadeInDown both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three .video-btn-animat {
    -webkit-animation: 2s 0.2s fadeInDown both;
    animation: 2s 0.2s fadeInDown both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three h1 {
    -webkit-animation: 2s 0.2s fadeInDown both;
    animation: 2s 0.2s fadeInDown both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three p {
    -webkit-animation: 2s 0.2s fadeInUp both;
    animation: 2s 0.2s fadeInUp both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three .slider-btn {
    -webkit-animation: 2s 0.2s fadeInUp both;
    animation: 2s 0.2s fadeInUp both;
}
.prevoz-slider-area .owl-item.active .prevoz-slider-text.three .tracking-body {
    -webkit-animation: 2s 0.2s fadeInUp both;
    animation: 2s 0.2s fadeInUp both;
}
.slider-item-bg-1 {
    background-image: url(../img/slider/1.html);
}
.slider-item-bg-2 {
    background-image: url(../img/slider/2.html);
}
.slider-item-bg-3 {
    background-image: url(../img/slider/3.html);
}
.slider-item-bg-4 {
    background-image: url(../img/slider/4.html);
}
.slider-item-bg-5 {
    background-image: url(../img/slider/5.html);
}
.slider-item-bg-6 {
    background-image: url(../img/slider/6.html);
}
.slider-item-bg-7 {
    background-image: url(../south_sliders/slider1.jpg);
}
.slider-item-bg-8 {
    background-image: url(../south_sliders/slide2.jpg);
}
.slider-item-bg-9 {
    background-image: url(../south_sliders/slide3.jpg);
}
.slider-item-bg-10 {
    background-image: url(../img/slider/10.html);
}
.slider-item-bg-11 {
    background-image: url(../img/slider/11.html);
}
.slider-item-bg-12 {
    background-image: url(../img/slider/12.html);
}
.slider-item-bg-13 {
    background-image: url(../img/slider/13.html);
}
.slider-item-bg-14 {
    background-image: url(../img/slider/14.html);
}
.slider-item-bg-15 {
    background-image: url(../img/slider/15.html);
}
.track-area {
    position: relative;
    z-index: 1;
}
.tab .tabs_item {
    display: none;
    padding: 50px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.tab .tabs_item:first-child {
    display: block;
}
.tab.quote-list-tab .tabs {
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.tab.quote-list-tab .tabs li {
    display: inline-block;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
}
.tab.quote-list-tab .tabs li.current {
    border-bottom: 2px solid #09acd9;
}
.tab.quote-list-tab .tabs li.current a {
    color: #09acd9;
}
.tab.quote-list-tab .tabs li a {
    color: #24416b;
    position: relative;
    padding-left: 35px;
}
.tab.quote-list-tab .tabs li a i {
    font-size: 25px;
    position: absolute;
    left: 0;
    top: -6px;
}
.tab.quote-list-tab .tabs_item .col-lg-8 {
    margin-top: -10px;
}
.tab.quote-list-tab .tabs_item h3 {
    font-size: 15px;
    margin-bottom: 20px;
}
.tab.quote-list-tab .tabs_item .nice-select {
    width: 100%;
    border-radius: 0;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.tab.quote-list-tab .tabs_item .nice-select:after {
    height: 8px;
    width: 8px;
    right: 23px;
    border-color: #24416b;
}
.tab.quote-list-tab .tabs_item .nice-select .current {
    position: relative;
    top: 4px;
    color: #495057;
}
.tab.quote-list-tab .tabs_item .form-group {
    margin-bottom: 30px;
}
.tab.quote-list-tab .tabs_item .form-group .form-control::-webkit-input-placeholder {
    line-height: 1;
    position: relative;
    top: -1px;
}
.tab.quote-list-tab .tabs_item .form-group .form-control:-ms-input-placeholder {
    line-height: 1;
    position: relative;
    top: -1px;
}
.tab.quote-list-tab .tabs_item .form-group .form-control::-ms-input-placeholder {
    line-height: 1;
    position: relative;
    top: -1px;
}
.tab.quote-list-tab .tabs_item .form-group .form-control::placeholder {
    line-height: 1;
    position: relative;
    top: -1px;
}
.tab.quote-list-tab .default-btn {
    width: 100%;
    background-color: transparent;
}
.tab.quote-list-tab .radio span {
    position: relative;
    top: -2px;
    color: #495057;
}
.tab.quote-list-tab .mb {
    margin-bottom: 30px !important;
}
.tab.quote-list-tab textarea.form-control {
    height: auto;
    height: 143px;
    padding: 20px;
}
.track-img {
    background-image: url(../img/track-img.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.single-check {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.single-check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.single-check input:checked ~ .checkmark {
    background-color: #09acd9;
}
.single-check input:checked ~ .checkmark:after {
    display: block;
}
.single-check:hover input ~ .checkmark {
    background-color: #09acd9;
}
.single-check .checkmark {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-check .checkmark:after {
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}
.checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 12px;
    width: 12px;
    background-color: #d8d8d8;
    border-radius: 50%;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.about-content span {
    text-transform: uppercase;
    color: #09acd9;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-top: -8px;
    margin-bottom: 10px;
}
.about-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
}
.about-content h2::before {
    position: absolute;
    bottom: -22px;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #09acd9;
}
.about-content h2::after {
    position: absolute;
    bottom: -22px;
    left: 0;
    content: "";
    width: 5px;
    height: 2px;
    background-color: #fff;
    -webkit-animation: moveLeftBounces 10s linear infinite;
    animation: moveLeftBounces 10s linear infinite;
}
.about-content h2:last-child {
    margin-bottom: 0;
}
.about-content p {
    margin-bottom: 30px;
}
.about-img {
    position: relative;
}
.about-img .about-quatre {
    position: absolute;
    top: 50%;
    right: -40px;
    background-color: #09acd9;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
}
.about-img .about-quatre i {
    font-size: 50px;
    color: #fff;
    line-height: 80px;
}
.what-offer-area {
    background-image: url(../img/offer-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.what-offer-area::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-color: #fff;
}
.what-offer-area .section-title span {
    color: #fff;
}
.what-offer-area .section-title h2 {
    color: #fff;
}
.what-offer-area .section-title h2::before {
    background-color: #fff;
}
.what-offer-area .section-title h2::after {
    background-color: #24416b;
}
.what-offer-area .col-lg-3:last-child .single-offer {
    border-right: none;
}
.single-offer {
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border-right: 1px solid #eee;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 30px;
}
.single-offer .icon {
    font-size: 50px;
    color: #09acd9;
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
}
.single-offer h3 {
    margin-bottom: 15px;
}
.single-offer p {
    margin-bottom: 20px;
}
.single-offer:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    z-index: 1;
    position: relative;
}
.single-offer:hover .circle-read-more i {
    background-color: #09acd9;
    color: #fff;
}
.choose-us-area .choose-tab-wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 50px;
}
.choose-us-area .choose-tab-wrap h2 {
    margin-bottom: 30px;
    font-size: 30px;
}
.choose-us-area .choose-tab-wrap .choose-tab .tabs {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 33px;
}
.choose-us-area .choose-tab-wrap .choose-tab .tabs li {
    padding: 0;
    margin-right: 30px;
    padding-bottom: 10px;
}
.choose-us-area .choose-tab-wrap .choose-tab .tabs li a {
    padding-left: 0 !important;
}
.choose-us-area .choose-tab-wrap .choose-tab .default-btn {
    width: unset !important;
    margin-top: 20px;
}
.choose-us-area .choose-tab-wrap .tab .tabs_item {
    padding: 0 !important;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.choose-img {
    background-image: url(../img/choose-img.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.choose-img.choose-img-four {
    background-image: url(../img/choose-img-four.html);
}
.single-counter {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}
.single-counter i {
    font-size: 60px;
    display: inline-block;
    margin-bottom: 8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    left: 0;
    color: #fff;
    line-height: 1;
}
.single-counter h2 {
    margin-bottom: 4px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #fff;
}
.single-counter p {
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: #fff;
}
.single-service {
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    margin-bottom: 30px;
}
.single-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/service/1.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.single-service .service-content-wrap {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-service .service-content-wrap .icon {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 20px;
    color: #09acd9;
}
.single-service .service-content-wrap h3 {
    margin-bottom: 15px;
}
.single-service .service-heading {
    text-align: center;
    padding: 20px;
    background-color: #09acd9;
    position: absolute;
    bottom: 56px;
    left: 0;
    right: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    bottom: -30px;
    -webkit-transform: scale(0);
    transform: scale(0);
    margin-right: 15px;
    margin-left: 15px;
}
.single-service .service-heading h3 {
    color: #fff;
    margin-bottom: 15px;
    margin-top: -4px;
}
.single-service .service-heading .circle-read-more i {
    background-color: #fff;
    color: #09acd9;
}
.single-service .service-heading .circle-read-more i::after {
    background-color: #fedad0;
}
.single-service:hover {
    background-color: transparent;
}
.single-service:hover .service-heading {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.single-service:hover .service-content-wrap {
    -webkit-transform: scale(0);
    transform: scale(0);
}
.service-all {
    margin-top: 20px;
}
.service-all p a {
    color: #09acd9;
    border-bottom: 1px solid #09acd9;
}
.col-lg-4:nth-child(2) .single-service::before {
    background-image: url(../img/service/2.html);
}
.col-lg-4:nth-child(3) .single-service::before {
    background-image: url(../img/service/1.html);
}
.began-top-wrap {
    background-image: url(../img/began-bg.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.began-top-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #fff;
}
.began-wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 0 15px;
    margin: 30px;
}
.began-wrap h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 50px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}
.began-wrap .single-began {
    text-align: center;
    padding: 30px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.began-wrap .single-began i {
    color: #09acd9;
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
}
.began-wrap .single-began h3 {
    margin-bottom: 0;
}
.began-wrap .single-began:hover {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    border: none;
}
.began-wrap .col-lg-4:nth-child(1) .single-began {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.began-wrap .col-lg-4:nth-child(2) .single-began {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.began-wrap .col-lg-4:nth-child(3) .single-began {
    border-bottom: 1px solid #eee;
}
.began-wrap .col-lg-4:nth-child(4) .single-began {
    border-right: 1px solid #eee;
}
.began-wrap .col-lg-4:nth-child(5) .single-began {
    border-right: 1px solid #eee;
}
.testimonials-area .section-title span {
    color: #fff;
}
.testimonials-area .section-title h2 {
    color: #fff;
}
.testimonials-area .section-title h2::before {
    background-color: #fff;
}
.testimonials-area .section-title h2::after {
    background-color: #24416b;
}
.testimonials-area .owl-theme .owl-dots .owl-dot {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 20px;
}
.testimonials-area .owl-theme .owl-dots .owl-dot span {
    background-color: #587aad;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0 8px;
    width: 25px;
    height: 5px;
}
.testimonials-area .owl-theme .owl-dots .owl-dot span:hover {
    background-color: #fff;
}
.testimonials-area .owl-theme .owl-dots .owl-dot.active span {
    background-color: #fff !important;
}
.testimonials-wrap {
    position: relative;
    padding-left: 280px;
}
.testimonials-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: unset !important;
}
.testimonials-wrap .testimonials-content {
    background-color: #fff;
    padding: 37px;
}
.testimonials-wrap .testimonials-content h3 {
    margin-bottom: 18px;
}
.testimonials-wrap .testimonials-content ul {
    line-height: 1;
}
.testimonials-wrap .testimonials-content ul li {
    display: inline-block;
}
.testimonials-wrap .testimonials-content ul li i {
    color: #09acd9;
}
.brand-area .section-title {
    text-align: left;
    max-width: unset;
    margin-bottom: 20px;
}
.brand-area .brand-btn {
    float: right;
    position: relative;
    top: 76px;
}
.brand-item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 15px;
    margin-left: 10px;
    margin-right: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
}
.brand-item img {
    width: unset !important;
    margin: auto;
}
.single-blog {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.single-blog img {
    border-radius: 4px;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.single-blog .blog-content {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    top: -10px;
    border-radius: 4px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-blog .blog-content ul {
    margin-bottom: 15px;
}
.single-blog .blog-content ul li {
    display: inline-block;
    padding-right: 10px;
    position: relative;
    color: #7a7e9a;
    font-size: 13px;
}
.single-blog .blog-content ul li img {
    margin-right: 5px;
    border-radius: 50%;
}
.single-blog .blog-content ul li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 1px;
    height: 15px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
    background-color: #24416b;
}
.single-blog .blog-content ul li a {
    color: #09acd9;
}
.single-blog .blog-content ul li:first-child::before {
    display: none;
}
.single-blog .blog-content h3 a {
    color: #24416b;
    margin-bottom: 8px;
}
.single-blog:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.single-blog:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.single-blog:hover .blog-content {
    margin: 0;
    padding-left: 30px;
    padding-right: 30px;
}
.single-blog span {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #09acd9;
    padding: 8px 10px;
    line-height: 1;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
}
.tracking-number-area {
    background-image: url(../img/tracking-bg.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.tracking-body {
    position: relative;
}
.tracking-body .tracking-wrap .input-tracking {
    height: 70px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 4px;
    border: none;
}
.tracking-body .tracking-wrap .input-tracking:focus {
    border: 1px solid #09acd9;
}
.tracking-body .tracking-wrap .default-btn {
    position: absolute;
    top: 6px;
    right: 6px;
}
.office-map-area {
    background-image: url(../img/map-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.office-map-area .container {
    position: relative;
}
.office-map-area .container .map-location {
    max-width: 300px;
    margin-left: auto;
    background-color: #fff;
}
.office-map-area .container .map-location h3 {
    background-color: #09acd9;
    color: #fff;
    margin-bottom: 0;
    padding: 15px 30px;
}
.office-map-area .container .map-location h3 i {
    position: relative;
    top: 2px;
    margin-right: 4px;
    display: inline-block;
}
.office-map-area .container .map-location ul {
    padding: 15px 30px 30px;
}
.office-map-area .container .map-location ul li {
    margin-bottom: 15px;
}
.office-map-area .container .map-location ul li:last-child {
    margin-bottom: 0;
}
.office-map-area .container .map-location ul .color {
    color: #09acd9;
}
.single-widget {
    margin-bottom: 30px;
}
.single-widget h3 {
    margin-bottom: 20px;
    font-size: 25px;
}
.single-widget ul li {
    margin-bottom: 15px;
    position: relative;
    border-bottom: 1px dashed #eee;
}
.single-widget ul li:last-child {
    margin-bottom: 0;
}
.single-widget ul li a {
    color: #2b2b2b;
}
.single-widget ul li::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #09acd9;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-widget ul li:hover a {
    color: #09acd9;
}
.single-widget ul li:hover::before {
    width: 100%;
}
.footer-bottom-area {
    padding: 30px 0;
}
.single-widget-bottom ul li {
    display: inline-block;
    padding-right: 15px;
}
.single-widget-bottom ul li a {
    color: #fff;
    position: relative;
}
.single-widget-bottom ul li a::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -10px;
    width: 5px;
    height: 5px;
    background-color: #09acd9;
    border-radius: 50%;
}
.single-widget-bottom ul li a:hover {
    color: #09acd9;
}
.single-widget-bottom ul li:last-child {
    padding-right: 0;
}
.single-widget-bottom ul li:last-child a::before {
    display: none;
}
.single-widget-bottom p {
    text-align: center;
    color: #fff;
}
.single-widget-bottom p a {
    color: #09acd9;
}
.single-widget-bottom p i {
    position: relative;
    top: 1px;
}
.single-widget-bottom .social-link {
    float: right;
}
.single-widget-bottom .social-link li {
    padding-right: 3px;
}
.single-widget-bottom .social-link li a::before {
    display: none;
}
.single-widget-bottom .social-link li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #3867ad;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-widget-bottom .social-link li a:hover i {
    background-color: #09acd9;
}
.sidebar-modal {
    position: relative;
}
.sidebar-modal .navbar-nav li a {
    padding: 10px 0 10px 15px;
}
.sidebar-modal .modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 450px;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
.sidebar-modal .modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    background-color: #fff;
}
.sidebar-modal .modal.right .modal-body {
    padding: 30px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget {
    margin-bottom: 35px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
    color: #24416b;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .title::before {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 70px;
    height: 2px;
    border-radius: 5px;
    background: #09acd9;
    content: "";
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget:last-child {
    margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul {
    padding: 0;
    margin: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li {
    margin-bottom: 10px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li:last-child {
    margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a {
    font-size: 14px;
    color: #24416b;
    font-weight: 500;
    text-transform: capitalize;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul li a:hover {
    color: #09acd9;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li {
    position: relative;
    font-weight: 500;
    padding-left: 45px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 14px;
    color: #24416b;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li span {
    font-size: 13px;
    display: block;
    font-weight: 400;
    color: #818992;
    margin-top: 5px;
    text-transform: initial;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 29px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #24416b;
    border-radius: 4px;
    font-size: 15px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:hover i {
    color: #fff;
    background: #09acd9;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget ul.contact-info li:last-child {
    margin-bottom: 0;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list {
    text-align: left;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li {
    display: inline-block;
    padding-right: 5px;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i {
    width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    border-radius: 4px;
    color: #fff;
    background-color: #24416b;
    font-size: 12px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a i:hover {
    background-color: #09acd9;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li:hover {
    color: #09acd9;
}
.sidebar-modal .modal.right .modal-body .sidebar-modal-widget .social-list li a:hover {
    color: #fff;
}
.sidebar-modal .modal.right.fade.show .modal-dialog {
    right: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: lightSpeedIn 1000ms linear;
    animation: lightSpeedIn 1000ms linear;
}
.sidebar-modal .modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-animation: lightSpeedIn 1000ms linear;
    animation: lightSpeedIn 1000ms linear;
}
.sidebar-modal .modal-header {
    display: inline;
    padding: 0;
    border: none;
}
.sidebar-modal .modal-header .close {
    height: 30px;
    width: 30px;
    color: #09acd9;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: none;
    opacity: 1;
}
.sidebar-modal .modal-header .close i::before {
    margin-left: 0;
    font-size: 20px;
}
.sidebar-modal .modal-header h2 {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
}
.sidebar-modal button:focus {
    outline: 0;
}
.search-wrap .search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 999999;
}
.search-wrap .search .form-control {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 30%;
    color: #09acd9;
    background: #ffff;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    margin-top: -40px;
    padding: 10px;
    outline: none;
    border: 2px solid #fff;
    height: 60px;
    border-radius: 5px;
}
.search-wrap .search .form-control:focus {
    color: #000;
    background-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.search-wrap .search .default-btn {
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    margin: auto;
}
.search-wrap .search .default-btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.search-wrap .search .default-btn:hover {
    background-color: #09acd9;
}
.search-wrap .search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    background-color: #09acd9;
    border-color: #09acd9;
    opacity: 1;
    padding: 10px 17px;
    font-size: 25px;
}
.search-wrap .search .close:hover {
    background-color: body-color;
    color: #fff !important;
    opacity: 1 !important;
}
.search-wrap .search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}
.search-wrap .search.open::before {
    content: "";
    position: absolute;
    background: #000;
    width: 100%;
    height: 1000%;
    opacity: 0.9;
    top: 0;
    left: 0;
}
.header-style-two {
    position: relative;
}
.header-style-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 100%;
    background-color: #09acd9;
    -webkit-clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 85% 1%, 100% 100%, 0% 100%);
}
.what-offer-area-two {
    position: relative;
    z-index: 1;
}
.about-area-two .about-content {
    max-width: 540px;
    margin-left: auto;
}
.about-area-two .about-img {
    position: relative;
    background-image: url(../south_about/a2.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.about-area-two .about-img .about-list {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    width: 300px;
    padding: 30px;
    max-width: 100%;
}
.about-area-two .about-img .about-list h3 {
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
.about-area-two .about-img .about-list ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.about-area-two .about-img .about-list ul li:last-child {
    margin-bottom: 0;
}
.about-area-two .about-img .about-list ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    color: #fff;
    width: 20px;
    height: 20px;
    background-color: #09acd9;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    border-radius: 50%;
}
.counter-area-two {
    background-image: url(../img/counter-bg.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
    z-index: 1;
}
.counter-area-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #062b47;
    opacity: 0.8;
    z-index: -1;
}
.service-area-two .single-service .service-heading {
    background-color: #09acd9;
    position: absolute;
    bottom: 0 !important;
    left: 0;
    right: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    margin-left: 0;
}
.brand-area-two {
    background-color: #09acd9;
}
.brand-area-two .brand-item {
    background-color: transparent;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}
.brand-area-two .brand-item .brand-overly {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.brand-area-two .brand-item:hover .brand-overly {
    top: 10px;
}
.single-team {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.single-team:before {
    content: "";
    position: absolute;
    left: 170%;
    z-index: 1;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    -webkit-transition: 0.8s;
    transition: 0.8s;
}
.single-team img {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 1s;
    transition: 1s;
}
.single-team .team-content {
    position: absolute;
    background: #24416b;
    width: 100%;
    bottom: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: perspective(300px) rotateX(90deg);
    transform: perspective(300px) rotateX(90deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    text-align: center;
    padding: 10px;
}
.single-team .team-content h3 {
    margin: 0;
    color: #fff;
}
.single-team .team-content span {
    color: #fff;
    font-size: 13px;
}
.single-team ul {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-team ul li {
    background: #24416b;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid #19345a;
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.single-team ul li:hover {
    background-color: #09acd9;
}
.single-team ul li a {
    color: #fff;
}
.single-team ul li:nth-child(1) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.single-team ul li:nth-child(2) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.single-team ul li:nth-child(3) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.single-team ul li:nth-child(4) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.single-team:hover:before {
    left: -170%;
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.single-team:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.single-team:hover .team-content {
    -webkit-transform: perspective(300px) rotateX(0deg);
    transform: perspective(300px) rotateX(0deg);
}
.single-team:hover ul li {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.track-area-two {
    background-image: url(../south_background/back1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height:auto;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}
.track-area-two::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24416b;
    opacity: 0.5;
}
.office-map-area-two .container .map-location {
    top: -385px;
}
.validation-danger {
    color: #fff !important;
}
.validation-success {
    color: #28a745 !important;
}
.subscribe-area {
    background-color: #09acd9;
}
.prevoz-slider-area-two .prevoz-slider-text {
    max-width: 800px;
    text-align: left;
}
.header-style-three .header-left-content img {
    width: unset;
    padding: 0 15px;
}
.header-style-three .flag-wrap {
    top: -27px;
}
.header-style-three .header-left-content a {
    position: relative;
    z-index: 1;
}
.header-style-three .header-left-content a::before {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 110px;
    background-color: #24416b;
    content: "";
    z-index: -1;
}
.header-style-three .header-right-content ul li {
    top: 17px;
}
.header-style-three .header-right-content .get-quote .default-btn {
    padding: 10px 20px;
    position: relative;
    top: -9px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}
.header-style-three .header-right-content .get-quote .default-btn:hover {
    color: #09acd9;
}
.header-style-three .header-right-content .get-quote .default-btn::before {
    border-top: 10px solid transparent;
    border-left: 10px solid #fff;
    border-bottom: 10px solid transparent;
    top: 8px;
}
.header-style-three .header-right-content .get-quote .default-btn.active:hover::before {
    border-top: 10px solid transparent;
    border-left: 10px solid #09acd9;
    border-bottom: 10px solid transparent;
    left: -1px;
}
.prevoz-nav-style-three .navbar-area .main-nav {
    background-color:#fc0d2d;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a:before {
    content: "";
    position: absolute;
    top: -55px;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    display: none;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
    color: #fff;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a:hover:before {
    top: -30px;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    color: #fff;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item a.active:before {
    top: -30px;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
    display: none;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item:hover a {
    color: #fff;
}
.prevoz-nav-style-three .navbar-area .main-nav nav .navbar-nav .nav-item:hover a:before {
    top: -30px;
}
.prevoz-nav-style-three .others-option .search-wrap a {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-three .others-option .search-wrap a:before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.prevoz-nav-style-three .others-option .search-wrap a:hover {
    color: #fff;
}
.prevoz-nav-style-three .others-option .search-wrap a:hover:before {
    top: -35px;
}
.prevoz-nav-style-three .others-option .sidebar-menu i {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-three .others-option .sidebar-menu i:after {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.prevoz-nav-style-three .others-option .sidebar-menu i:hover {
    color: #fff;
}
.prevoz-nav-style-three .others-option .sidebar-menu i:hover:after {
    top: -35px;
}
.prevoz-slider-area-three .prevoz-slider-text {
    text-align: left;
    float: right;
    max-width: 700px;
    position: relative;
}
.prevoz-slider-area-three .prevoz-slider-text::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -45px;
    width: 745px;
    height: 900px;
    background-color: rgba(0, 55, 130, 0.8);
}
.prevoz-slider-area-three .prevoz-slider-text::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -120px;
    height: 900px;
    width: 120px;
    background-color: rgba(255, 55, 0, 0.5);
}
.prevoz-slider-area-three .owl-item.active .prevoz-slider-text::before {
    -webkit-animation: 2s 0.2s fadeInDownBig both;
    animation: 2s 0.2s fadeInDownBig both;
}
.prevoz-slider-area-three .owl-item.active .prevoz-slider-text::after {
    -webkit-animation: 1s 0.1s fadeInUpBig both;
    animation: 1s 0.1s fadeInUpBig both;
}
.about-area-three .about-content {
    margin-right: auto !important;
    margin-left: unset;
}
.about-area-three .about-img {
    position: relative;
}
.about-area-three .about-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 200px;
    width: 200px;
    height: 100%;
    background-color: rgb(204 2 132 / 65%);
}
.about-area-three .about-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: rgba(0, 55, 130, 0.8);
}
.about-area-three .video-btn {
    background-color: #09acd9;
    margin-left: 30px;
}
.about-area-three .video-btn::before {
    background-color: #09acd9;
}
.about-area-three .video-btn::after {
    background-color: #09acd9;
}
.about-area-three .video-btn i {
    color: #fff;
}
.track-area-three {
    position: relative;
}
.track-area-three::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
}
.choose-us-area-three .choose-main-wrap {
    background-image: url(../img/choose-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.choose-us-area-three .choose-main-wrap .choose-tab-wrap {
    max-width: 700px;
    margin-left: auto;
}
.began-area-three {
    background-image: url(../img/began-main-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}
.began-area-three::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24416b;
    opacity: 0.9;
    z-index: -1;
}
.began-area-three::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #09acd9;
    z-index: -1;
}
.began-area-three .section-title span {
    color: #fff;
}
.began-area-three .section-title h2 {
    color: #fff;
}
.began-area-three .section-title h2::before {
    background-color: #fff;
}
.began-area-three .section-title h2::after {
    background-color: #24416b;
}
.began-area-three .section-title p {
    color: #fff;
}
.began-area-three .began-top-wrap::before {
    display: none;
}
.began-area-three .began-wrap {
    margin: 0;
}
.began-area-three .began-wrap .single-began {
    padding: 45px;
}
.began-area-three .began-img {
    background-image: url(../img/began-img.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.testimonials-content-three {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 30px;
}
.testimonials-content-three .testimonials-top-content {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}
.testimonials-content-three .testimonials-top-content img {
    width: unset !important;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -8px;
}
.testimonials-content-three p {
    margin-bottom: 30px;
}
.testimonials-content-three ul li {
    display: inline-block;
}
.testimonials-content-three ul li i {
    color: #ff9e21;
}
.tracking-number-area-three .section-title span {
    color: #fff;
}
.tracking-number-area-three .section-title h2 {
    color: #fff;
}
.tracking-number-area-three .section-title h2::before {
    background-color: #fff;
}
.tracking-number-area-three .section-title h2::after {
    background-color: #24416b;
}
.tracking-number-area-three .tracking-body {
    max-width: 600px;
    margin: auto;
}
.blog-area-three .single-blog {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.blog-area-three .blog-content {
    margin: 0;
    border-radius: 0 0 4px 4px;
    padding: 30px;
}
.footer-top-area-three {
    background-color: #000000c7;
    background-blend-mode: overlay;
    border-bottom: 3px solid #fff;
    background-image: url('../south_background/back3.jpg');
    width: 100%;
    height:auto;
    background-size: cover;
}
.footer-top-area-three .single-widget h3 {
    color: #fff;
}
.footer-top-area-three .single-widget ul li {
    border-bottom: 1px dashed #556e92;
}
.footer-top-area-three .single-widget ul li::before {
    display: none;
}
.footer-top-area-three .single-widget ul li a {
    color: #fff;
}
.footer-top-area-three .single-widget ul li a:hover {
    color: #09acd9;
}
.subscribe-area-three {
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.subscribe-area-three::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #24416b;
    z-index: -1;
}
.subscribe-area-three .subscribe-wrap {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    max-width: 1040px;
    margin: auto;
    padding: 30px;
    border-radius: 4px;
}
.subscribe-area-three .tracking-body .tracking-wrap .input-tracking {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.subscribe-area-three .validation-danger {
    color: #09acd9 !important;
}
.testimonials-three {
    position: relative;
    z-index: 1;
}
.header-style-four {
    background-color: rgba(27, 27, 27, 0.5);
    padding: 10px 0;
}
.header-style-four .header-left-content ul li {
    display: inline-block;
    font-size: 14px;
}
.header-style-four .header-left-content ul li a {
    color: #fff;
    position: relative;
    line-height: 1;
    padding-right: 20px;
}
.header-style-four .header-left-content ul li a:hover {
    color: #09acd9;
}
.header-style-four .header-left-content ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -11px;
    width: 1px;
    height: 100%;
    background-color: #fff;
}
.header-style-four .header-left-content ul li a i {
    color: #09acd9;
    position: relative;
    top: 2px;
    display: inline-block;
    margin-right: 2px;
}
.header-style-four .header-left-content ul li:first-child a::before {
    display: none;
}
.header-style-four .header-right-content {
    float: right;
}
.header-style-four .header-right-content .additional-link {
    display: inline-block;
}
.header-style-four .header-right-content .additional-link li {
    display: inline-block;
    font-size: 14px;
}
.header-style-four .header-right-content .additional-link li a {
    color: #fff;
    position: relative;
    line-height: 1;
    padding-right: 20px;
}
.header-style-four .header-right-content .additional-link li a:hover {
    color: #09acd9;
}
.header-style-four .header-right-content .additional-link li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -11px;
    width: 1px;
    height: 100%;
    background-color: #fff;
}
.header-style-four .header-right-content .additional-link li:first-child a::before {
    display: none;
}
.header-style-four .social-links {
    display: inline-block;
}
.header-style-four .social-links li {
    display: inline-block;
    padding: 0 5px;
}
.header-style-four .social-links li:last-child {
    padding: 0;
}
.header-style-four .social-links li a {
    font-size: 15px;
    color: #fff;
}
.header-style-four .social-links li a:hover {
    color: #09acd9;
}
.prevoz-nav-style-four .navbar-area .navbar-brand {
    display: block;
}
.prevoz-nav-style-four .navbar-area .main-nav {
    background-color: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a:before {
    content: "";
    position: absolute;
    top: -55px;
    left: 0;
    width: 2px;
    height: 90%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a:hover {
    color: #fff;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a:hover:before {
    top: -23px;
    opacity: 1;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a.active {
    color: #fff;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item a.active:before {
    top: -23px;
    opacity: 1;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a::before {
    display: none;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item:hover a {
    color: #fff;
}
.prevoz-nav-style-four .navbar-area .main-nav nav .navbar-nav .nav-item:hover a:before {
    top: -23px;
}
.prevoz-nav-style-four .others-option .search-wrap a {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-four .others-option .search-wrap a:before {
    content: "";
    position: absolute;
    top: -55px;
    left: 0;
    width: 2px;
    height: 80%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}
.prevoz-nav-style-four .others-option .search-wrap a:hover {
    color: #fff;
}
.prevoz-nav-style-four .others-option .search-wrap a:hover:before {
    top: -26px;
    opacity: 1;
}
.prevoz-nav-style-four .others-option .sidebar-menu i {
    color: #fff;
    position: relative;
}
.prevoz-nav-style-four .others-option .sidebar-menu i:after {
    content: "";
    position: absolute;
    top: -55px;
    left: 0;
    width: 2px;
    height: 60%;
    background-color: #fff;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}
.prevoz-nav-style-four .others-option .sidebar-menu i:hover {
    color: #fff;
}
.prevoz-nav-style-four .others-option .sidebar-menu i:hover:after {
    top: -19px;
    opacity: 1;
}
.prevoz-slider-area-four .prevoz-slider-item {
    height: 100%;
    padding-top: 350px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
}
.prevoz-slider-area-four .prevoz-slider-item .prevoz-slider-text {
    text-align: left;
    max-width: 750px;
}
.prevoz-slider-area-four .prevoz-slider-item .prevoz-slider-text .video-btn {
    margin-bottom: 20px;
}
.prevoz-slider-area-four .owl-prev i {
    background-color: transparent !important;
    border-radius: 50%;
    border: 1px solid #fff;
}
.prevoz-slider-area-four .owl-prev i:hover {
    border-color: #09acd9;
}
.prevoz-slider-area-four .owl-next i {
    background-color: transparent !important;
    border-radius: 50%;
    border: 1px solid #fff;
}
.prevoz-slider-area-four .owl-next i:hover {
    border-color: #09acd9;
}
.tracking-number-area-four {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.tracking-number-area-four .tracking-wrap {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.about-area-four {
    position: relative;
    z-index: 1;
}
.about-area-four .about-history {
    position: absolute;
    bottom: 0;
}
.about-area-four .about-history .about-details {
    position: relative;
    background-color: #09acd9;
    padding-left: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 320px;
    padding-right: 30px;
}
.about-area-four .about-history .about-details i {
    font-size: 50px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 30px;
}
.about-area-four .about-history .about-details span {
    font-size: 50px;
    color: #fff;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}
.about-area-four .about-history .about-details p {
    font-size: 18px;
    color: #fff;
    line-height: 1;
}
.about-area-four .video-btn {
    background-color: #09acd9;
    margin-left: 30px;
}
.about-area-four .video-btn::before {
    background-color: #09acd9;
}
.about-area-four .video-btn::after {
    background-color: #09acd9;
}
.about-area-four .video-btn i {
    color: #fff;
}
.counter-area-four {
    background-image: url(../img/counter-bg-four.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}
.counter-area-four::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24416b;
    opacity: 0.9;
    z-index: -1;
}
.counter-area-four::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background-color: #fff;
    z-index: -1;
}
.what-offer-area-four .single-offer {
    border-right: none;
}
.what-offer-area-four .single-offer p {
    margin-bottom: 0;
}
.what-offer-area-four .col-lg-6:nth-child(2) .single-offer {
    margin-top: 30px;
}
.what-offer-area-four .col-lg-6:nth-child(3) .single-offer {
    margin-top: -30px;
}
.what-offer-area-four .what-offer-content span {
    text-transform: uppercase;
    color: #09acd9;
    font-size: 13px;
    display: block;
    margin-top: -8px;
    margin-bottom: 10px;
}
.what-offer-area-four .what-offer-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
}
.what-offer-area-four .what-offer-content h2::before {
    position: absolute;
    bottom: -22px;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #09acd9;
}
.what-offer-area-four .what-offer-content h2::after {
    position: absolute;
    bottom: -22px;
    left: 0;
    content: "";
    width: 5px;
    height: 2px;
    background-color: #fff;
    -webkit-animation: moveLeftBounces 10s linear infinite;
    animation: moveLeftBounces 10s linear infinite;
}
.what-offer-area-four .what-offer-content h2:last-child {
    margin-bottom: 0;
}
.what-offer-area-four .what-offer-content p {
    margin-bottom: 25px;
}
.what-offer-area-four .what-offer-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.what-offer-area-four .what-offer-content ul li:last-child {
    margin-bottom: 0;
}
.what-offer-area-four .what-offer-content ul li i {
    position: absolute;
    top: 2px;
    left: 0;
    color: #fff;
    width: 20px;
    height: 20px;
    background-color: #09acd9;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    border-radius: 50%;
}
.single-project {
    position: relative;
    overflow: hidden;
}
.single-project .project-content {
    position: absolute;
    top: 0;
    left: 420px;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #09acd9;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-project .project-content h3 {
    color: #fff;
}
.single-project .project-content p {
    color: #fff;
    font-size: 14px;
}
.single-project .project-content .project-content-wrap {
    padding: 30px;
}
.single-project:hover .project-content {
    left: 0;
}
.began-area-four {
    overflow: hidden;
}
.began-area-four .begans-bg {
    background-image: url(../img/products-bg.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.began-area-four .began-wrap {
    width: 715px;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 100px;
    padding-bottom: 100px;
}
.began-area-four .began-wrap h2 {
    color: #fff;
    border-color: #19345a;
    padding-top: 0;
}
.began-area-four .began-wrap .single-began i {
    color: #74a9f6;
}
.began-area-four .began-wrap .single-began h3 {
    color: #fff;
}
.began-area-four .began-wrap .col-lg-4:nth-child(1) .single-began {
    border-right: 1px solid #19345a;
    border-bottom: 1px solid #19345a;
}
.began-area-four .began-wrap .col-lg-4:nth-child(2) .single-began {
    border-bottom: 1px solid #19345a;
    border-right: 1px solid #19345a;
}
.began-area-four .began-wrap .col-lg-4:nth-child(3) .single-began {
    border-bottom: 1px solid #19345a;
}
.began-area-four .began-wrap .col-lg-4:nth-child(4) .single-began {
    border-right: 1px solid #19345a;
}
.began-area-four .began-wrap .col-lg-4:nth-child(5) .single-began {
    border-right: 1px solid #19345a;
}
.began-area-four .began-top-wrap {
    background-image: unset;
    background-color: #24416b;
}
.subscribe-area-four {
    background-color: transparent;
}
.subscribe-area-four::before {
    display: none;
}
.footer-top-area-four {
    background-color: #222629;
    position: relative;
    z-index: 1;
}
.footer-top-area-four .single-widget img {
    margin-bottom: 20px;
}
.footer-top-area-four .single-widget p {
    color: #d7d7d7;
}
.footer-top-area-four .single-widget .social-link li {
    padding-right: 3px;
    display: inline-block;
    border: none;
}
.footer-top-area-four .single-widget .social-link li::before {
    display: none;
}
.footer-top-area-four .single-widget .social-link li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #3867ad;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.footer-top-area-four .single-widget .social-link li a:hover i {
    background-color: #09acd9;
}
.footer-top-area-four .single-widget h3 {
    color: #fff;
}
.footer-top-area-four .single-widget ul li a {
    color: #d7d7d7;
}
.footer-top-area-four .single-widget ul li a:hover {
    color: #09acd9;
}
.footer-bottom-area-four {
    background-color: #313538;
}
.footer-bottom-area-four .single-widget-bottom ul li a {
    color: #d7d7d7;
}
.footer-bottom-area-four .single-widget-bottom ul li a:hover {
    color: #09acd9;
}
.footer-bottom-area-four .single-widget-bottom p {
    float: right;
    color: #d7d7d7;
}
.prevoz-slider-area-five {
    position: relative;
}
.prevoz-slider-area-five .prevoz-slider-item {
    height: 100%;
    padding-top: 100px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
}
.prevoz-slider-area-five .prevoz-slider-item .prevoz-slider-text {
    margin-top: 75px;
}
.prevoz-slider-area-five .shape {
    position: absolute;
    bottom: -10px;
    z-index: 1;
}
.counter-area-five {
    position: relative;
    z-index: 1;
}
.counter-area-five .single-counter i {
    color: #09acd9;
}
.counter-area-five .single-counter h2 {
    color: #09acd9;
}
.counter-area-five .single-counter p {
    color: #24416b;
}
.service-area-five {
    position: relative;
    z-index: 1;
}
.service-area-five .section-title span {
    color: #fff;
}
.service-area-five .section-title h2 {
    color: #fff;
}
.service-area-five .section-title h2::before {
    background-color: #fff;
}
.service-area-five .section-title h2::after {
    background-color: #24416b;
}
.service-area-five .service-all p {
    color: #fff;
}
.brand-area-five {
    background-color: transparent;
}
.brand-area-five .brand-item {
    background-color: #09acd9;
}
.fun-facts-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.fun-facts-area .facts-img {
    background-image: url(../img/fun-facts-img.html);
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.fun-facts-area .fun-facts-content {
    margin-bottom: 50px;
}
.fun-facts-area .fun-facts-content span {
    text-transform: uppercase;
    color: #09acd9;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-top: -8px;
    margin-bottom: 10px;
}
.fun-facts-area .fun-facts-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    position: relative;
}
.fun-facts-area .fun-facts-content h2::before {
    position: absolute;
    bottom: -25px;
    left: 0;
    content: "";
    width: 50px;
    height: 2px;
    background-color: #09acd9;
}
.fun-facts-area .fun-facts-content h2::after {
    position: absolute;
    bottom: -25px;
    left: 0;
    content: "";
    width: 5px;
    height: 2px;
    background-color: #fff;
    -webkit-animation: moveLeftBounces 10s linear infinite;
    animation: moveLeftBounces 10s linear infinite;
}
.fun-facts-area .fun-facts-content h2:last-child {
    margin-bottom: 0;
}
.fun-facts-area .fun-facts-content p {
    margin-bottom: 30px;
}
.fun-facts-area .skill-bar {
    margin-bottom: 30px;
}
.fun-facts-area .skill-bar .progress-title-holder {
    position: relative;
}
.fun-facts-area .skill-bar .progress-title {
    font-size: 16px;
    font-weight: 500;
}
.fun-facts-area .skill-bar .progress-number-wrapper {
    width: 100%;
    z-index: 10;
    font-size: 11px;
    line-height: 24px;
    height: 24px;
    letter-spacing: 0;
    font-weight: 600;
    font-style: normal;
    text-transform: none;
    color: #fff;
}
.fun-facts-area .skill-bar .progress-number-mark {
    margin-bottom: 4px;
    border-radius: 3px;
    background-color: #09acd9;
    padding: 0 8px;
    position: absolute;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.fun-facts-area .skill-bar .down-arrow {
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 3px solid #09acd9;
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.fun-facts-area .skill-bar .progress-content-outter {
    height: 6px;
    background-color: #e4e4e4;
    border-radius: 4px;
}
.fun-facts-area .skill-bar .progress-content {
    height: 6px;
    background-color: #09acd9;
    border-radius: 4px;
    width: 0%;
}
.fun-facts-area .skill-bar-wrapper {
    margin-left: 30px;
    max-width: 510px;
}
.fun-facts-area .skill-bar-wrapper .section-title-left {
    margin-bottom: 50px;
}
.tracking-number-area-five {
    background-color: #09acd9;
}
.tracking-number-area-five .tracking-content h2 {
    color: #fff;
}
.blog-area-five .single-blog .blog-content {
    border-radius: 0 0 4px 4px;
    margin: 0;
}
.blog-area-five .single-blog .blog-content.mb-13 {
    margin-bottom: 13px !important;
    position: relative;
    z-index: 1;
}
.blog-area-five .single-blog .blog-content.mb-13::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: #09acd9;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.blog-area-five .single-blog .blog-content.mb-13:hover::before {
    width: 100%;
}
.blog-area-five .single-blog .blog-content.mb-13:hover ul li {
    color: #fff;
}
.blog-area-five .single-blog .blog-content.mb-13:hover ul li::before {
    background-color: #fff;
}
.blog-area-five .single-blog .blog-content.mb-13:hover ul li a {
    color: #fff;
}
.blog-area-five .single-blog .blog-content.mb-13:hover h3 a {
    color: #fff;
}
.subscribe-area-five::before {
    background-color: #222629;
}
.lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    margin: auto;
    width: 90vw;
    z-index: -1;
}
.lines .line {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.lines .line::after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-animation: moveLeftBounces-one 20s linear infinite;
    animation: moveLeftBounces-one 20s linear infinite;
}
.lines .line:nth-child(1) {
    margin-left: -25%;
}
.lines .line:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.lines .line:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.lines .line:nth-child(3) {
    margin-left: 25%;
}
.lines .line-two {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.lines .line-two::after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #09acd9;
    -webkit-animation: moveLeftBounces-two 20s linear infinite;
    animation: moveLeftBounces-two 20s linear infinite;
}
.lines .line-two:nth-child(1) {
    margin-left: -25%;
}
.lines .line-two:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.lines .line-two:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.lines .line-two:nth-child(3) {
    margin-left: 25%;
}
.lines .line-three {
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}
.lines .line-three::after {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #09acd9;
    -webkit-animation: moveLeftBounces-one 20s linear infinite;
    animation: moveLeftBounces-one 20s linear infinite;
}
.lines .line-three:nth-child(1) {
    margin-left: -25%;
}
.lines .line-three:nth-child(1)::after {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.lines .line-three:nth-child(3)::after {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
}
.lines .line-three:nth-child(3) {
    margin-left: 25%;
}
@-webkit-keyframes moveLeftBounces-one {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes moveLeftBounces-one {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes moveLeftBounces-two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(900px);
        transform: translateY(900px);
    }
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes moveLeftBounces-two {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(900px);
        transform: translateY(900px);
    }
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes moveLeftBounces-three {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes moveLeftBounces-three {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.page-title-area {
    position: relative;
    z-index: 1;
    padding-top: 150px;
    padding-bottom: 150px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../south_background/back2.jpg);
    background-attachment: fixed;
}
.page-title-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    opacity: 0.6;
}
.page-title-area .page-title-content h2 {
    margin-bottom: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}
.page-title-area .page-title-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 10px;
    margin-bottom: 0;
    float: right;
}
.page-title-area .page-title-content ul li {
    display: inline-block;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    padding-right: 20px;
    color: #09acd9;
}
.page-title-area .page-title-content ul li::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 5px;
    background-color: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.page-title-area .page-title-content ul li:last-child::before {
    display: none;
}
.page-title-area .page-title-content ul li i {
    font-size: 20px;
    margin: 0 5px;
    position: relative;
    top: 5px;
}
.page-title-area .page-title-content ul li a {
    color: #fff;
}
.page-title-area .page-title-content ul li a:hover {
    color: #09acd9;
}
.blog-details-area {
}
.blog-details-area .blog-details-desc .article-image {
    position: relative;
}
.blog-details-area .blog-details-desc .article-content {
    margin-top: 30px;
}
.blog-details-area .blog-details-desc .article-content .entry-meta {
    margin-bottom: -10px;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li {
    position: relative;
    display: inline-block;
    color: #09acd9;
    margin-right: 21px;
    font-size: 14px;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li span {
    display: inline-block;
    color: #09acd9;
    font-weight: 500;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li a {
    display: inline-block;
    color: #666;
    font-size: 13px;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li a:hover {
    color: #09acd9;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li i {
    color: #09acd9;
    margin-right: 2px;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    right: -15px;
    width: 6px;
    height: 1px;
    background: #09acd9;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child {
    margin-right: 0;
}
.blog-details-area .blog-details-desc .article-content .entry-meta ul li:last-child::before {
    display: none;
}
.blog-details-area .blog-details-desc .article-content h3 {
    margin-bottom: 13px;
    margin-top: 25px;
}
.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 {
    padding-left: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-right: 10px;
    padding-left: 10px;
}
.blog-details-area .blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
    margin-bottom: 0;
}
.blog-details-area .blog-details-desc .article-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}
.blog-details-area .blog-details-desc .article-footer .article-tags {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.blog-details-area .blog-details-desc .article-footer .article-tags span {
    display: inline-block;
    color: #09acd9;
    font-size: 20px;
    margin-right: 5px;
    position: relative;
    top: 4px;
}
.blog-details-area .blog-details-desc .article-footer .article-tags a {
    display: inline-block;
    color: #666;
    font-weight: 600;
}
.blog-details-area .blog-details-desc .article-footer .article-tags a:hover {
    color: #09acd9;
}
.blog-details-area .blog-details-desc .article-footer .article-share {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.blog-details-area .blog-details-desc .article-footer .article-share .social {
    padding-left: 0;
    list-style-type: none;
    text-align: right;
    margin-bottom: 0;
}
.blog-details-area .blog-details-desc .article-footer .article-share .social li {
    display: inline-block;
}
.blog-details-area .blog-details-desc .article-footer .article-share .social li span {
    display: inline-block;
    margin-right: 2px;
    font-weight: 500;
    color: #666;
}
.blog-details-area .blog-details-desc .article-footer .article-share .social li a {
    display: block;
    color: #fff;
    width: 32px;
    height: 32px;
    line-height: 33px;
    border-radius: 50%;
    background-color: #09acd9;
    text-align: center;
    font-size: 14px;
}
.blog-details-area .blog-details-desc .article-footer .article-share .social li a:hover {
    background-color: #24416b;
}
.blog-details-area .blog-details-desc .post-navigation {
    margin-top: 30px;
}
.blog-details-area blockquote {
    overflow: hidden;
    background-color: #24416b;
    padding: 50px !important;
    position: relative;
    text-align: center;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 20px;
}
.blog-details-area blockquote p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 17px !important;
}
.blog-details-area blockquote cite {
    display: none;
}
.blog-details-area blockquote::before {
    color: #09acd9;
    content: "\ed67";
    position: absolute;
    left: 50px;
    top: -50px;
    z-index: -1;
    font-family: boxicons;
    font-size: 140px;
    font-weight: 900;
}
.blog-details-area blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #09acd9;
    margin-top: 20px;
    margin-bottom: 20px;
}
.blog-details-area .post-navigation {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}
.blog-details-area .post-navigation .navigation-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-details-area .post-navigation .navigation-links .nav-previous {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.blog-details-area .post-navigation .navigation-links .nav-previous a i {
    margin-right: 0;
    font-size: 20px;
    position: relative;
    top: 4px;
}
.blog-details-area .post-navigation .navigation-links .nav-next {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
}
.blog-details-area .post-navigation .navigation-links .nav-next a i {
    margin-left: 0;
    font-size: 20px;
    position: relative;
    top: 4px;
}
.blog-details-area .post-navigation .navigation-links div a {
    display: inline-block;
    font-weight: 600;
    color: #24416b;
}
.blog-details-area .post-navigation .navigation-links div a:hover {
    color: #09acd9;
}
.blog-details-area .comments-area {
    padding: 25px;
    margin-top: 30px;
    -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    background-color: #fff;
}
.blog-details-area .comments-area .comments-title {
    position: relative;
    margin-bottom: 30px;
    line-height: initial;
    font-size: 22px;
}
.blog-details-area .comments-area .comments-title::before {
    content: "";
    height: 25px;
    width: 3px;
    left: -25px;
    position: absolute;
    background: #09acd9;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-details-area .comments-area ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .comments-area .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .comments-area .children {
    margin-left: 40px;
}
.blog-details-area .comments-area .comment-body {
    border-bottom: 1px solid #eee;
    padding-left: 65px;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.blog-details-area .comments-area .comment-body .reply {
    margin-top: 15px;
}
.blog-details-area .comments-area .comment-body .reply a {
    border: 1px solid #ded9d9;
    color: #24416b;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
}
.blog-details-area .comments-area .comment-body .reply a:hover {
    color: #fff;
    background-color: #09acd9;
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-meta {
    margin-bottom: 0.8em;
}
.blog-details-area .comments-area .comment-author {
    font-size: 16px;
    margin-bottom: 0.4em;
    position: relative;
    z-index: 2;
}
.blog-details-area .comments-area .comment-author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px;
    border-radius: 50%;
}
.blog-details-area .comments-area .comment-author .fn {
    font-weight: 600;
    color: #24416b;
    font-size: 14px;
}
.blog-details-area .comments-area .comment-author .says {
    display: none;
}
.blog-details-area .comments-area .comment-metadata {
    color: #666;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}
.blog-details-area .comments-area .comment-metadata a {
    color: #666;
    font-size: 11px;
}
.blog-details-area .comments-area .comment-metadata a:hover {
    color: #09acd9;
}
.blog-details-area .comments-area .comment-content p {
    font-size: 14px;
}
.blog-details-area .comments-area .comment-respond {
    margin-top: 30px;
}
.blog-details-area .comments-area .comment-respond .comment-reply-title {
    margin-bottom: 15px;
    position: relative;
    font-size: 22px;
}
.blog-details-area .comments-area .comment-respond .comment-reply-title::before {
    content: "";
    height: 25px;
    width: 3px;
    left: -25px;
    position: absolute;
    background: #09acd9;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-details-area .comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
    display: inline-block;
}
.blog-details-area .comments-area .comment-respond .comment-form {
    overflow: hidden;
}
.blog-details-area .comments-area .comment-respond .comment-form-comment {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}
.blog-details-area .comments-area .comment-respond label {
    display: block;
    font-weight: 500;
    color: #24416b;
    margin-bottom: 5px;
}
.blog-details-area .comments-area .comment-respond input[type="datetime-local"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="datetime-local"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="week"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="week"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="month"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="month"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="text"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="text"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="email"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="email"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="url"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="url"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="password"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="password"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="search"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="search"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="tel"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="tel"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond input[type="number"] {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond input[type="number"]:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond textarea {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .comments-area .comment-respond textarea:focus {
    border-color: #09acd9;
}
.blog-details-area .comments-area .comment-respond .comment-form-author {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 20px;
}
.blog-details-area .comments-area .comment-respond .comment-form-email {
    float: left;
    width: 50%;
    padding-left: 12px;
    margin-bottom: 20px;
}
.blog-details-area .comments-area .comment-respond .comment-form-url {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}
.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent input {
    position: absolute;
    left: 0;
    top: 6px;
}
.blog-details-area .comments-area .comment-respond .comment-form-cookies-consent label {
    display: inline-block;
    margin: 0;
    color: #666;
    font-weight: 400;
}
.blog-details-area .comments-area .comment-respond .form-submit {
    float: left;
    width: 100%;
}
.blog-details-area .comments-area .comment-respond .form-submit input {
    background: #09acd9;
    border: none;
    color: #fff;
    padding: 14px 30px 12px;
    display: inline-block;
    cursor: pointer;
    outline: 0;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-weight: 500;
    font-size: 14px;
}
.blog-details-area .comments-area .comment-respond .form-submit input:hover {
    color: #fff;
    background-color: #24416b;
}
.blog-details-area .comments-area .comment-respond .form-submit input:focus {
    color: #fff;
    background-color: #09acd9;
}
.blog-details-area .widget-area .widget {
    margin-top: 35px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
}
.blog-details-area .widget-area .widget .post-wrap {
    padding: 20px;
}
.blog-details-area .widget-area .widget:first-child {
    margin-top: 0;
}
.blog-details-area .widget-area .widget .widget-title {
    text-transform: capitalize;
    position: relative;
    font-size: 20px;
    margin-bottom: 0;
    background-color: #24416b;
    padding: 10px 20px;
    color: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    position: relative;
}
.blog-details-area .widget-area .widget .widget-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: #09acd9;
}
.blog-details-area .widget-area .widget_search form {
    position: relative;
}
.blog-details-area .widget-area .widget_search form label {
    display: block;
    margin-bottom: 0;
}
.blog-details-area .widget-area .widget_search form .screen-reader-text {
    display: none;
}
.blog-details-area .widget-area .widget_search form .search-field {
    background-color: transparent;
    height: 50px;
    padding: 6px 15px;
    border: 1px solid #eee;
    width: 100%;
    display: block;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.blog-details-area .widget-area .widget_search form .search-field:focus {
    border-color: #09acd9;
}
.blog-details-area .widget-area .widget_search form button {
    position: absolute;
    right: 0;
    outline: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    border: none;
    color: #fff;
    background-color: #09acd9;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    cursor: pointer;
}
.blog-details-area .widget-area .widget_search form button:hover {
    background-color: #24416b;
}
.blog-details-area .widget-area .widget-peru-posts-thumb {
    position: relative;
    overflow: hidden;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item {
    overflow: hidden;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #efefef;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb {
    float: left;
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 80px;
    margin-right: 15px;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center !important;
    position: relative;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg1 {
    background-image: url(../img/blog-details/1.html);
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg2 {
    background-image: url(../img/blog-details/2.html);
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg3 {
    background-image: url(../img/blog-details/3.html);
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .thumb .fullimage.bg4 {
    background-image: url(../img/blog-details/4.html);
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .info {
    overflow: hidden;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .info span {
    display: block;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 600;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a {
    display: inline-block;
    color: #474c40;
}
.blog-details-area .widget-area .widget-peru-posts-thumb .item .info .title a:hover {
    color: #09acd9;
}
.blog-details-area .widget-area .widget_recent_entries ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .widget-area .widget_recent_entries ul li {
    position: relative;
    margin-bottom: 12px;
    color: #666;
    padding-left: 17px;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 600;
}
.blog-details-area .widget-area .widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}
.blog-details-area .widget-area .widget_recent_entries ul li::before {
    background: #09acd9;
    position: absolute;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 7px;
}
.blog-details-area .widget-area .widget_recent_entries ul li .post-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}
.blog-details-area .widget-area .widget_categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .widget-area .widget_categories ul li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #666;
    padding-left: 17px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #efefef;
}
.blog-details-area .widget-area .widget_categories ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.blog-details-area .widget-area .widget_categories ul li::before {
    background: #09acd9;
    position: absolute;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 9px;
}
.blog-details-area .widget-area .widget_categories ul li a {
    display: block;
    color: #666;
    font-weight: 400;
    font-size: 14px;
}
.blog-details-area .widget-area .widget_categories ul li a span {
    float: right;
    font-size: 13px;
}
.blog-details-area .widget-area .widget_categories ul li a:hover {
    color: #09acd9;
}
.blog-details-area .widget-area .widget_categories ul li .post-count {
    float: right;
}
.blog-details-area .widget-area .widget_meta ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.blog-details-area .widget-area .widget_meta ul li {
    position: relative;
    margin-bottom: 12px;
    color: #666;
    padding-left: 17px;
    font-size: 15px;
    font-weight: 500;
}
.blog-details-area .widget-area .widget_meta ul li:last-child {
    margin-bottom: 0;
}
.blog-details-area .widget-area .widget_meta ul li::before {
    background: #09acd9;
    position: absolute;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 7px;
}
.blog-details-area .widget-area .widget_tag_cloud .widget-title {
    margin-bottom: 0;
}
.blog-details-area .widget-area .tagcloud a {
    display: inline-block;
    color: #666;
    font-weight: 400;
    font-size: 14px !important;
    padding: 7px 10px;
    border: 1px dashed #eee;
    margin-top: 10px;
    margin-right: 10px;
}
.blog-details-area .widget-area .tagcloud a:hover {
    background-color: #09acd9;
    color: #fff;
}
.blog-details-area .widget-area .tagcloud a:focus {
    background-color: #09acd9;
    color: #fff;
    border-color: #09acd9;
}
.blog-details-area .widget-area .widget_services_list ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    background-color: #fff;
}
.blog-details-area .widget-area .widget_services_list ul li a {
    display: block;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 35px;
    color: #5d6576;
    z-index: 1;
    font-weight: 500;
}
.blog-details-area .widget-area .widget_services_list ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #252920;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.blog-details-area .widget-area .widget_services_list ul li a i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-details-area .widget-area .widget_services_list ul li a:hover {
    background-color: #09acd9;
    color: #fff;
    padding-left: 20px;
}
.blog-details-area .widget-area .widget_services_list ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.blog-details-area .widget-area .widget_services_list ul li a.active {
    background-color: #09acd9;
    color: #fff;
    padding-left: 20px;
}
.blog-details-area .widget-area .widget_services_list ul li a.active::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.blog-details-area .widget-area .widget_services_list ul li:last-child a {
    border-bottom: none;
}
.blog-details-area .widget-area .widget_download ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.04);
    background-color: #fff;
}
.blog-details-area .widget-area .widget_download ul li a {
    display: block;
    position: relative;
    border-bottom: 1px solid #eee;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 35px;
    color: #5d6576;
    z-index: 1;
    font-weight: 500;
}
.blog-details-area .widget-area .widget_download ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #252920;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.blog-details-area .widget-area .widget_download ul li a i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.blog-details-area .widget-area .widget_download ul li a:hover {
    background-color: #09acd9;
    color: #fff;
    padding-left: 20px;
}
.blog-details-area .widget-area .widget_download ul li a:hover::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.blog-details-area .widget-area .widget_download ul li a.active {
    background-color: #09acd9;
    color: #fff;
    padding-left: 20px;
}
.blog-details-area .widget-area .widget_download ul li a.active::before {
    opacity: 1;
    visibility: visible;
    width: 5px;
}
.blog-details-area .widget-area .widget_download ul li:last-child a {
    border-bottom: none;
}
.blog-details-area .widget-area .info time {
    font-size: 13px;
    color: #929292;
    display: block;
    margin-bottom: 4px;
}
.blog-right-sidebar .single-blog:hover img {
    -webkit-transform: scale(2);
    transform: scale(2);
}
.service-sidebar-area .service-details-title {
    background-color: #fc0d2d;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.service-sidebar-area .service-card {
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.service-sidebar-area .service-list ul li {
    border-bottom: 1px dashed #eee;
    padding: 15px 20px;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.service-sidebar-area .service-list ul li:last-child {
    border-bottom: none;
}
.service-sidebar-area .service-list ul li a {
    color: #24416b;
    display: block;
}
.service-sidebar-area .service-list ul li i {
    float: right;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #09acd9;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.service-sidebar-area .service-list ul li:hover {
    background-color: #09acd9;
    color: #fff;
}
.service-sidebar-area .service-list ul li:hover i {
    background-color: #fff;
    color: #09acd9;
}
.service-sidebar-area .service-list ul li:hover a {
    color: #fff;
}
.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-item {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-title {
    font-size: 15px;
    font-weight: 600;
}
.service-sidebar-area .service-faq .faq-accordion .accordion .accordion-title span {
    top: 11px;
}
.service-sidebar-area .paint {
    margin-bottom: 15px;
}
.service-details-wrap .mb-30 {
    margin-bottom: 30px;
}
.service-details-wrap .service-img {
    margin-bottom: 30px;
}
.service-details-wrap ul {
    margin-top: 30px;
    margin-bottom: 30px;
}
.service-details-wrap ul li {
    display: inline-block;
    font-weight: 600;
    color: #24416b;
    font-size: 14px;
    padding-left: 35px;
    position: relative;
}
.service-details-wrap ul li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: #09acd9;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 4px;
    position: absolute;
    top: 0;
    left: 0;
}
.service-details-wrap .car-service-list-wrap {
    margin-bottom: 35px;
}
.service-details-wrap .car-service-list-wrap .car-service-list ul {
    margin: 0;
}
.service-details-wrap .car-service-list-wrap .car-service-list ul li {
    margin-bottom: 15px;
    font-size: 13px;
}
.service-details-wrap .car-service-list-wrap .car-service-list ul li:last-child {
    margin-bottom: 0;
}
.service-details-wrap .list-unstyled {
    margin: 0;
}
.service-details-wrap .list-unstyled li {
    color: #dc3545;
    padding-left: 0 !important;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}
.service-details-wrap #msgSubmit {
    top: 68px;
    left: 15px;
}
.ask-question {
    background-color: #fff;
    -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    padding: 50px;
}
.ask-question h3 {
    margin-bottom: 20px;
}
.ask-question .form-group {
    margin-bottom: 30px;
}
.ask-question .default-btn {
    margin: auto;
    display: table;
    background-color: transparent;
}
.faq-area .faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.faq-area .faq-accordion .accordion .accordion-item {
    display: block;
    -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
    background: #fff;
}
.faq-area .faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-area .faq-accordion .accordion .accordion-title {
    padding: 12px 20px 12px 60px;
    color: #24416b;
    position: relative;
    border-bottom: 1px dashed #eee;
    margin-bottom: -1px;
    display: block;
    font-size: 18px;
}
.faq-area .faq-accordion .accordion .accordion-title i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    text-align: center;
    height: 100%;
    background: #faf5f5;
    color: #09acd9;
    font-size: 14px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.faq-area .faq-accordion .accordion .accordion-title i::before {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.faq-area .faq-accordion .accordion .accordion-title span {
    position: absolute;
    top: 14px;
    left: 20px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #09acd9;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
.faq-area .faq-accordion .accordion .accordion-title.active {
    border-bottom-color: #09acd9;
}
.faq-area .faq-accordion .accordion .accordion-title.active i {
    background-color: #09acd9;
    color: #fff;
}
.faq-area .faq-accordion .accordion .accordion-title.active i::before {
    content: "\f063";
}
.faq-area .faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    padding: 30px;
}
.faq-area .faq-accordion .accordion .accordion-content.show {
    display: block;
}
.faq-area .faq-img {
    background-image: url(../img/blog-details/news-details-img.html);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}
.list-unstyled {
    margin-top: 10px;
    color: #dc3545;
}
#msgSubmit {
    margin-bottom: 0;
    position: absolute;
    top: 14px;
}
.text-danger {
    color: #dc3545 !important;
}
.text-success {
    color: #28a745 !important;
}
.coming-soon-area {
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background-image: url(../img/coming-soon-img.html);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.coming-soon-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.9;
    z-index: 1;
}
.coming-soon-area .coming-soon-content {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.coming-soon-area .coming-soon-content h1 {
    margin-bottom: 0;
    color: #fff;
    font-size: 60px;
    margin-top: -18px;
}
.coming-soon-area .coming-soon-content p {
    color: #f3f3f3;
    font-size: 14.5px;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}
.coming-soon-area .coming-soon-content #timer {
    margin-top: 30px;
}
.coming-soon-area .coming-soon-content #timer div {
    display: inline-block;
    color: #fff;
    position: relative;
    margin-left: 35px;
    margin-right: 35px;
    font-size: 45px;
    font-weight: 700;
}
.coming-soon-area .coming-soon-content #timer div span {
    display: block;
    text-transform: capitalize;
    margin-top: -15px;
    font-size: 16px;
    font-weight: 400;
}
.coming-soon-area .coming-soon-content #timer div:last-child {
    margin-right: 0;
}
.coming-soon-area .coming-soon-content #timer div:last-child::before {
    display: none;
}
.coming-soon-area .coming-soon-content #timer div:first-child {
    margin-left: 0;
}
.coming-soon-area .coming-soon-content #timer div::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -10px;
    font-size: 70px;
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    padding-left: 15px;
    color: #fff;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:-ms-input-placeholder {
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::-ms-input-placeholder {
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter::placeholder {
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
    border-color: #09acd9;
}
.coming-soon-area .coming-soon-content .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    padding: 0 30px;
    text-transform: uppercase;
    outline: 0;
    color: #09acd9;
    background-color: #fff;
    border: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    border-radius: 0 !important;
}
.coming-soon-area .coming-soon-content .newsletter-form button::after {
    border-radius: 0;
}
.coming-soon-area .coming-soon-content .newsletter-form button::before {
    border-radius: 0;
}
.coming-soon-area .coming-soon-content .newsletter-form button:hover {
    color: #fff;
}
.coming-soon-area .coming-soon-content .newsletter-form #validator-newsletter {
    color: #fff;
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: 0 auto;
}
.error-area {
    padding: 50px 0;
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
}
.error-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    z-index: -1;
}
.error-area .error-contact-wrap {
    z-index: 1;
    position: relative;
}
.error-area .error-contact-wrap img {
    max-width: 500px;
    width: 100%;
}
.error-area .error-contact-wrap h3 {
    margin: 30px 0 0;
    position: relative;
    color: red;
}
.error-area .error-contact-wrap p {
    margin: 20px 0;
    font-size: 19px;
}
.sign-up-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #eee;
}
.sign-up-area .contact-form-action {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
    padding: 40px;
    max-width: 570px;
    margin: auto;
}
.sign-up-area .contact-form-action .form-heading {
    margin-bottom: 33px;
}
.sign-up-area .contact-form-action .form-heading .form-title {
    font-size: 38px;
    color: #233d63;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.sign-up-area .contact-form-action .form-heading .form-desc {
    font-size: 18px;
    color: #677286;
    font-weight: 500;
}
.sign-up-area .contact-form-action .form-heading .reset-desc {
    line-height: 30px;
    margin-top: 15px;
}
.sign-up-area .contact-form-action .form-heading .reset-desc a {
    color: #09acd9;
}
.sign-up-area .contact-form-action .form-heading .reset-desc {
    font-size: 16px;
}
.sign-up-area .contact-form-action .form-heading .reset-desc a {
    font-weight: 600;
}
.sign-up-area .contact-form-action form .submit-btn {
    margin-top: 24px;
}
.sign-up-area .contact-form-action form .default-btn {
    font-size: 14px;
    padding: 12px 20px;
    background-color: transparent;
    margin-bottom: 30px;
}
.sign-up-area .contact-form-action form .default-btn::before {
    border-top: 10px solid transparent;
    border-left: 10px solid #09acd9;
    border-bottom: 10px solid transparent;
    top: 10px;
}
.sign-up-area .contact-form-action form .default-btn:hover::before {
    border-top: 10px solid transparent;
    border-left: 10px solid #fff;
    border-bottom: 10px solid transparent;
    top: 10px;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(2) .default-btn {
    border-color: #3b5998;
    color: #3b5998;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(2) .default-btn::before {
    border-left: 10px solid #3b5998;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(2) .default-btn:hover {
    color: #fff;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(2) .default-btn:hover::before {
    border-left: 10px solid #fff;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(2) .default-btn:hover::after {
    background-color: #3b5998;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(3) .default-btn {
    border-color: #1da1f2;
    color: #1da1f2;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(3) .default-btn::before {
    border-left: 10px solid #1da1f2;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(3) .default-btn:hover {
    color: #fff;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(3) .default-btn:hover::before {
    border-left: 10px solid #fff;
}
.sign-up-area .contact-form-action form .col-lg-4:nth-child(3) .default-btn:hover::after {
    background-color: #1da1f2;
}
.sign-up-area .contact-form-action form .reset-btn {
    margin-top: 0;
}
.sign-up-area .contact-form-action form .form-condition {
    margin-bottom: 20px;
}
.sign-up-area .contact-form-action form .form-condition .agree-label {
    font-weight: 600;
}
.sign-up-area .contact-form-action form .form-condition .agree-label a {
    color: #09acd9;
}
.sign-up-area .contact-form-action form .form-group {
    margin-bottom: 30px;
}
.sign-up-area .contact-form-action .account-desc {
    margin-top: -8px;
    font-weight: 600;
}
.sign-up-area .contact-form-action .account-desc a {
    color: #09acd9;
    margin-left: 10px;
    font-weight: 600;
}
.sign-up-area .contact-form-action #chb1 {
    position: relative;
    top: 1px;
}
.sign-up-area .contact-form-action #chb2 {
    position: relative;
    top: 1px;
}
.sign-up-area .contact-form-action .forget {
    float: right;
    color: #09acd9;
    font-weight: 600;
}
.sign-up-area .contact-form-action .now-register {
    font-weight: 600;
    float: right;
}
.sign-up-area .contact-form-action .now-register a {
    color: #09acd9;
}
.sign-up-area .contact-form-action .now-log-in {
    color: #09acd9;
    font-weight: 600;
}
.sign-up-area .contact-form-action .now-log-in .font-q {
    font-weight: 600;
}
.global-location-area .single-location {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.global-location-area .single-location::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #09acd9;
    border-radius: 4px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}
.global-location-area .single-location a {
    color: #09acd9;
    padding: 25px;
}
.global-location-area .single-location a i {
    font-size: 20px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 3px;
}
.global-location-area .single-location a span {
    font-size: 16px;
    font-weight: 600;
}
.global-location-area .single-location:hover a {
    color: #fff;
}
.global-location-area .single-location:hover::before {
    width: 100%;
}
.single-address {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}
.single-address::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #09acd9;
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address i {
    font-size: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #09acd9;
    border-radius: 50%;
    margin-bottom: 15px;
    color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address h3 {
    margin-bottom: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address a {
    display: block;
    color: #7a7e9a;
    margin-bottom: -8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address span {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address p {
    margin-bottom: -8px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.single-address:hover::before {
    width: 100%;
}
.single-address:hover i {
    background-color: #fff;
    color: #09acd9;
}
.single-address:hover h3 {
    color: #fff;
}
.single-address:hover span {
    color: #fff;
}
.single-address:hover a {
    color: #fff;
}
.single-address:hover p {
    color: #fff;
}
.contact-area .contact-wrap {
    max-width: unset;
}
.contact-area .contact-wrap .section-title {
    text-align: center !important;
    max-width: 600px;
}
.contact-area .contact-wrap .section-title h2 {
    margin-bottom: 10px;
}
.contact-area .contact-wrap .form-group {
    margin-bottom: 30px;
}
.contact-area .contact-wrap .default-btn {
    margin: auto;
    display: table;
    cursor: pointer;
    background-color: transparent;
}
.contact-area .contact-wrap .contact-form {
    background-color: #fff;
    -webkit-box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    box-shadow: 0 0 29px 0 rgba(102, 102, 102, 0.08);
    padding: 40px;
}
.list-unstyled {
    color: #dc3545;
}
.contact-map-area #map {
    height: 500px;
}
.road-transfort {
    margin-top: 30px;
    margin-bottom: 30px;
}
.road-transfort .owl-next {
    position: absolute;
    top: 50%;
    right: 30px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.road-transfort .owl-next i {
    background-color: #09acd9;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    border-radius: 4px;
}
.road-transfort .owl-next i:hover {
    background-color: #09acd9 !important;
}
.road-transfort .owl-prev {
    position: absolute;
    top: 50%;
    left: 30px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.road-transfort .owl-prev i {
    background-color: #09acd9 !important;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    font-size: 26px;
    border-radius: 4px;
}
.road-transfort .owl-prev i:hover {
    background-color: #09acd9 !important;
}
.road-transfort .owl-theme .owl-nav {
    margin-top: 0 !important;
}
.road-transfort .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}
.service-faq-main {
    margin-top: 30px;
    margin-bottom: 30px;
}
.service-faq-main .faq-area .faq-accordion .accordion .accordion-item {
    padding-left: 0;
}
.service-faq-main .faq-area .faq-accordion .accordion .accordion-title {
    font-weight: 400;
}
.service-faq-main .faq-area .faq-accordion .accordion .accordion-content {
    font-size: 14px;
    font-weight: 400;
}
.service-faq-main ul {
    margin-top: 0 !important;
}
.careers-img {
    background-image: url(../img/over-view-img.html);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.office-map-area.office-map-area-two {
    padding-top: 170px;
    padding-bottom: 100px;
}

/*gallery css*/
.portfolio-menu{
    text-align:center;
}
.portfolio-menu ul li{
    display:inline-block;
    margin:0;
    list-style:none;
    padding:10px 15px;
    cursor:pointer;
    -webkit-transition:all 05s ease;
    -moz-transition:all 05s ease;
    -ms-transition:all 05s ease;
    -o-transition:all 05s ease;
    transition:all .5s ease;
}

.portfolio-item{
    /*width:100%;*/
}
.portfolio-item .item{
    /*width:303px;*/
    float:left;
    margin-bottom:10px;
}

/*topbar_section*/

/*extra css*/
.top-header1 {
  background-color: #09acd9;
}

.top-header1 .header-left-content {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-header1 .header-left-content li {
  display: inline-block;
  margin-right: 30px;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
}

.top-header1 .header-left-content li:last-child {
  margin-right: 0;
}

.top-header1 .header-left-content li i {
  color: #ffffff;
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  top: -2px;
  left: 0;
}

.top-header1 .header-left-content li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
}

.top-header1 .header-left-content li a:hover {
  color: #000024;
}

.top-header1 .header-right-content {
  line-height: 1;
  text-align: right;
}
.top-header1 .logon1{
    padding-top:9px;
    color: #fff;
}

/*bottom call , whatsapp button */
*call whatsapp button css*/

.bottom_call_file_w p{
  margin-bottom: 0 !important;
  font-size:9px;
  letter-spacing: 0.4px;
}
.bottom_call_file_w .fa{
  font-size:19px !important;
}

@media only screen and (min-width:360px) and (max-width:640px) {
    .border-ri {
        border-right: solid 1px #ddd;
        display: block;
        width: 20%!important
    }
    .bottom_call_file_w{
      display: block !important;
    }
    .border-ri:last-child{
      border-right: 0 !important;
    }
    .bottom_call_file_w .container{
     padding-left: 10px !important;
     padding-right: 10px !important;
    }
    .bottom_call_file_w,
    .bottom_call_file_w a {
        color: #fff;
        width: 100%;
        float: left
    }
    .bottom_call_file_w {
        position: fixed;
        padding: 0;
        background: #fc0d2d;
        z-index: 99999;
        bottom: 0;
        margin-right: auto;
        margin-left: auto;
        display: block;
        border-top: solid 1px #ddd
    }
    .bottom_call_file_w a {
        font-size: 9px!important;
        padding: 5px 0;
        text-align: center!important
    }
    .call-banner,
    .or-banner,
    .signup-banner {
        text-align: center
    }
    .bottom_call_file_w a:hover {
        color: #fff!important
    } 
.quote-section form input[type="submit"]{
  width: 50% !important;
}

}



@media only screen and (min-width:603px) and (max-width:767px) {
    .bottom_call_file_w a:hover {
        color: #fff!important
    }
}

@media (min-width:768px){
  #get_a_quote .modal-dialog{width:480px;}
  #id01 .modal-dialog{width:80%;}
}

/*extra css*/
.bottom_call_file_w{
  display: none;
}

.bottom_call_file_w .bx{
    padding-top:6px;
    font-size:20px;

}
.bottom_call_file_w .fab{
    font-size:20px;
     padding-top:6px;
}
.bottom_call_file_w p{
    font-size:9px;
    font-weight: normal;
    letter-spacing: 0.5px;
}