@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: Gotham-Black;
    src: url(/font/Gotham-Black.woff2) format("woff2"), url(/font/Gotham-Black.woff) format("woff"), url(/font/gotham-black.otf) format("otf");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gotham-Light;
    src: url(/font/Gotham-Light.woff2) format("woff2"), url(/font/Gotham-Light.woff) format("woff"), url(/font/gotham-light.otf) format("otf");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gotham-Medium;
    src: url(/font/Gotham-Medium.woff2) format("woff2"), url(/font/Gotham-Medium.woff) format("woff"), url(/font/gotham-medium.otf) format("otf");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gotham-Bold;
    src: url(/font/Gotham-Bold.woff2) format("woff2"), url(/font/Gotham-Bold.woff) format("woff"), url(/font/gotham-bold.otf) format("otf");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gotham-Book;
    src: url(/font/Gotham-Book.woff2) format("woff2"), url(/font/Gotham-Book.woff) format("woff"), url(/font/gotham-book.otf) format("otf");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
:root {
    --vs-secondary: #3952a2;
    --vs-primary: #ad0a04;
    --vs-blue: #5569aa;
    --vs-lightgray: #5c5c5c;
    --vs-light: #f1f1f1;
    --vs-white: #ffffff;
    --vs-bordercolor: #eaeaea;
    --vs-graytext: #5c5c5c;
    --vs-black: #000000;
    --vs-border-gray: #3a4770;
    --vs-background-color: #e5e5e5;
    --vs-darktext: #363636;
    --primaryBold: "Gotham-Bold";
    --primaryNormal: "Gotham-Book";
    --primaryMedium: "Gotham-Medium";
    --primaryBlack: "Gotham-Black";
    --vs-light-primary: #f4f4f4;
    --default-font : "DM Sans", sans-serif;
	--accent-font : "Epilogue", sans-serif;
}


* {
    outline: none;
}

img {
    /* width: 100%; */
    object-fit: cover;
}

a {
    text-decoration: none !important;
}

p,
a {
    font-size: 16px;
}

.container {
    max-width: 1160px;
}

/* .btn {
    padding: 12px 25px 12px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font-size: 18px;
} */

.btn-primary {
    background-color: var(--vs-primary) !important;
    border-color: var(--vs-primary) !important;
    transition: all ease-in-out .6s;
}

.btn-primary a {
    color: var(--vs-white) !important;
    transition: all ease-in-out .6s;
}

/* .btn-primary:hover {
    background-color: var(--vs-white);
    border-color: var(--vs-white);
} */

/* .btn-primary:hover a {
    color: var(--vs-black) !important;
} */


/* top bar */
.text-box a {
    color: var(--vs-lightgray);
    line-height: normal;
}

.text-box a:hover {
    color: var(--vs-primary);
}

.top-bar-area {
    background: var(--vs-secondary);
    padding: 0;
}

.flex-box-three {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.top-left p {
    color: var(--vs-white);
    margin: 0;
    font-size: 16px;
}

.clearfix::after {
    display: block;
    content: "";
    clear: both;
}

.top-menu {
    margin: 6px 0;
}

.float-left {
    float: left !important;
}

.top-menu li {
    display: inline-block;
    float: left;
    line-height: 20px;
    border-right: 1px solid var(--vs-blue);
    padding: 0 15px;
}

.top-menu li a {
    color: var(--vs-white);
    transition: all 500ms ease;
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

/* top bar end  */

/* header upper start  */
header.header-area {
    position: fixed;
    width: 100%;
    z-index: 111;
    /* box-shadow: 0 0 4px rgba(0, 0, 0, .09); */
}

.header-area .header-upper .inner-content {
    border-bottom: 1px solid var(--vs-bordercolor);
    display: block;
    padding: 7px 0;
}

.flex-box-three {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
.navbar-light .navbar-nav .nav-link {
    color: var(--vs-black) !important;
    font-family: "Rubik", Sans-serif !important;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    /* padding: 0px 12px 0px 12px; */
}
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--vs-primary) !important;
}
.state-content .state ul {
    margin: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.state-content .state ul li {
    padding-left: 45px;
    position: relative;
    margin-left: 15px;
    list-style: none;
}

.state-content .state ul li:not(:first-child) {
    border-left: 1px solid var(--vs-bordercolor);
    margin-left: 10px;
}

.state-content .state ul li .icon-box {
    position: absolute;
    top: 0;
    left: 15px;
}

.state-content .state ul li .text-box {
    padding-left: 3px;
}

.header-upper-right p {
    margin: 0;
    display: inline-block;
    float: left;
    font-size: 18px;
    color: var(--vs-graytext);
    line-height: 22px;
}

.header-upper-right .sociallinks-style-one {
    overflow: hidden;
    display: inline-block;
    float: left;
    margin-left: 10px;
    margin-bottom: 0;
    padding-left: 0;
}

.sociallinks-style-one li {
    display: inline-block;
    float: left;
    margin-right: 15px;
}

.sociallinks-style-one li a i {
    color: var(--vs-graytext);
    font-size: 18px;
    transition: all 500ms ease;
}

.sociallinks-style-one li a i:hover {
    color: var(--vs-primary);
}

.icon-box i {
    height: 25px;
    width: 25px;
    border: 1px solid var(--vs-bordercolor);
    text-align: center;
    line-height: 22px;
    border-radius: 50px;
    color: var(--vs-primary);
    font-size: 16px;
}

.text-box p {
    margin-bottom: 0;
    line-height: 30px;
    color: var(--vs-lightgray);
    font-size: 18px;
}

/* header upper start END */

/* nav bar  */
/* .navbar {
    padding: 1rem 0 !important;
} */

.navbar-nav>li>a {
    font-size: 14px;
    text-transform: uppercase;
    /* color: var(--vs-white) !important; */
    font-weight: 600;
    padding: 10px 1rem !important;
}

.bg-white .navbar-nav>li>a {
    color: var(--vs-black) !important;
}

.navbar-nav>li>a:hover {
    color: var(--vs-primary) !important;
}

.navbar-nav>li:last-child>a {
    padding-right: 0;
}

.freeenquiry_button_wrapper .btn {
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 60px;
    width: 100%;
}
.centred {
    text-align: center;
}
.sticky {
    position: fixed;
    top: 0;
    z-index: 99;
    background: white;
    width: 100%;
}

.stickyform {
    position: sticky;
    top: 110px;
}
.dropdown-menu {
    padding: 0 !important;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--vs-bordercolor);
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    padding: 6px 16px;
}

.sub-menu_in {
    position: absolute;
    right: auto;
    top: 0;
    background-color: #f3f3f3;
    padding-left: 0;
    left: 100%;
    display: none;
    width: 255px;
    overflow-y: scroll;
    height: 250px;
}

.sub-menu_in li {
    list-style: none;
}

.sub-menu_in li a {
    display: block;
    color: var(--vs-black);
}

.dropdown-menu li:hover .sub-menu_in {
    display: block;
}

.navbar-expand-lg .navbar-nav {
    width: 100%;
}

/* nav bar  End*/

/* banner wrapper  */
.content-box {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    /* max-width: 1140px; */
    /* margin: auto; */
    left: 5%;
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 11;
}

.content-box h1 {
    font-size: 30px;
    letter-spacing: -2px;
    /* margin-bottom: 34px; */
    line-height: 32px;
    font-weight: 500;
    color: var(--vs-white);
    /* padding: 0 0 1rem 1rem; */
}

.extra-caption {
    position: absolute;
    bottom: 90px;
    right: 0;
    max-width: 1140px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    left: 0;
}

.banner-caption-col {
    background: #3952a2ab;
    max-width: 680px;
    margin-left: auto;
    padding: 20px 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 16% 100%);
    padding-left: 140px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.banner-caption-col h3 {
    font-size: 65px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

.banner-caption-col span {
    display: block;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
}

.banner-caption-col p {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.banner-caption-col a {
    display: block;
    font-size: 45px;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 800;
}

.banner-caption-col a i {
    margin-right: 5px;
    color: #f05a27;
}

.content-box-right .theme-btn.style-one {
    border-radius: 4px;
    padding: 6px 30px;
    margin-top: 20px;
}

.checkbox-view {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-view>label {
    margin-right: 15px;
}

.checkbox-wrapper label {
    font-size: 16px;
}

.popup-form .submits {
    border: none;
    background: #f05a27;
    padding: 7px 25px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    border-radius: 4px;
    margin-top: 15px;
}

.popup-form .btn-close {
    color: #fff;
    background-color: #ffffff;
    opacity: 1;
    border-radius: 100%;
}
.image-layer {
    overflow: hidden;
    position: relative;
}

.image-layer img {
    animation: zoom 35s infinite alternate;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.4, 1.4);
    }
}

.content-box-right img {
    animation: zoom-small-img 35s infinite;
    width: 100%;
}
@keyframes zoom-small-img {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

.carousel-control-next,
.carousel-control-prev {
    width: 8%;
}

.banner-carousel .active .content-box h5 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.banner-carousel .content-box h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--vs-white);
    margin-bottom: 17px;
    text-transform: uppercase;
    opacity: 0;
    padding-right: 55px;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
}

.banner-carousel .content-box h5:before {
    position: absolute;
    content: "";
    background: var(--vs-white);
    width: 45px;
    height: 2px;
    top: 13px;
    right: 0px;
}

.content-box-right ul {
    margin: 0;
    padding: 0;
}
.content-box-left {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}

.content-box-left h3 {
    /* font-size: 80px; */
    color: #fff;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

.content-box-left p {
    font-size: 16px;
    color: var(--vs-white);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0;
    /* -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 2s; */
    font-family: var(--primaryNormal);
}

.content-box-left h4 {
    font-size: 50px;
    color: var(--vs-white);
    font-family: var(--primaryBold);
    font-style: italic;
}

.content-box-left {
    flex: 3;
    margin-right: 60px;
    width: 100%;
    margin-top: -10rem;
    position: relative;
    z-index: 999;
}

.content-box-right {
    position: absolute;
    bottom: 0%;
    right: 0;
    /* width: 100%; */
}

.content-box-right img {
    width: 800px !important;
}

.content-box-right .owl-nav.disabled .owl-prev, .content-box-right .owl-nav.disabled .owl-next {
    background-color: initial;
    box-shadow: initial;
}
.content-box-right ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--vs-white);
    list-style: none;
    line-height: 1.2;
}

.content-box-right ul li:nth-child(1) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 3s;
}

.content-box-right ul li:nth-child(2) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 3.5s;
}

.content-box-right ul li:nth-child(3) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 4s;
}

.content-box-right ul li:nth-child(4) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 4.5s;
}

.content-box-right ul li:nth-child(5) {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 5s;
}

.banner-carousel .active .content-box h3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 5.5s;
}

.banner-carousel .content-box .btn-box .theme-btn {
    padding: 7px 30px;
    margin-right: 35px;
    border-radius: 4px;
    margin-top: 20px;
}

.theme-btn.style-one {
    background: var(--vs-primary);
    border: 1px solid var(--vs-primary);
}

.theme-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    font-weight: 700;
    font-family: "Arimo", sans-serif;
    color: var(--vs-white) !important;
    padding: 10px 38px;
    text-align: center;
    cursor: pointer;
    z-index: 1;
    transition: all 500ms ease;
}

.banner-carousel .content-box .btn-box .user-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--vs-white);
    padding: 20px 0px 22px 85px;
}

.banner-carousel .content-box .btn-box .user-btn i {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 40px;
    color: var(--vs-white);
    border: 2px solid var(--vs-white);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.3);
    transition: all 500ms ease;
}

.banner-carousel .content-box .btn-box .user-btn span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    border-bottom: 1px solid var(--vs-white);
}

.banner-carousel .owl-dots {
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}

.banner-carousel .owl-nav>div {
    position: absolute;
    top: 0;
    margin: auto;
    bottom: 0;
    width: 45px;
    background-color: rgb(255 255 255 / 31%);
    height: 45px;
    text-align: center;
    line-height: 54px;
    border-radius: 50%;
    color: var(--vs-white);
}

.banner-carousel .owl-nav>div i {
    font-size: 26px;
}

.banner-carousel .owl-nav .owl-prev {
    left: 37px;
}

.banner-carousel .owl-nav .owl-next {
    right: 37px;
}

/* banner wrapper END */

/* footer  */
/** main-footer **/

.main-footer {
    position: relative;
    background: #e7e7e7;
    border-top: 1px solid #d9d9d9;
    /* background: url('../images/footer-bg-1.jpg'); */
    /* background-position: center center; */
}
/* .main-footer:after {
    content: '';
    background: url('../images/footer-bg-1.jpg');
    background-size: cover;
    position: absolute;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1;
} */

.main-footer .footer-top {
    position: relative;
    padding: 50px 0px 0px 0px;
}

#cources_wrapper .row {
    justify-content: center;
}

.main-footer .widget-section .logo-widget .footer-logo {
    position: relative;
    margin-bottom: 27px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.main-footer .widget-section p {
    color: var(--vs-black);
    margin: 0;
}

.main-footer .widget-section .logo-widget .text {
    position: relative;
    display: block;
    margin-bottom: 12px;
}

.main-footer .widget-section .logo-widget .info-list li {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--vs-white);
    margin-bottom: 10px;
    padding-left: 26px;
}

.main-footer .widget-section .logo-widget .info-list li:last-child {
    margin-bottom: 0px;
}

.main-footer .widget-section .logo-widget .info-list li a {
    color: var(--vs-white);
}

.main-footer .widget-section .logo-widget .info-list li i {
    position: absolute;
    left: 0px;
    top: 7px;
    font-size: 16px;
    color: var(--vs-primary);
}

.main-footer .widget-section .logo-widget .info-list {
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding-left: 0;
}
.main-footer .widget-section .social-links {
    display: flex;
}
.main-footer .widget-section .social-links li {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.main-footer .widget-section .social-links li:last-child {
    margin-right: 0px;
}

.main-footer .widget-section .social-links li a {
    display: inline-block;
    font-size: 15px;
    color: var(--vs-white);
}

.main-footer .widget-section .logo-widget {
    position: relative;
    margin-right: -30px;
    margin-top: -16px;
}

.ml-70 {
    margin-left: 70px;
}

.main-footer .widget-section .footer-widget .widget-title {
    position: relative;
    display: block;
    margin-bottom: 31px;
}
.iphone-logo img {
    height: 60px;
}
.main-footer .widget-section .footer-widget .widget-title h4 {
    position: relative;
    display: inline-block;
    color: var(--vs-white);
    margin: 0px;
    padding-right: 57px;
}

/* .main-footer.alternet-2 .widget-section .footer-widget .widget-title h4:before {
    background: var(--vs-primary);
}

.main-footer .widget-section .footer-widget .widget-title h4:before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 16px;
    right: 0px;
} */

.main-footer .widget-section .links-widget .widget-content ul li {
    position: relative;
    display: block;
    padding-left: 22px;
    margin-bottom: 10px;
}

.main-footer .widget-section .links-widget .widget-content ul li:before {
    position: absolute;
    content: "\f101";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 12px;
    color: #fff;
    left: 0px;
    top: 0px;
}

.main-footer .widget-section .links-widget .widget-content ul li:last-child {
    margin-bottom: 0px;
}

.main-footer .widget-section .links-widget .widget-content ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--vs-white);
}

.main-footer .widget-section .newsletter-widget .widget-content .text {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group {
    position: relative;
    margin-bottom: 10px;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group:last-child {
    margin-bottom: 0px;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group input[type="text"],
.main-footer .widget-section .newsletter-widget .newsletter-form .form-group input[type="email"] {
    position: relative;
    width: 100%;
    height: 45px;
    font-size: 14px;
    color: var(--vs-white);
    border: 1px solid #ffffff42;
    padding: 10px 50px 10px 20px;
    background: transparent;
    transition: all 500ms ease;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group input::-webkit-input-placeholder {
    color: var(--vs-white);
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group i {
    position: absolute;
    top: 14px;
    right: 20px;
    font-size: 16px;
    color: var(--vs-graytext);
    z-index: 1;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group.message-btn {
    padding-top: 5px;
}

.main-footer .widget-section .newsletter-widget .newsletter-form .form-group .theme-btn {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 7.5px 25px;
}

.main-footer .footer-bottom {
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.main-footer .footer-bottom .copyright p {
    color: var(--vs-black);
    margin: 0px;
}

.main-footer .footer-bottom .copyright p a {
    color: var(--vs-black);
}

.main-footer .footer-bottom .copyright p a:hover {
    color: var(--vs-primary);
}

.social-links {
    padding-left: 0;
    margin-top: 25px;
}

.social-links>li>a>i {
    font-size: 18px;
}

/* end footer  */

/*--------------------------------------------------------------
# Business Growth
--------------------------------------------------------------*/
.business-growth__top {
    padding: 50px 0 50px;
    position: relative;
    display: block;
    z-index: 1;
}

.business-growth-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--vs-secondary);
    z-index: -1;
    overflow: hidden;
}

.business-growth__left {
    position: relative;
    display: block;
    text-align: center;
}

.section-title {
    margin: 1rem 0;
}

.business-growth__left .section-title__tagline {
    color: var(--vs-white);
}

.section-title__tagline {
    display: inline-flex;
    color: var(--vs-white);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}


.business-growth__left .section-title__title {
    color: var(--vs-white);
}

.section-title__title {
    margin: 0;
    font-weight: 800;
    color: var(--vs-white);
    font-size: 45px;
    line-height: 60px;
}

.section-title__title {
    margin: 0;
    font-weight: 800;
    color: var(--vs-black);
    font-size: 50px;
    line-height: 60px;
}

.business-growth__right {
    position: relative;
    display: block;
    margin-top: 12px;
}

.business-growth__right-text {
    margin: 0;
    color: var(--vs-white);
    line-height: 37px;
}

.business-growth__bottom {
    position: relative;
    display: block;
    margin-top: -70px;
    z-index: 2;
}

.business-growth__single {
    position: relative;
    display: block;
}

.business-growth__img {
    position: relative;
    display: block;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    overflow: hidden;
}

.business-growth__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    padding: 25px 15px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.business-growth__title {
    line-height: 26px;
    margin-bottom: 0px;
}

.business-growth__title a {
    color: var(--vs-black);
    transition: all 500ms ease;
    font-size: 16px;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-growth__text {
    font-size: 16px;
    margin: 0;
    line-height: 30px;
    color: var(--vs-graytext);
}

.business-growth__content:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--vs-primary);
    height: 10px;
    transition: all 500ms ease;
}

.business-growth__find {
    position: relative;
    display: block;
}

.business-growth__find-inner {
    position: relative;
    display: block;
    text-align: center;
    padding-top: 18px;
    padding-bottom: 39px;
}

.business-growth__find-inner p {
    font-size: 16px;
    margin: 0;
}

.business-growth__find-inner a {
    color: var(--vs-primary);
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth__find-inner a:before {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 2px;
    content: "";
    background-color: var(--vs-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.business-growth {
    position: relative;
    display: block;
    background-color: var(--vs-background-color);
    z-index: 1;
    padding-bottom: 0px;
}

.busniness_solution .owl-nav div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    line-height: 38px;
    background-color: var(--vs-secondary);
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.busniness_solution .owl-nav .owl-prev {
    left: -20px;
}

.busniness_solution .owl-nav .owl-next {
    right: -20px;
}

.busniness_solution .owl-nav div i {
    color: var(--vs-white);
}

/* end ********************************* */

/* about us  */
.about-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.about-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.about-one__img-box {
    position: relative;
    display: block;
}

.about-one__img-box:before {
    position: absolute;
    top: 0;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--vs-primary);
    content: "";
    border-radius: 8px;
}

.about-one__img-box:after {
    position: absolute;
    top: 220px;
    left: -50px;
    width: 30px;
    height: 200px;
    background-color: var(--vs-secondary);
    content: "";
    border-radius: 8px;
}

.about-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.about-one__img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1;
}

.about-one__img>img {
    width: 100%;
    border-radius: 8px;
}

.about-one__small-img {
    position: absolute;
    bottom: -90px;
    left: -120px;
    z-index: 2;
}

.about-one__small-img>img {
    border-radius: 8px;
}

.about-one__right {
    position: relative;
    display: block;
}

.about-one__right .section-title {
    margin-bottom: 28px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--vs-graytext);
    font-size: 18px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 2px;
    font-weight: 500;
}

.about-one__text {
    margin: 0;
}

.about-one__points-box {
    position: relative;
    display: block;
    margin-left: 21px;
    margin-top: 32px;
}

.about-one__points-box:before {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -21px;
    content: "";
    background-color: var(--vs-secondary);
    width: 2px;
}

.about-one__points {
    position: relative;
    display: block;
}

.about-one__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__points li .icon i {
    font-size: 13px;
    color: var(--vs-white);
    background-color: var(--vs-primary);
    border-radius: 50px;
    padding: 4px;
}

.about-one__points li .text {
    margin-left: 16px;
}

.about-one__points li .text p {
    color: var(--vs-black);
    margin: 0;
}

.about-one__it-solutions {
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--vs-bordercolor);
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 39px;
}

.about-one__it-solutions-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.about-one__it-solutions-text-box {
    margin-left: 20px;
}

.about-one__it-solutions-text {
    font-weight: 600;
    color: var(--vs-black);
    margin: 0;
    line-height: 30px;
}

.about-one__points li+li {
    margin-top: 6px;
}

.about-one__it-solutions-icon img {
    height: 61px;
}

/* about us END */

/* explore project  */
.project-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.project-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.project-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    z-index: 1;
}

.project-one__img img {
    width: 100%;
}

.project-one__content {
    position: relative;
    display: block;
    background-color: var(--vs-white);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 32px 40px 39px;
    margin-top: -108px;
    margin-left: 30px;
    margin-right: 30px;
    overflow: hidden;
    transition: all 500ms ease;
    z-index: 2;
}

.project-one__tagline {
    color: var(--vs-graytext);
    font-size: 14px;
    margin: 0;
    line-height: 27px;
    transition: all 500ms ease;
}

.project-one__title {
    font-weight: 800;
    line-height: 40px;
}

.project-one__title a {
    color: var(--vs-blackk);
    transition: all 500ms ease;
    font-size: 30px;
}

.project-one__arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.project-one__arrow a {
    color: var(--vs-black);
    font-size: 20px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

section.project-one {
    overflow: hidden;
    padding: 120px 0 120px;
    background-color: var(--vs-background-color);
}

.project-one__carousel .owl-nav div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--vs-white);
    text-align: center;
    line-height: 45px;
}

.project-one__carousel .owl-nav .owl-prev {
    left: -29px;
}

.project-one__carousel .owl-nav .owl-next {
    right: -29px;
}

.project-one__single:hover .project-one__content {
    background-color: var(--vs-primary);
}

.project-one__single:hover .project-one__content i,
.project-one__single:hover .project-one__content p,
.project-one__single:hover .project-one__content h2 {
    color: var(--vs-white);
}

.project-one__carousel .owl-dots {
    text-align: center;
}

/* explore project END */

/* news style / */
.news-style-three .upper-box {
    position: relative;
    display: block;
}

.news-style-three .upper-box .title-inner {
    position: relative;
    display: block;
    max-width: 900px;
    width: 100%;
}

.news-style-three .upper-box .title-inner .sec-title {
    width: 50%;
}

.sec-title {
    position: relative;
    display: block;
    font-family: var(--primaryNormal);
}

.sec-title.left.style-three h5 {
    padding-right: 35px;
}

.sec-title.style-three h5 {
    color: var(--vs-black);
}

.sec-title h5 {
    font-size: 17px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title h2 {
    display: block;
    font-size: 32px;
    line-height: 32px;
    color: var(--vs-black);
    font-weight: 700;
    text-transform: uppercase;
}

.news-style-three .upper-box .title-inner .text {
    position: relative;
    padding-left: 30px;
    margin-top: 4px;
    width: 50%;
}

.pull-left {
    float: left;
}

.news-block-two {
    margin-bottom: 20px
}

.news-style-three .upper-box .title-inner .text:before {
    position: absolute;
    content: "";
    background: var(--vs-border-gray);
    width: 1px;
    height: 75px;
    left: -40px;
    top: 3px;
}

.news-style-three .upper-box .btn-box {
    position: absolute;
    top: 25px;
    right: 0px;
}

.news-style-three .left-block {
    position: relative;
}

.news-block-two .inner-box {
    position: relative;
    display: block;
    overflow: hidden;
}


.news-block-two .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    height: 200px;
}

figure {
    margin: 0px;
}

/* .news-block-two .inner-box .image-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    background: -webkit-linear-gradient(-90deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: all 500ms ease;
} */

.news-block-two .inner-box .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-block-two .lower-content {

    padding: 20px;
    background-color: #3952a2;
}

.news-block-two .lower-content .post-info {
    position: relative;
    display: block;
    margin-bottom: 0px;
    padding-left: 0;
}

.news-block-two .lower-content .post-info li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--vs-white);
    margin-right: 17px;
}

.news-block-two .lower-content .post-info li:not(:last-child)::before {
    position: absolute;
    content: "";
    background: var(--vs-white);
    height: 13px;
    width: 1px;
    top: 5px;
    right: -11px;
}

.news-block-two .lower-content .post-info li a {
    color: var(--vs-white);
}

.news-block-two .lower-content .post-info li:last-child {
    margin-right: 0px;
}

.news-block-two .lower-content h3 {
    color: var(--vs-white);
    margin-bottom: 10px;

}

.news-block-two .lower-content h3 a {
    line-height: 21px;
    font-size: 17px;
    display: inline-block;
    color: var(--vs-white);
    font-weight: 800;
    display: -webkit-box;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-block-two .lower-content .link {
    position: relative;
    display: block;
    padding-top: 8px;
}

.news-block-two .lower-content .link {
    border-top: 1px solid var(--vs-bordercolor);
}

.news-block-two .lower-content .link a {
    position: relative;
    display: inline-block;
}

.news-block-two .lower-content .link a span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 14px;
    color: var(--vs-primary);
    font-weight: 400;
    border-bottom: 1px solid var(--vs-primary);
    transition: all 500ms ease;
}

.news-block-two .lower-content .link a i {
    margin-right: 6px;
    vertical-align: middle;
    color: var(--vs-primary);
}

.news-block-one .inner-box {
    position: relative;
    display: block;
}

.news-block-one .inner-box .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--vs-black);
}

.news-block-one .inner-box .image-box img {
    width: 100%;
    transition: all 500ms ease;
}

.news-style-three .news-block-one .lower-content {
    padding-top: 26px;
}

.news-block-one .lower-content {
    position: relative;
    padding-top: 32px;
}

.news-block-one .lower-content .post-info {
    padding-left: 0;
    position: relative;
    display: block;
    margin-bottom: 7px;
}

.news-block-one .lower-content .post-info li:first-child {
    margin-right: 17px;
}

.news-block-one .lower-content .post-info li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--vs-graytext);
}

.news-block-one .lower-content .post-info li:first-child:before {
    position: absolute;
    content: "";
    background: var(--vs-border-gray);
    height: 13px;
    width: 1px;
    top: 6px;
    right: -11px;
}

.news-block-one .lower-content .post-info li a {
    color: var(--vs-graytext);
}

.news-style-three .news-block-one .lower-content h3 {
    line-height: 30px;
}

.news-block-one .lower-content h3 a {
    display: inline-block;
    color: var(--vs-black);
    font-size: 24px;
    font-weight: 800;


}

.news-style-three .news-block-one .lower-content p {
    margin-bottom: 29px;
}

.news-style-three .news-block-one .lower-content .link {
    position: relative;
    display: block;
    padding-top: 16px;
}

.news-style-three .news-block-one .lower-content .link {
    border-top: 1px solid var(--vs-border-gray);
}




.news-block-one .lower-content .link a span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 16px;
    color: var(--vs-black);
    font-weight: 700;
    border-bottom: 1px solid var(--vs-bordercolor);
    transition: all 500ms ease;
}

.news-style-three .news-block-one .lower-content .link a i {
    margin-right: 5px;
    vertical-align: middle;
}

section.news-style-three {
    padding: 80px 0;
}

/* news style /END */

/* team-one */
.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 500ms ease;
    height: 400px;
}
.team-one__img::after {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    content: '';
    transition: all ease-in-out .4s;
}
.team-one__img:hover::after {
    background-color: initial;
}
.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    font-size: 100px;
    line-height: 20px;
    color: var(--vs-white);
    text-align: center;
    transition: all 1s ease;
    z-index: 1;
}
.team-one__img.video-icon i {
    transition: all 1s ease-in-out;
}
.team-one__img:hover .video-icon i {
    transform: scale(1.1);
}


.team-one__img img {
    width: 100%;
    /* border-radius: 8px; */
    transition: all 500ms ease;
    transform: scale(1);
    height: 100%;
    object-fit: cover;
}

.team-one__content {
    position: relative;
    display: block;
    /* text-align: center; */
    /* padding: 12px 0 6px; */
    /* border-bottom-left-radius: 8px; */
    /* border-bottom-right-radius: 8px; */
    z-index: 1;
    background-color: var(--vs-black);
    width: 80%;
    margin: 0 auto;
    margin-top: -120px;
    color: var(--vs-white);
    padding: 20px;

}

.team-one__name {
    font-size: 20px;
    font-weight: 800;
    line-height: 20px;
    margin: 0px;
    padding: 15px 0 0;
}

.team-one__title {
    font-size: 14px;
    margin: 0;
    line-height: 24px;
    text-align: left;
}

section.team-one {
    padding: 80px 0px;
}

/* team-one END */



/* student experience start  */

section.students-stories {
    padding: 80px 0px;
    background-color: var(--vs-background-color);
}



.stories__wrapper {
    padding: 0 60px;
    position: relative;
}


.students-stories .swiper-pagination {
    bottom: -12px !important;
}

/*
.video-block{
    width: 100%;
    margin-right: 20px;
    position: relative;
    margin-bottom: 22px;
    height: 270px !important;
    border-radius: 5px;
    overflow: hidden;
} */

.video-block span {
    color: var(--vs-black);
    padding: 8px 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.3;
    width: 100%;
    display: block;
}

.box .inner {
    position: relative;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.inner img {
    transform-style: preserve-3d;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all ease-in-out .3s;
}
.box:hover img {
    transform: scale(1.1);
}

.two-item-carousel .owl-nav .owl-next {
    right: -30px;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #e00d0d;
    border: 0;
    border-radius: .25rem;
    opacity: 1;
    background-color: white;
    border-radius: 50%;
}

.two-item-carousel .owl-nav .owl-prev {
    left: -47px;
}

.two-item-carousel .owl-nav div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 35px;
    height: 35px;
    background-color: var(--vs-white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fb-modal .modal-dialog {
    max-width: 700px;
}

.stories__wrapper .inner:hover .v-modal::before {
    opacity: 1;
    visibility: visible;
}

/* testimonial section  */
section.testimonial-bg {
    background-color: var(--vs-background-color);
}

.testimonial-style-two .testimonial-content .inner-box {
    position: relative;
    display: block;
}

.testimonial-style-two .testimonial-content .inner-box .text {
    position: relative;
    display: block;
    padding: 37px 40px 54px 40px;
    border: 1px solid #cdd8e6;
    border-radius: 10px;
    margin-bottom: 45px;
    transition: all 500ms ease;
    background-color: var(--vs-white);
}

.testimonial-style-two .testimonial-content .inner-box .text:before {
    position: absolute;
    content: "";
    background: var(--vs-white);
    width: 29px;
    height: 29px;
    left: 54px;
    bottom: -14px;
    transform: rotate(45deg);
    box-shadow: 1px 1px #cdd8e6;
}

.testimonial-style-two .testimonial-content .inner-box .text {
    position: relative;
}

.testimonial-style-two .testimonial-content .inner-box .text p {
    line-height: 28px;
    color: var(--vs-black);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-style-two .testimonial-content .inner-box .text .read-more {

    color: var(--vs-primary);
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}


.testimonial-style-two .testimonial-content .inner-box .text .read-more:hover {

    color: var(--vs-secondary);
    text-decoration: underline;

}



.testimonial-style-two .testimonial-content .inner-box .author-info {
    position: relative;
    margin-left: 30px;
    padding: 14px 0px 20px 100px;
}

.testimonial-style-two .testimonial-content .inner-box .author-info .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-style-two .testimonial-content .inner-box .author-info h5 {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--vs-black);
    margin: 0px;
}

.testimonial-style-two .testimonial-content .inner-box .author-info .designation {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.testimonial-style-two .testimonial-content .inner-box .author-info .designation {
    color: var(--vs-primary);
}

section.testimonial-style-two {
    padding: 80px 0;
    /* background-color: var(--vs-light-primary); */
}

.testimonial-style-two .testimonial-content .inner-box .text i {
    position: absolute;
    right: 25px;
    bottom: 20px;
    color: #e4ecf3;
    font-size: 50px;
    line-height: 50px;
}

.three-item-carousel .owl-nav div {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 45px;
    height: 45px;
    background-color: var(--vs-background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three-item-carousel .owl-nav .owl-prev {
    left: -79px;
}

.three-item-carousel .owl-nav .owl-next {
    right: -79px;
}

.three-item-carousel .owl-dots {
    text-align: center;
    margin-top: 45px;
}

/* testimonial section End */

/* course wrapper  */
.service-block-two .inner-box {
    position: relative;
    padding-left: 136px;
    margin-bottom: 48px;
}

.service-block-two .inner-box .icon-box {
    position: absolute;
    left: 0px;
    top: 6px;
    width: 110px;
    height: 110px;
    /* line-height: 110px; */
    text-align: center;
    font-size: 60px;
    color: var(--vs-white);
    border: 3px solid var(--vs-border-gray);
    border-radius: 50%;
    z-index: 1;
    transition: all 500ms ease;
    overflow: hidden;
    background-color: var(--vs-black);
}

.service-block-two .inner-box h4 {
    color: var(--vs-black);
    margin-bottom: 10px;
}

.service-block-two .inner-box h4 a {
    color: var(--vs-black);
    font-size: 20px;
    text-transform: uppercase;
}

.service-block-two .inner-box p {
    color: var(--vs-darktext);
    margin-bottom: 10px;
}

.service-block-two .icon-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#cources_wrapper {
    padding: 80px 0 30px;
    background-color: var(--vs-background-color);
}

.service-block-two .link a span {
    color: var(--vs-primary);
    text-decoration: underline;
}

/* course wrapper END */

/* our partner */
.partner_images img {
    height: 43px;
    width: auto;
}

section#partner_logo_wrapper {
    padding: 80px 0 60px;
    /* background-color: var(--vs-background-color); */
}

.our-partners .owl-nav,
.owl-carousel.destination_slider .owl-nav {
    display: none;
}

.subscriber-review .owl-nav,
.subscriber-review .owl-carousel.destination_slider .owl-nav {
    display: block;
}
.subscriber-review .col-lg-4 .owl-nav,
.subscriber-review .col-lg-4 .owl-carousel.destination_slider .owl-nav {
    display: none;
}

.our-partners .owl-dots {
    text-align: center;
    margin-top: 45px;
}

/* our partner END */

/* enquiry form  */
#enquiery_form .modal-body label {
    font-weight: 600;
    text-transform: capitalize;
    color: var(--vs-primary);
}

#enquiery_form .modal-body input {
    height: 45px;
}

#enquiery_form .modal-content {
    border: 4px solid var(--vs-secondary);
}

#enquiery_form .modal-title {
    color: var(--vs-secondary);
}

/* enquiry form END */

/* header banner  */



#header_background_bread .banner-content h1 {
    color: var(--vs-white);
    position: relative;
    text-transform: capitalize;
    font-size: 3rem;
    font-family: var(--primaryBold);

}


#header_background_bread .banner-content p {
    font-size: 18px;
    font-family: var(--primaryNormal);
    letter-spacing: 1px;
}

.banner-content span {
    font-size: 30px;
}


.banner-content a {
    color: var(--vs-white);
    font-size: 20px;
}
#header_background_bread .banner-content h4 {
    font-size: 18px;
    letter-spacing: 2px;
}

#header_background_bread ul {
    padding-left: 0;
}

#header_background_bread ul li {
    display: inline-block;
}


#header_background_bread ul li a {
    color: var(--vs-white);
    position: relative;
}

#header_background_bread {
    position: relative;
    background-size: cover;
    /* background-image: url(https://driveflux.com/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fbecome-host-hero-image.2b2ae43a.jpg&w=1920&q=75); */
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


#header_background_bread .banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(0%, -50%);
    color: var(--vs-white);
    width: 50%;

}

/* about us page  */
.images_wrapper_img img {
    width: 100%;
}

section#about_content_wrapper {
    padding: 60px 0;
}

.infomation_wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.infomation_wrapper p {
    color: var(--vs-graytext);
}

.wrapper-one {
    padding: 45px;
}

#about_content_one {
    padding-bottom: 60px;
}

/* about us page END */

/* contact page  */

.contact_left_info h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    font-family: var(--primaryBold);
}

.contact_left_info span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    padding-left: 16px;
    position: relative;
}

.contact_left_info span:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 10px;
    height: 2px;
    background-color: var(--vs-primary);
}

.contact_left_info p {
    color: var(--vs-graytext);
    font-family: var(--primaryNormal);
    font-size: 16px;
}

#contactUs_wrapper {
    padding: 70px 0;
}

.input_text_box select,
.input_text_box input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--vs-bordercolor);
    border-radius: 8px;
}

.input_textarea_box textarea {
    width: 100%;
    /* margin-top: 15px; */
    padding: 15px;
    border: 2px solid var(--vs-bordercolor);
    border-radius: 8px;
}

.input_text_box {
    margin-bottom: 20px;
}

.contact_one {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

/* .contact_one_icon {
    width: 55px;
    height: 55px;
    background-color: var(--vs-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 69px;
} */

.contact_one_icon i {
    font-size: 22px;
    color: var(--vs-primary);
}

.footer-newsletter-form .contact_one_icon {
    color: var(--vs-black)
}

.footer-links.footer-quick-links .qr-img img {
    width: 50%;
}

.footer-links.footer-quick-links .contact_one_icon i {
    color: var(--vs-black);
}
.contact_one_address {
    margin-top: -4px;
}
.contact_one_address span {
    color: var(--vs-graytext);
}
.footer-links.footer-quick-links .contact_one_address span {
    color: var(--vs-black);
}
.contact_one_address p {
    font-weight: 600;
}

.footer-links.footer-quick-links .contact_one_address p, .footer-newsletter-form .contact_one_address p  {
    font-weight: 400;
}
.contact_one_address p a {
    color: var(--vs-black);
}

.footer-links.footer-quick-links .contact_one_address p a {
    color: var(--vs-black);
}
.contact_one_address p:hover a {
    color: var(--vs-primary);
}

.footer-links.footer-quick-links .contact_one_address p:hover a {
    color: var(--vs-primary);
}
.footer-links.footer-quick-links .qrcode.d-flex.align-items-center.gap-20 {
    flex-direction: column;
}
#contact_link {
    border-top: 1px solid var(--vs-bordercolor);
    padding-top: 35px;
}

.google_map_wrapper {
    padding-top: 35px;
}

.contact_list_info_wrapper {
    margin-bottom: 55px;
}

/* contact page END */

/* services page  */
#services_wrapper_one {
    padding: 60px 0;
}

.service_block {
    margin-bottom: 35px;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
}

/* services page END */

/* blog page / */
#blog_wrapper_one {
    padding: 60px 0;
}

/* blog page / end */
/* blog detail page  */
#blog_detail_one {
    padding: 60px 0;
}

.blog-details-content .inner-box {
    position: relative;
    display: block;
    border: 1px solid var(--vs-bordercolor);
    border-top: none;
    padding: 0px 45px;
    padding-bottom: 15px;
}

/* .image-box img {
    width: 100%;
    height: 100%;
} */

.blog-details-content .inner-box .post-info {
    position: relative;
    padding: 30px 0px 28px 0px;
    border-bottom: 1px solid var(--vs-bordercolor);
    margin-bottom: 36px;
}

.blog-details-content .inner-box .post-info li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--vs-graytext);
    margin-right: 20px;
}

.blog-details-content .inner-box .post-info li a {
    color: var(--vs-graytext);
}

.blog-details-content .inner-box .post-info li i {
    position: relative;
    font-size: 16px;
    color: var(--vs-secondary);
    margin-right: 8px;
}

.blog-details-content .inner-box .text {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.blog-details-content .inner-box .text h2 {
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: var(--vs-black);
    margin-bottom: 15px;
}

.blog-details-content .inner-box .text p {
    margin-bottom: 20px;
}

.blog-details-content .inner-box .text h5 {
    font-size: 18px;
    line-height: 32px;
    font-weight: 700;
    color: var(--vs-black);
    margin-bottom: 22px;
}

.blog-details-content .inner-box .text h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-top: 12px;
}

.recent_news_one h3 {
    font-size: 24px;
    padding-left: 40px;
    position: relative;
    margin-bottom: 25px;
}

.recent_news_one h3:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    left: 0px;
    top: 15px;
    background-color: var(--vs-primary);
}

.rct_one_flex {
    display: flex;
}

.rct_images {
    width: 83px;
    height: 83px;
    margin-right: 15px;
}

.rct_content {
    width: calc(100% - 98px);
}

.rct_content p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--vs-black);
}

.post-date i {
    margin-right: 5px;
    margin-top: 10px;
}

.post-date {
    color: var(--vs-graytext);
}

.recent_news_one ul li:not(:last-child) {
    border-bottom: 1px solid var(--vs-bordercolor);
}

.recent_news_one ul li {
    list-style: none;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.recent_news_one ul {
    padding-left: 0;
}

/* blog detail page END */

/* ****other**** */
.general_form_wrapper h3 {
    font-size: 24px;
    padding-left: 40px;
    position: relative;
    margin-bottom: 25px;
}

.general_form_wrapper h3:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    left: 0px;
    top: 15px;
    background-color: var(--vs-primary);
}

.general_form_wrapper label {
    font-size: 16px;
    font-weight: 600;
}

.general_form_wrapper {
    box-shadow: 0 0 9px 0 rgb(0 0 0 / 15%);
    padding: 15px;
    margin-bottom: 25px;
}

.is_flex {
    display: flex;
    align-items: center;
}

.top_right_button_area .btn {
    padding: 3px 12px;
    font-size: 14px;
    margin-left: 15px;
    animation: glowing 1500ms infinite;
    border-radius: 0;
    border: none;
}

@keyframes glowing {
    0% {
        background-color: #cf0303;
    }

    50% {
        background-color: #ff0000;
    }

    100% {
        background-color: #cf0303;
    }
}

section#online_apply_wrapper {
    padding: 60px 0;
}

.online_apply_leftSide h4,
.online_apply_leftSide h3 {
    font-size: 38px;
    font-weight: 700;
    color: var(--vs-white);
}

.online_apply_leftSide p {
    font-weight: 700;
    color: var(--vs-primary);
}

.map_wrapper_one {
    margin-top: 45px;
}

.cover_booking_cb_style {
    background-color: #3952a2;
    padding: 25px;
}

.online_apply_form h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--vs-white);
}

.online_apply_form label {
    color: var(--vs-white);
}

#value1 {
    display: flex;
    align-items: center;
}

.serach_bar_sb i {
    font-size: 25px;
    color: var(--vs-primary);
    cursor: pointer;
    vertical-align: middle;
}

.search_wrapper_style {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    z-index: 9;
    padding: 34px 0;
    display: none;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 35%);
}

.search_wrapper_style form {
    position: relative;
    padding: 0;
}

.header-utilities {
    display: none;
}

.search_wrapper_style form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0 !important;
    padding: 5px 20px;
    border: none;
    font-weight: 600;
    font-size: 18px !important;
    background: #f05a27 !important;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search_wrapper_style input {
    width: 100%;
    height: 50px;
    border: 1px solid #e9e9e9;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 4px;
}

.search_wrapper_style i {
    position: absolute;
    top: 0;
    cursor: pointer;
    right: 0;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    background: #f05a27;
    color: #fff;
    font-size: 15px;
    border-radius: 100%;
}

.visible_class {
    display: block;
}

/* ****other**** */
.mobile_menu_cover {
    width: 290px;
    background-color: var(--vs-bordercolor);
    padding: 15px;
    position: fixed;
    left: -300px;
    z-index: 9999;
    height: 100vh;
    overflow-y: scroll;
    transition: ease-in-out 0.5s;
}

.visibleIn_mobile {
    left: 0;
    transition: ease-in-out 0.5s;
}

#metismenu li {
    list-style: none;
}

#metismenu li a {
    display: block;
}

#metismenu li:not(:last-child) {
    border-bottom: 1px solid rgb(0 0 0 / 12%);
}

#metismenu>li>a {
    padding: 10px;
    color: var(--vs-black);
}

#metismenu li ul li a {
    padding: 10px;
    color: black;
}

#metismenu {
    padding-left: 0;
}

.mobile_menu_logo img {
    height: 36px;
    width: auto;
}

.mobile_menu_logo {
    position: relative;
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 16px;
    margin-bottom: 10px;
}

.mobile_menu_logo i {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 27px;
}

#metismenu li ul {
    padding-left: 0;
    background-color: #e1e1e1;
}

.mobile_menu_cover {
    display: none;
}

.logo_section_style img {
    height: 33px;
    width: auto;
}

.style_oneflex {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
}

.toggle_section_one i {
    font-size: 32px;
}

.mobile_menu_style_one {
    display: none;
}

#insititution_wrapper_style_one {
    padding: 60px 0;
}

.ins_logo_wrapper {
    border: 1px solid #d9d6d6;
    padding: 25px;
    margin-bottom: 25px;
}

.institution_head {
    margin-bottom: 25px;
}

.ins_backgound_place {
    background-color: var(--vs-bordercolor);
    height: 175px;
}

.single_logo_notation {
    border: 1px solid black;
    margin-top: -87px;
    margin-bottom: 55px;
}

.icon_wrapper {
    width: 90px;
    height: 90px;
    border: 1px solid var(--vs-border-gray);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon_wrapper i {
    font-size: 48px;
    color: var(--vs-primary);
}

.flex_wrapper_one {
    display: flex;
    justify-content: space-between;
    margin-left: 45px;
}

.box_1 p {
    font-size: 20px;
    margin-top: 15px;
}

.content_one_wrapper h3 {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--vs-primary);
}

#ins_sing_detail_wrapper {
    padding-bottom: 60px;
}

.form_wrapper_one_in h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--vs-primary);
}

.form_wrapper_one_in p {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--vs-graytext);
}

.form_wrapper_one_in {
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 22%);
    padding: 25px;
    position: sticky;
    top: 116px;
}

.submit_button_one_wrapper_ {
    margin-top: 45px;
}

/* list detial  */
#list_detail_info_wrapper_style {
    padding: 60px 0;
}

.list_detail_description_list h3 {
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 600;
}

.list_detail_description_list a {
    color: var(--vs-primary);
    text-decoration: underline;
}

.list_item_wrapper_01 {
    margin-bottom: 25px;
}

/* list detial END */

/* step form  */

.steps {
    margin: 40px 0;
    overflow: hidden;
}

.steps ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.steps ul li {
    /* float: left; */
    color: #c7c7c7;
    padding: 0 15px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -o-transition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
}

.steps ul li:hover,
.steps ul li.active {
    color: #f05a27;
}

.steps ul li:hover span,
.steps ul li.active span {
    background: #f05a27;
    color: #fff;
    border-color: #f05a27;
}

.steps ul li:hover::after,
.steps ul li.active::after {
    background: #f05a27;
    width: 100%;
}

.steps ul li::before,
.steps ul li::after {
    content: "";
    position: absolute;
    left: -50%;
    top: 22px;
    width: 100%;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -o-transition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.steps ul li::after {
    width: 0;
}

.steps ul li span {
    display: block;
    margin: 0 auto 15px;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    border: 2px solid #c7c7c7;
    text-align: center;
    background: #fff;
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    color: #c7c7c7;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0;
    -moz-transition: all 0.4s ease-in-out 0;
    -ms-transition: all 0.4s ease-in-out 0;
    -o-transition: all 0.4s ease-in-out 0;
    transition: all 0.4s ease-in-out 0;
}

.steps ul li span i {
    line-height: 50px;
}

.steps ul li:first-child::before,
.steps ul li:first-child::after {
    display: none;
}

.form-container {
    clear: both;
    display: none;
    left: 100%;
    background: #fff;
}

.form-container.active {
    display: block;
}

.form-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.form-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 2px;
    background: #f05a27;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.steps li span i {
    font-size: 32px;
}

.form_main_heading {
    text-align: center;
}

.form_main_heading h3 {
    font-weight: lighter;
}

.form_main_heading p {
    color: #7c7c7c;
}

#Agent_application_form_wrapper {
    padding: 60px 0;
}

.form_title {
    border-bottom: 1px solid #3952a2;
}

.form_title p {
    margin-bottom: 0;
    font-size: 20px;
    color: #3952a2 !important;
}

.form_title {
    margin-bottom: 25px;
}

.form_inner_wrapper label {
    margin-bottom: 0;
    color: #767676;
}

.form_inner_wrapper span {
    font-size: 14px;
    font-style: italic;
    color: #767676;
}

.gender_form .form-check {
    margin-right: 35px;
}

.form_next_button {
    text-align: center;
    margin-top: 45px;
}

.form_inner_wrapper p {
    color: #767676;
}

.traning_spacing .form-check {
    margin-right: 40px;
}

.destination_label {
    margin-bottom: 0;
}

.reference_label {
    color: black !important;
}

.upload_wrapper_style input {
    opacity: 0;
    height: 80px;
}

.upload_wrapper_style {
    background-color: #f1f0ef;
    width: 50%;
    position: relative;
}

.upload_wrapper_style:before {
    content: "Upload document here";
    position: absolute;
    margin: auto;
    top: 50%;
    text-align: center;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.form_top_spacing {
    margin-top: 45px;
}

.submission_style {
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

.term_and_condition_style {
    width: 23%;
    margin: 0 auto;
    border: 1px solid #3952a2;
    padding: 15px;
}

.red_c {
    color: red !important;
    font-size: 18px !important;
}

/* step form END */

#general_wrapper_style {
    padding: 30px 0;
}

/* counter up js Start */
.counter-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-list b {
    display: block;
    margin-left: 10px;
    font-size: 30px;
    color: #f05926;
}

.counterUP_js .counter {
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    color: #f05926;
    font-style: normal;
}

.counterUP_js {
    padding-bottom: 10px;
    text-align: center;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%); */
    padding: 15px;
}

.Id_name {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--vs-white);
}

.symbol_id {
    font-size: 55px;
}

#counterUp_js-section {
    padding: 0px 0 80px;
    background-color: var(--vs-background-color);
}

/* counter up js END */

.mobile_only_social {
    display: none;
}

.mobile-only_contact {
    display: none;
}

.mobile-only-search {
    display: none;
}


.course-image {
    height: 450px;
}


.gallery-title span {
    background-color: rgba(0, 0, 0, 0.4);
}

.gallery-img {
    border-radius: 8px;
    height: 250px !important;
}

.gallery-img img {
    height: 100%;
    transition: all ease-in-out .4s;
}

.gallery_img img {
    transition: all ease-in-out .4s;
}

.gallery-img:hover img,
.gallery_img:hover img {
    transform: scale(1.1);
}

.product-box {
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 8px;
    overflow: hidden;
}

.product-box .gallery-content h3 a {
    font-weight: 600;
    font-size: 22px;
    color: var(--vs-darktext);
}

.product-box:hover {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2)
}

/* .gallery-img-popu {
    display: block;
    margin-bottom: 15px;
} */

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    text-align: center;

}

.popup-content {
    position: relative;
    margin: auto;
    padding: 20px;
    height: 90vh;
    width: 800px
}

.popup-content .close-btn {
    position: absolute;
    top: 20px;
    right: -20px;
    font-size: 30px;
    cursor: pointer;
    background: #fff;
    height: 30px;
    width: 30px;
    line-height: 24px;
}

.navigation {
    margin-top: 10px;
}

.navigation button {
    color: #fff;
    background-color: #4a4848;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    outline: none;
    line-height: 0;
}

.navigation button.prev-btn {
    position: absolute;
    top: 50%;
    left: -35px;
}

.navigation button.next-btn {
    position: absolute;
    top: 50%;
    right: -35px;
}

.popup-img img {
    cursor: pointer;
}

.popup-image {
    width: 100%;
    height: 100%;
}

/* end style of popup here */

/* sample document  */
.single_sample_document-box {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.single_sample_doc {
    list-style-type: disc;
    padding: 0 0 0px 20px;
    line-height: 26px;
    margin-bottom: 0;
    color: #666;
    font-weight: 500;
}

.single_sample_doc li a {
    color: #0b6cb7;
}

.gif {
    background: url(../images/ad.gif) no-repeat center;
    height: 295px;
    width: 100%;
    background-size: contain;
    background-position: top;
}


/* sasto rental design from here  */
.nav-btn {
    /* border: 1px solid var(--vs-primary); */
    margin: 0px 10px;
}

.nav-btn:first-child {
    border: 0;
}

.nav-btn:nth-child(2):hover {
    background-color: var(--vs-primary);
}


.nav-btn .nav-link:hover {
    color: var(--vs-white) !important;
}
.nav-btn:nth-child(2):hover .nav-link{
    color: var(--vs-white) !important;
}

.Id_icons {
    font-size: 4rem;
}

.why-choose-us .description p {
    width: 40%;
    margin: 20px auto;
    font-family: var(--primaryNormal);
    font-size: 16px;
    font-weight: lighter;

}

.service-wrapper {
    margin: 2rem 0;
}

.hover-shadow:hover {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 1px 0px rgba(255, 0, 0, 0.9);
    color: var(--vs-white) !important;
    background-color: var(--vs-black) !important;
    border: 1px solid transparent !important;
}

.quote {
    font-size: 24px;
    text-align: left;
    color: var(--vs-primary);
}

.rating-google-icon {
    background: var(--vs-white);
    width: 25px;
    height: 25px;
    color: var(--vs-black);
    text-align: center;
    display: grid;
    place-items: center;
}

.rating_google {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating i {
    color: var(--vs-primary);
}

.experince-img img {
    width: 174px;
    height: 174px;
}

.border-img {
    top: 30%;
    right: -40px;
}

.experiences .title {
    width: 80%;
    margin: 0 auto;
}


/* parallax  */

.parallax-section {
    background: black;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.parallax-section:nth-child(n+2) {
    margin-top: 10px;
}

.parallax-section .parallax-content {
    align-items: center;
    color: white;
    display: flex;
    font-size: 2rem;
    letter-spacing: 0.1em;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.parallax-section .parallax-image {
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    width: 100%;
    z-index: 1;
}
.parallax-section .parallax-content .title.text-center h1 {
    font-size: 56px;
    text-transform: uppercase;
    font-weight: 600;
}
.content-box-right .nav-link {
    color: var(--vs-black);
}

.content-box-right .nav-pills .nav-link.active,
.content-box-right .nav-pills .show>.content-box-right .nav-link {
    background-color: transparent;
    border: 1px solid var(--vs-primary);
    color: var(--vs-black);
}

.content-box-right .tick-active {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--vs-primary);
    color: var(--vs-white);
    border-radius: 100%;
    font-size: 8px;
    height: 14px;
    width: 14px;
    display: grid;
    place-items: center;
}

.text-right {
    text-align: right;
}

.container-timeline ul li {
    list-style: none;
    margin: 0;
    border-left: 1px solid var(--vs-primary);
    padding: 0 0 30px 40px;
    position: relative;
    counter-increment: wa-process-counter;
}

.container-timeline ul li::before {
    position: absolute;
    left: -21px;
    top: 0;
    content: counter(wa-process-counter);
    border: 1px solid var(--vs-primary);
    border-radius: 0px;
    background: var(--vs-primary);
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 41px;
    color: #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: block;
    font-weight: bold;
}

.container-timeline ul li:last-child {
    border: 0;
}

.search_by_destination_slider .owl-stage {
    padding-left: 0px !important;
}


#blog_wrapper_one .accordion-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

#blog_wrapper_one .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-button:focus {
    box-shadow: initial !important;
}

.product-filter-title h1 {
    padding: 1rem 1.25rem;
    font-size: 20px;
    margin: 0;
}


.line-height-1 {
    line-height: 1;
}

.font-weight-400 {
    font-weight: 400;
}

.text-2 {
    font-size: 14px;
}

.mr-2 {
    margin-right: .5rem;
}

.text-5 {
    font-size: 21px;
}

.font-weight-500 {
    font-weight: 500;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.locat-marker {
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #9f9f9f;
}



.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    width: 100%;
    cursor: pointer;
}

.custom-select::before,
.custom-select::after {
    --size: 0.3rem;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
}

.custom-select::before {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid black;
    top: 40%;
}

.custom-select::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    top: 55%;
}

.title h1 {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--primaryBold);
}

.our-offers .padding-50{
    /* background-color: var(--vs-light-primary); */
    padding: 50px 0;
}
.why-choose-div {
    position: relative;
    overflow: hidden;
}
.why-choose-us, .why-choose-div {
    /* background-color: var(--vs-light); */
    /* padding: 80px 0; */
    /* margin-top: 244px; */
}


.why-choose-us .service-img img {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    transition: all ease-in-out .4s;
}

.why-choose-us .service-img:hover img {
    /* transform: rotate(360deg) scale(1, -1); */
    transform: rotate(360deg);
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;;
}

.choss-us-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.choss-us-right h3 {
    color: #010103;
    font-family: var(--primaryMedium);
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 35px;
}
.video-section {
    padding: 80px 0;
}

.choose-us-img {
    height: 400px;
}

.choose-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    box-shadow: 4px 1px 35px -11px rgba(0, 0, 0, 0.5);
}

.lg-btn {
    padding: 15px 30px;
}
.why-choose-us .title h1{
    position: relative;
    margin-left: 8px;
    display: inline;
}
/* .why-choose-us .title h1::before {
    width: 5px;
    height: 100%;
    top: 0px;
    left: -8px;
    content: "";
    width: 4px;
    height: 100%;
    display: block;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff512f), to(#dd2476));
    background: linear-gradient(to bottom, #ff512f, #dd2476);
} */
.lg-btn:hover {
    background-color: var(--vs-primary);
    border: 1px solid transparent;
}
.lg-btn:hover a {
    color: var(--vs-white);
}

.testimonial-wrapper {
    padding: 80px 0;
}
.bg-color {
    background-color: var(--vs-light-primary) !important;
}
.ptb-100 {
    padding: 100px 0;
}

.ptb-80 {
    padding: 80px 0;
}
.custom-container {
    width: 800px;
}
.owl-nav.disabled .owl-prev, .owl-nav.disabled .owl-next {
    background: var(--vs-primary);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 20px;
    color: white;
    font-size: 20px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
}


.destination_slider .owl-nav .owl-prev, .destination_slider .owl-nav .owl-next {
    background: var(--vs-primary);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 20px;
    color: white;
    font-size: 20px;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 50%;
}

.owl-nav.disabled .owl-prev, .destination_slider .owl-nav .owl-prev {
    left: 0px;
    transform: translate(-50%, -50%);
}
.owl-nav.disabled .owl-next, .destination_slider .owl-nav .owl-next {
    right: 0px;
    transform: translate(50%, -50%);
}
.experience-content {
    text-align: center;
}
.experience-content .box-body {
    margin-top: 1rem;
}
.experience-content .elementskit-info-box-title {
    color: #010103;
    font-family: var(--primaryBold);
    font-size: 26px;
    text-transform: capitalize;
    letter-spacing: -0.78px;
}
.experience-content .box-body p {
    color: #817F91;
    font-family: var(--primaryNormal);
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: -0.24px;
}



.accordion-button {
    /* background-color: var(--vs-light) !important; */
    /* font-weight: 800; */
    font-family: var(--primaryMedium);
    letter-spacing: 1px;
}

.accordion-item {
    /* border: 1px solid var(--vs-white); */
}

.accordion-button:not(.collapsed) {
    color: var(--vs-black) !important;
    background-color:  var(--vs-light) !important;
    font-weight: 800;
    font-family: var(--primaryMedium);
    letter-spacing: 1px;
}

.accordion-button::after, .accordion-button:not(.collapsed)::after  {
    background-image: none !important;
    transform: initial !important;
    font-size: 25px;
    font-family: var(--primaryNormal);
    height: auto !important;
    width: auto !important;
}

.accordion-button::after {
    content: '\002B' !important;
}

.accordion-button:not(.collapsed)::after {
    content: '\2212' !important;
}

.accordion-body {
    font-size: 16px;
    color: var(--vs-graytext);
    font-family: var(--primaryNormal);
}


.dropdown-menu {
    background-color: var(--vs-white);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: rgba(2, 1, 1, 0);
    border-radius: 0px 0px 0px 0px;
    min-width: 160px;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--vs-primary);
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: var(--vs-primary);
    color: var(--vs-white);
}


.host-btn {
    border: 2px solid var(--vs-primary) !important;
    background: var(--vs-primary) !important;
    padding: 12px 22px;
    font-family: var(--primaryBold);
    position: relative;
}

.host-btn:hover {
    color: var(--vs-primary) !important;
    text-shadow: 0 0 10px 0 rgb(221 89 89 / 83%) !important;
    background-color: var(--vs-white) !important;
    border: 2px solid var(--vs-primary);
}


.contact-logo img {
    height: 90px;
}

.select2-container--default .select2-selection--multiple {
    border: 0 !important;
}

.contact-brand-title h2 {
    font-family: var(--primaryBold);
    font-size: 38px;
    line-height: 33px;
    margin-left: 12px;
}

.booking__form .contact_form_wrapper {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .125);
    padding: 30px;
    border-radius: 8px;
}
.booking__form .contact_form_wrapper  label {
    font-family: var(--primaryMedium);
    font-size: 14px;
}

.qrcode-content h2 {
    color: #25d366;
    font-family: var(--primaryBold);
    font-size: 32px;;
}

.footer-links.footer-quick-links .qrcode-content h2 {
    font-size: 24px;;
}
.qrcode-content p {
    color: var(--vs-lightgray);
    font-family: var(--primaryNormal);
}

.radiotype {
    padding: 12px;
    border: 2px solid var(--vs-bordercolor) !important;
    border-radius: 8px;;
}
.title {
    margin-bottom: 40px !important;
}



.specs-img {
    margin: 0;
    padding: 0;
    width: 48px;
    height: 48px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.specs-img img {
    width: 20px;
    height: 20px;
    filter: brightness(.8);
}
.pick-drop-item .car-feature-package .feature-specs {
    display: grid;
    place-items: center;
    text-align: center;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 20px;
}

.pick-drop-item .car-feature-package .feature-specs li {
    display: flex;
    text-align: center;
    list-style: none;
    gap: 10px;
    /* margin-bottom: 15px; */
    align-items: center;
    flex-direction: column;
}
/* .product-details .feature-specs li:hover, .product-details .car-feature li:hover {
    cursor: pointer;
    color: var(--vs-primary);
} */

/* .product-details .feature-specs li:hover .specs-img, .product-details .car-feature li:hover .specs-img {
    background: var(--vs-primary);
} */

.big-heading {
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 16px;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--vs-black);
    font-size: 1.6875rem;
    font-family: var(--primaryMedium);
}

.product-details .car-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.product-details .car-feature li {
    list-style: none;
    margin-bottom: 20px;
}

.product-details .card-body {
    padding: 15px 20px 20px;
    background: #fff;
    border: 1px solid #dddddd9c;
    border-radius: 7px;
    margin-top: 30px;
    box-shadow: 0 0 4px #c7c7c7;
}

.product-details .feature_specs {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 25px;
}

.product-details .line-through {
    text-decoration: line-through;
    color: var(--vs-primary);
}

.product-details .calc-part {
    text-align: center;
}

.product-details .calc-part h4 {
    font-family: var(--primaryMedium);
    font-size: 18px;
    margin: 0;

}

.product-details .calc-part h3 {
    font-family: var(--primaryMedium);
    font-size: 24px;
    margin: 0;
}

.product-details .calc-part span {
    font-size: 14px;;
}

.product-details .includ-part {
    margin: 0 0 15px 0;
}
.product-details .social-icons {
    text-align: center;
    margin: 10px 0;
}
.product-details .social-icons i {
    font-size: 40px;
    color: var(--vs-primary) !important;
    transition: all ease-in-out .5s;
}
.product-details .social-icons i:hover {
    transform: rotate(360deg);
}
.product-details .description {
    text-align: justify;
    font-size: 16px;
    font-family: var(--primaryNormal);
    margin-bottom: 20px;
}

.justified-gallery {
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    position:  initial !important;
}

#animated-thumbnails-gallery {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 2fr;
    gap: 10px;
    grid-auto-rows: 160px;
    border-radius: 15px;
    height: 330px;
    overflow: hidden;
}
.gallery-item {
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 !important;
    position:  initial !important;
    /* height: 330px !important; */

}

.gallery-item:nth-child(1) {
    grid-column-start: auto;
    grid-row-start: 1;
    grid-row-end: 3;
}


.gallery-item:nth-child(2) {
    grid-column-start: auto;
    grid-row-start: 1;
    grid-row-end: 3;
}


.gallery-item:nth-child(3), .gallery-item:nth-child(4) {
    row-gap: 10px;
}
.gallery-item:nth-child(5) {
    grid-column-start: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    display: block;
    margin: 0 !important;
    position:  initial !important;
}
.dropdownMenu {
    width: 100%;
    border: 0 !important;
    margin: 0;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    background-color: var(--vs-white);
    padding: 40px;
    border-radius: 20px;
}
.filter-product {
    position: absolute;
    bottom: -50px;
    z-index: 1;
    width: 100%;
}
.dropdownMenu li {
    list-style: none;
}
.our-offers .section-title.text-center p{
    width: 60%;
    margin: auto;
    text-align: center;
}
.our-offers p {
    font-family: var(--primaryNormal);
    font-size: 15px;
}
.offers-img {
    height: 80px;
    width: 80px;
    border-radius: 100%;
    overflow: hidden;
}
.offers-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease-in-out;
}

.offers-img:hover img {
    transform: scale(1.1);
}
.offers-content {
    box-shadow:
        0px 11px 8px -10px #77777757,
        0px -11px 8px -10px #77777757;
    padding: 15px 30px;
    position: relative;
    /* height: 100px; */
    /* width: 380px; */
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.offers-center-content {
    width: 45%;
    margin: 0px auto;
    margin-top: 40px;

}
.offers-content h3 {
    font-size: 18px;
    font-family: var(--primaryMedium);
    /* text-align: right; */
    text-transform: capitalize;
    /* width: 70%; */
    /* position: absolute; */
    /* right: 0; */
}

.offers-item  {
    padding: 20px;
}
.offers-item .team-one__single {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box-shadow-hover:hover {
    box-shadow:  0 0 4px red;
}
.box-shadow-hover:hover img {
    transform: rotate(360deg);
}

.d-grid {
    display: grid;
}
.column-5 {
    grid-template-columns: repeat(5, 1fr);
}

.column-4 {
    grid-template-columns: repeat(4, 1fr);
}

.column-3 {
    grid-template-columns: repeat(3, 1fr);
}
.column-2 {
    grid-template-columns: repeat(2, 1fr);
}

.reviewer {
    height: 60px;
    width: 60px;;
    overflow: hidden;
    border-radius: 100%;
}
.reviewer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.reviews {
    display: flex;
    gap: 20px;
    align-items: center;
}
.reviews .profile-details {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.reviews .name {
    font-weight: bold;
    font-size: 16px;
    overflow: hidden;
    padding-right: 25px;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #000000;
    margin-bottom: 1px;
}
.date {
    color: #000000;
    opacity: 0.5;
    font-size: 14px !important;
}

.testimonial-reviews {
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 4px 0 rgb(173 10 4 / 35%);
    border-top-width: 0px !important;
    border-bottom-width: 0px !important;
    border-left-width: 0px !important;
    border-right-width: 0px !important;
    background-color: var(--vs-white);
    backdrop-filter: blur(0px);
    border-radius: 10px;
    transition: transform .3s ease-in-out;
    /* height: 320px; */
}
/* .testimonial-reviews:hover {
    transform: scale(1.06, 1.06);
}
.testimonial-reviews.active {
    transform: scale(1.06, 1.06);
    border: 1px solid var(--vs-primary) !important;
} */
.review-rating {
    margin-bottom: 6px;
}
.testimonial-reviews .review-rating i {
    color: var(--vs-primary);
}
.subscriber-review {
    padding: 40px 0;
    margin-top: 20px;
}
.subscriber-review .col-lg-7 {
    position: relative;
}
.subscriber-review .col-lg-7::after {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--vs-lightgray);
    position: absolute;
    top: 0;
    right: -60px;
}
.type_img {
    height: 250px;
    overflow: hidden;
}
.type_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease-in-out;
}
.type_img:hover img {
    transform: scale(1.1);
}

.book-now-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all ease-in-out .3s;
}
.book_now-btn {
    background-color: transparent !important;
    border: 1px solid var(--vs-primary) !important;
    color: var(--vs-primary) !important;
    border-radius: 100px !important;
    font-weight: bolder !important;
}

.book_now-btn:hover {
    background-color: var(--vs-black);
    border: 1px solid var(--vs-black);
}
.box.video-block.position-relative:hover .book-now-btn {
    opacity: 1;
}

.book-now-btn  .btn.btn-secondary {
    background-color: var(--vs-primary);
    color: var(--vs-white);
    padding: 10px;
    border: none;
    box-shadow: 0 0 4px;
    transition: all ease-in-out .4s;
}

.book-now-btn:hover .btn.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--vs-black);
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0px !important;
    margin-left: 0px !important;
    height: 20px !important;
    position: relative;
}


.offer-icon-wrapper {
    /* background-color: var(--vs-primary); */
    /* height: 95px;
    width: 95px; */
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
    /* border-radius: 100%; */
    /* padding: 15px; */
    /* display: grid; */
    /* place-items: center; */
    /* position: absolute; */
    /* left: 22px; */
    /* top: -20px; */
    /* box-shadow: 0px 0px 6px 0 rgba(255, 0, 0, .3); */
}
/*
.offer-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    border-bottom: 20px solid #cf0202;
    border-left: 15px solid transparent;
    border-right: 0px solid transparent;
    width: 0;
    height: 0;
} */
.offer-icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    box-shadow: 0px 0px 6px 0 rgba(255, 0, 0, .3);
    display: grid;
    place-items: center;
    background-color: var(--vs-white);
    z-index: 1;
}

.offer-icon i {
    font-size: 56px;
}

.why-choose-circle {
    border: 10px solid white;;
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background: white;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.6);
    position: relative;
}
.why-choose-circle .circle {
    width: 140px;
    height: 140px;
    border-radius: 100%;
    background-color: #000000;
    color: #ffffff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072),
  0 41.8px 33.4px rgba(0, 0, 0, 0.086),
  0 100px 80px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  font-size: 28px;
  font-family: var(--primaryBold);
}

.why-choose-title {
    /* background-color: rgb(241, 241, 241); */
    /* padding: 10px; */
    /* border-radius: 20px; */
    /* box-shadow: 0 0 4px; */
    /* width: 450px; */
    /* margin-bottom: 1.5rem; */

}
/*
.why-choose-title:nth-child(1) {
    margin-left: -60px;
}

.why-choose-title:nth-child(2) {
    margin-left: -20px;
}

.why-choose-title:nth-child(4) {
    margin-left: -20px;
}

.why-choose-title:nth-child(5) {
    margin-left: -60px;
} */

.why-choose-title .rect-title {
    background-color: #f3f3f3;
    border-radius: 100px;
    box-shadow: 0 0 4px 0 rgb(173 10 4 / 35%);
    padding: 0px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.why-chooose-description {
    padding: 10px;
    border-radius: 20px;
    /* box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05); */
    box-shadow: 0 0 4px 0 rgb(173 10 4 / 35%);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    background: var(--vs-white);
    font-family: var(--primaryNormal);
    height: 144px;
}
.why-chooose-description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.why-choose-us .choose-img  {
    background-color: white;
    border-radius: 100%;
    overflow: hidden;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 1px 0 rgba(255, 97, 97, 0.692);
}
.why-choose-us .choose-img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-div .choose-img {
    width: 80px;
    height: 40px;
}
.choose-img  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-div .choose-list-items h3 {
    font-size: 18px;
    color: var(--vs-black);
    /* font-family: var(--primaryMedium); */
    font-family: "Roboto", Sans-serif;
    color: var(--vs-white);
    margin-bottom: 20px;
}
.why-choose-div .choose-list-items p {
    /* font-family: var(--primaryNormal); */
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;

}
.why-choose-title h3 {
    font-size: 20px;
    color: var(--vs-black);
    font-family: var(--primaryMedium);
}

.offer-img {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}
.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Popup Overlay */
#video-popup {
    position: relative;
}
#video-popup.popup-overlay {
    display: none;
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Content */
#video-popup .popup-content {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.close-div {
    background-color: white;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    font-size: 24px;
    position: absolute;
    top: 83px;
    right: -40px;
}

.destination-block-two {
    position: relative;
    margin-bottom: 30px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}


.destinations-two .destinations-box {
    position: relative;
    display: block;
    margin: 0px -15px;
    margin-bottom: 90px;
}

.destinations-two .destinations-box .outer-box {
    position: relative;
    display: table;
    width: 100%;
    vertical-align: middle;
}


.destinations-two .destinations-box .outer-box .destination-block-two {
    position: relative;
    display: table-cell;
    width: 20%;
    padding: 0px 15px;
    vertical-align: top;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease !important;
    -moz-transition: all 0.5s ease !important;
    -ms-transition: all 0.5s ease !important;
    -o-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;

}

.destinations-two .destinations-box .outer-box .destination-block-two:hover {
    width: 32%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.destination-block-two .inner-box {
    position: relative;
    display: block;
    background: #107abf;
    height: 360px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.destination-block-two .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.destination-block-two .image-box {
    position: relative;
    display: block;
    top: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.destination-block-two .image-box .image {
    position: relative;
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #fcb40f;
}

.destination-block-two .image-box img {
    position: relative;
    display: block;
    width: 100%;
}

.destination-block-two .caption-box {
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    padding: 0px 20px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    z-index: 1;
    margin-bottom: 0;
}

.destination-block-two .caption-box .title {
    position: relative;
    display: block;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.destination-block-two .hover-box {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    padding: 20px 30px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.destination-block-two .hover-box:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 123, 103, 0.50);
    background: -webkit-linear-gradient(bottom, rgba(6, 123, 103, 0.50), rgba(0, 0, 0, 0.0));
}

.destination-block-two .hover-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: bottom;
    padding: 0px 0px;
    transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0;
    visibility: hidden;
}

.destination-block-two:hover .hover-inner {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 500ms ease 300ms;
    -ms-transition: all 500ms ease 300ms;
    -moz-transition: all 500ms ease 300ms;
    -o-transition: all 500ms ease 300ms;
    transition: all 500ms ease 300ms;
}

.destination-block-two:hover .inner-box .hover-box {
    opacity: 1;
    visibility: visible;
}
.destination-block-two:hover .inner-box .caption-box {
    opacity: 0;
    visibility: hidden;
}

.destination-block-two .hover-content {
    position: relative;
    width: 100%;
    display: table-cell;
    vertical-align: bottom;
    padding: 30px 15px;
}

.destination-block-two .hover-content .tour-info {
    position: relative;
    display: block;
    margin: 0 0 10px;
    line-height: 1.5em;
    font-size: 13px;
    text-transform: uppercase;
}

.destination-block-two .hover-content h4 {
    position: relative;
    display: block;
    margin: 0 !important;
    font-weight: 700;
    text-transform: capitalize;
}
.destination-block-two .hover-content .link-box {
    position: relative;
    padding-top: 20px;
}

.destination-block-two .hover-content .link-box .theme-btn .btn-title {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-style-two .btn-title {
    position: relative;
    display: block;
    font-size: 13px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 45px;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0px;
    z-index: 1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.destination-block-two .hover-content {
    position: relative;
    width: 100%;
    display: table-cell;
    vertical-align: bottom;
    padding: 30px 15px;
}

.destination-block-two .hover-content .tour-info {
    position: relative;
    display: block;
    margin: 0 0 10px;
    line-height: 1.5em;
    font-size: 13px;
    text-transform: uppercase;
}

.destination-block-two .hover-content h4 {
    position: relative;
    display: block;
    margin: 0 0;
    font-weight: 700;
    text-transform: capitalize;
}


.destination-block-two .hover-content .link-box .theme-btn {
    display: block;
    max-width: 240px;
    margin: 0 auto;
}

.destination-block-two .hover-content .link-box .theme-btn .btn-title {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-style-two:hover .btn-title {
    background: #fcb40f;
    border-color: #fcb40f;
    color: #ffffff;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.blog-content {
    background: white;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
}
.blog-content .border-top {
    /* border-top: 4px solid #eee !important; */
    margin-top: 20px;
}
.blog-content  span {
    margin-bottom: 0 !important;
    padding: 0;
    /* padding-top: 10px; */
    font-family: var(--primaryNormal);
}
.blog-content .title {
    font-size: 20px;
    text-align: left;
    padding: 6px;
    display: -webkit-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 28px;
}
.blog-content .description {
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    padding: 0 10px;
    font-family: var(--primaryNormal);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}
.blog-content .read-btn {
    text-align: right;
    padding: 10px;
    font-size: 16px;
    /* padding-bottom: 0; */
    font-weight: 800;
}
.blog-content .read-btn:hover {
    color: var(--vs-primary);
}

.box.video-block {
    margin: 10px;
    /* box-shadow: 0 0 4px 0 rgb(173 10 4 / 45%); */
    border: 5px solid #eee;
}
.news-events {
    padding: 10px 20px;

}
.news-events .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.credit-goes-to h3 {
    color: var(--vs-black);
    font-size: 18px;
    padding: 0;
    margin: 0;
}
.credit-goes-to p {
    padding: 0;
    margin: 0;
    color: var(--vs-primary);
    font-size: 13px;
    font-family: var(--primaryNormal);
}

.news-date {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    color: var(--vs-white);
    font-family: var(--primaryBold);
    font-size: 23px;
    display: grid;
    place-items: center;
    opacity: 0;
    transition: all ease-in-out .4s;
}

.box .inner:hover .news-date {
    opacity: 1;
}
.news-events .read-btn {
    text-align: left;
}

.news-events-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.news-events-img:hover::after {
    background-color: initial;
}



.whatsapp {
    background-color: #08F363;
    border-width: 0px 0px 0px 0px;
    border-radius: 50px 50px 50px 0px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    position: fixed;
    right: 50px;
    bottom: 100px;
    z-index: 1;
    animation: waves-call-now linear 3s infinite;

}

.whatsapp .whatsapp-btn i{
    font-size: 35px;
    color: var(--vs-white);
    animation: sm-shake-animation linear 3s infinite;

}

@keyframes sm-shake-animation {
    0% {
        transform: translate(0, 0);
    }

    1.78571% {
        transform: translate(5px, 0);
    }
    3.57143% {
        transform: translate(0, 0);
    }

    5.35714% {
        transform: translate(5px, 0);
    }
    7.14286% {
        transform: translate(0, 0);
    }
    8.92857% {
        transform: translate(5px, 0);
    }
    10.7143% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes waves-call-now {
    0% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 0 rgba(48, 191, 57, .2), 0 0 0 0 rgba(48, 191, 57, .2);
    }
    40% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 35px rgba(48, 191, 57, .2), 0 0 0 0 rgba(48, 191, 57, .2);
    }
    80% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 55px transparent, 0 0 0 26.7px rgba(48, 191, 57, .067);
    }
    100% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 80px transparent, 0 0 0 40px transparent;
    }
}

.car-from-left {
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1s;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



.timeline {
    --color1: #ff5000;
    --color2: #ffae00;
    --color3: #8ac900;
    --color4: #00aeff;
    --color5: #953fbb;
    --color6: #ba3a17;
    --color7: #00a0b4;
    margin-left:100px;
    padding: 200px 0;
    font-family: 'Montserrat';
    display: flex;
}
.timeline-item {
    position: relative;
    width:100%;
    height:30px;
    display:inline-table;
}

.timeline-item:nth-child(1) {
    width:80%;
}

.arrow-end {
    position: absolute;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.circle {
    position: absolute;
    background-position: center center;
    border-radius: 25px;
    transform: translate(-50%, -50%);
    top:50%;
    left: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 12px 0px #4d4d4d;
}

.timeline-item:nth-child(1) .circle {
    left: 0;
}

.inner-circle {
    position: absolute;
    transform: translate(-50%, -50%);
    top:50%;
    left: 50%;
    width:40px;
    height: 40px;
    border-radius: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size:30px 30px;
    background-color: #fff;
    box-shadow: inset 0px 0px 6px 0px #000;
    overflow: hidden;
}
.inner-circle img {
    width: 100%;
    height: 100%;
}
.buble-content {
    overflow: hidden;
    text-align: center;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 12px 0px #4d4d4d;
    width:165px;
    height: 100px;
    display: grid;
    place-items: center;
}

.timeline-item:nth-child(odd) .buble-content {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    top: -150px;
}

.timeline-item:nth-child(even) .buble-content {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    bottom: -160px;
}

.timeline-item:nth-child(1) .buble-content {
    left: -75px;
}

.content-year {
    padding:5px;
    color:#fff;
    font-size: 20px;

}
.timeline-item:nth-child(odd) .content-year-top {
    position: absolute;
    top: 0;
    width: 100%;
}
.timeline-item:nth-child(even) .content-year-bottom  {
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
}

.content {
    /* margin: auto 0; */
    /* padding: 5px; */
    color: #000;
    font-size: 18px;
    /* height: 60px; */
    display: block;
    position: relative;
}

.content p {
    display: flex;
    height: 100%;
    margin: auto 0;
    font-size: 12px;
    flex-direction: column;
    justify-content: space-around;
}

.content-half-circle {
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 50px;
    height: 20px;
    z-index: 9999;
}

.timeline-item:nth-child(odd) .content-half-circle {
    top: -50px;
    left: 50%;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 1px 10px 9px 0px #bbbbbb;
}

.timeline-item:nth-child(even) .content-half-circle {
    bottom: -70px;
    left: 50%;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    box-shadow: -1px -9px 9px 0px #bbbbbb;
}

.timeline-item:nth-child(1) .content-half-circle {
    left: 0;
}

.grey-line {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 2px;
    height:80px;
    background-color: #b7b7b7;
}

.timeline-item:nth-child(odd) .grey-line {
    top:-30px;
    left: 50%;
}

.timeline-item:nth-child(even) .grey-line {
    bottom:-130px;
    left: 50%;
}

.timeline-item:nth-child(1) .grey-line {
    left: 0;
}

/* .filter-product form .d-flex {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
}  */

.filter-product form .form-control:focus {
    /* border-color: var(--vs-primary); */
    outline: 0;
    box-shadow: initial;
    /* box-shadow: 0 0 0 0.2rem rgba(255, 10, 10, 0.25); */
    border: 2px solid var(--vs-primary);


}
/* .select2-container--default.select2-container--focus .select2-selection--multiple:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 10, 10, 0.25);
} */
.blog-wrapper {
    background-color: var(--vs-white);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin-top: -10rem;
    z-index: 1;
    position: relative;
    padding: 20px;
}
.share-icon i {
    background-color: var(--vs-primary);
    font-size: 24px;
    color: var(--vs-white);
    padding: 8px;
    border-radius: 100%;
}

.offer-circle {
    height: 200px;
    width: 200px;
    border: 1px solid rgb(24, 24, 24);
    border-radius: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
}
.offer-circle img {
    width: 62px;
}
.offer-circle  h1 {
    font-size: 18px;
    font-family: var(--primaryBold);
    text-align: center;
}
.offer-circle  p {
    font-family: var(--primaryNormal);
    font-size: 12px;

}
.choose-main-title-line {
    width: 60%;
    margin: 0 auto;
    font-family: var(--primaryNormal);
    font-size: 16px;;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    background-color: var(--vs-primary) !important;
    border-color: var(--vs-primary) !important;
    box-shadow: initial;
}
.banner-titles h1 {
    color: var(--vs-black);
    margin-bottom: 15px;
    font-family: "Krona One", sans-serif !important;
    font-size: 21px;
    text-transform: uppercase;
    line-height: 1px;
    letter-spacing: 0px;
    word-spacing: 0px;

}
.banner-titles h4 {
    color: var(--vs-primary);
    border-top: 3px solid var(--vs-primary);
    font-family: "Krona One", sans-serif !important;
}
.choose-car-img {
    width: 600px;
    position: absolute;
    top: 30%;
    right: 0%;
    transform: translate(-50%, 0%);
    overflow: hidden;
}
.choose-car-img img {
    width: 100%;
}
.news__date span {
    font-size: 15px;
    color: #9f9f9f;
    font-weight: 500;
}
.news__date span i {
    font-size: 18px;
    color: var(--vs-primary);
    margin-right: 10px;
}


/* #rentalservice{
    padding: 100px 0;
} */

/* search input  */

:root {
    --color-primary: #eee;
    --height: 34px;
  }
  .wrapper {
    /* padding-top: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* label {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    height: var(--height);
    line-height: 33px;
    padding: 0 5px 0 7px;
  } */

  .select {
    /* border: 2px solid var(--color-primary); */
    background: #FFF;
    /* width: 150px; */
    /* height: var(--height); */
    font-size: 16px;
  }

  .cselect-wrapper {
    position: relative;
    /* border: 2px solid var(--color-primary); */
    /* border: 1px solid #ced4da; */
    /* border-radius: .25rem; */
    font-weight: 400;
    /* height: var(--height); */
    /* width: 170px; */
    /* padding: .375rem .75rem; */
  }

  .cselect-wrapper:focus {
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(255, 10, 10, 0.25); */
    /* border-color: var(--vs-primary); */
    /* border: 2px solid var(--vs-primary); */
  }

  .cselect-wrapper .value {
    display: block;
    position: relative;
    color: #858585;
    padding: 8px 0px 0px 0px;
    line-height: 14px;
    cursor: pointer;
    /* overflow-x: hidden; */
    white-space: nowrap;
    /* font-weight: 600; */
  }

  .cselect-wrapper .value::before {
    display: block;
    content: "";
    position: absolute;
    right: 4px;
    transform: rotate(135deg);
    border: solid #333;
    border-width: 1px 1px 0 0;
    width: 6.5px;
    height: 6.5px;
  }

  .select2-container .select2-search--inline .select2-search__field::before {
    display: block;
    content: "";
    position: absolute;
    right: 4px;
    transform: rotate(135deg);
    border: solid #333;
    border-width: 1px 1px 0 0;
    width: 6.5px;
    height: 6.5px;
  }
  .cselect-wrapper .list {
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 0;
    background: #fff;
    opacity: 0;
    border: 1px solid #cdc3c3;
    border-top: none;
    overflow: hidden;
    transition: opacity 0s ease-in;
    z-index: 9999;
    box-sizing: content-box;
    box-shadow:  0 0 10px 0 rgba(0, 0, 0, .2);
  }

  .cselect-wrapper .filter input {
    width: 100%;
    font-size: 16px;
    border-bottom: 1px solid #eaeaea;
    outline: none;
    margin: 0;
    padding: 7px 10px;
    box-shadow: none;
    /* border: 2px solid var(--vs-primary); */
    border-radius: .25rem;
  }

  .cselect-wrapper ul {
    display: block;
    margin: 0;
    padding: 0;
    /* max-height: 200px; */
    /* overflow-y: scroll; */
  }

  .cselect-wrapper ul li {
    display: block;
    list-style: none;
    color: #333;
    padding: 10px;
    cursor: pointer;
    line-height: 16px;
  }

  .select2-container--default .select2-results__option--selected {
    background-color: var(--vs-primary) !important;
    color: var(--vs-white);
    position: relative;
   
  }

  .select2-container--default .select2-results__option--selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    left: 6px;
  }

  .cselect-wrapper ul li.hovered {
    color: var(--vs-white);
    background: var(--vs-primary);
  }


  .select2-results__option {
    padding: 6px 6px 6px 20px !important;
  }
  .cselect-wrapper ul {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(var(--color-primary), 0.3);
  }

  /* .cselect-wrapper ul::-webkit-scrollbar {
    width: 10px;
  }

  .cselect-wrapper ul::-webkit-scrollbar-track {
    background: #f8e7ab;
  }

  .cselect-wrapper ul::-webkit-scrollbar-thumb {
    border-radius: 5px;
  }
   */
  .cselect-wrapper .no-match {
    display: none;
    padding: 8px 10px;
    line-height: 16px;
  }

  select.invisible-cselect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border: none;
    box-sizing: border-box;
    z-index: -10;
  }

  .cselect-wrapper ~ .fa.fa-times {
    top: 2px;
    right: -2px;
  }

  .cselect-wrapper ~ .fa.fa-check {
    top: 2px;
    right: -2px;
  }

  .cselect-wrapper.open {
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(255, 10, 10, 0.25); */
    /* border-color: var(--vs-primary); */
    /* border: 2px solid var(--vs-primary); */
  }

  .cselect-wrapper.open .list {
    height: auto;
    opacity: 1;
  }

  .cselect-wrapper.open .filter {
    display: block;
  }

  .dropdownMenu .filter-product .form-control {
    padding: .475rem .75rem !important;
    font-weight: 600;
    color: #212529;
  }
  #LoginModal .modal-footer {
    /* justify-content: space-between !important; */
  }

  #LoginModal .modal-footer a {
    color: var(--vs-primary);
  }
  #LoginModal .modal-footer a:hover {
    color: var(--vs-black);
  }


  .secondary-btn {
    background-color: var(--vs-primary) !important;
    border: 1px solid var(--vs-primary) !important;
  }
  .secondary-btn:hover {
    background-color: var(--vs-black) !important;
    border: 1px solid var(--vs-black) !important;

  }




.y-us-section {
    padding: 82px 0 82px;
}
.y-us-head {
    text-align: center;
    margin: 0 0 91px;
}
.y-us-title h2 {
    color: #000;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.y-us-title > p {
    color: #777777;
    line-height: 22px;
}
.y-us-title-border {
    background: var(--vs-primary) none repeat scroll 0 0;
    border-radius: 2px;
    display: inline-block;
    height: 3px;
    position: relative;
    width: 50px;
}
.service-3 .service-box {
    margin-bottom: 18px;
}
.service-3 .service-box .iconset {
    float: left;
    text-align: center;
    width: 25%;
}
.service-3 .service-box .iconset i {
    color: #000;
    font-size: 44px;
}
.service-3 .service-box .y-us-content {
    float: left;
    width: 75%;
}
service-3 .service-box .y-us-content h4 {
    color: #3a3a3a;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 14px 0 12px;
    text-transform: uppercase;
}
.service-3 .service-box .y-us-content p {
    color: #777777;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
}

.icon {
    color : #f4b841;
    padding:0px;
    /* font-size:40px; */
    border: 1px solid #fdb801;
    border-radius: 100px;
    color: #fdb801;
    font-size: 28px;
    /* line-height: 70px; */
    text-align: center;
    height: 70px;
    width: 70px;
    overflow: hidden;
}
.icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* another section for why choose us  */

.bg_white {
    background: #fff
}

.color_white {
    color: #fff
}

.bg_gray {
    background: #edf3f8
}

.bg_light_gray {
    background: #f7f7f7!important
}

.bg_light_gray_2 {
    background: #F2F2F2
}

.p-l {
    padding-left: 20px
}

.p-0 {
    padding: 0
}

.p-t-06 {
    padding-top: 04px
}

.p-t-10 {
    padding-top: 10px
}

.p-b-10 {
    padding-bottom: 10px
}

.p-t-15 {
    padding-top: 15px
}

.p-b-15 {
    padding-bottom: 15px
}

.p-t-20 {
    padding-top: 20px
}

.p-b-20 {
    padding-bottom: 20px
}

.p-t-25 {
    padding-top: 25px
}

.p-b-25 {
    padding-bottom: 25px
}

.p-t-30 {
    padding-top: 30px
}

.p-b-30 {
    padding-bottom: 30px
}

.p-t-35 {
    padding-top: 0
}

.p-b-35 {
    padding-bottom: 35px
}

.p-t-40 {
    padding-top: 40px
}

.p-b-40 {
    padding-bottom: 40px
}

.p-t-45 {
    padding-top: 45px
}

.p-b-4 {
    padding-bottom: 4px
}

.m-t-24 {
    margin-top: 24px
}
.ml-20 {
    margin-left: 20px;;
}

.p-b-45 {
    padding-bottom: 45px
}

.p-t-50 {
    padding-top: 50px
}

.p-b-50 {
    padding-bottom: 50px
}

.p-t-55 {
    padding-top: 55px
}

.p-b-55 {
    padding-bottom: 55px
}

.p-t-60 {
    padding-top: 60px
}

.p-b-60 {
    padding-bottom: 60px
}

.p-t-65 {
    padding-top: 65px
}

.p-b-65 {
    padding-bottom: 65px
}

.p-t-70 {
    padding-top: 70px
}

.p-b-70 {
    padding-bottom: 70px
}

.p-t-75 {
    padding-top: 75px
}

.p-b-75 {
    padding-bottom: 75px
}

.p-t-80 {
    padding-top: 80px
}

.p-b-80 {
    padding-bottom: 80px
}

.p-t-85 {
    padding-top: 85px
}

.p-b-85 {
    padding-bottom: 85px
}

.p-t-90 {
    padding-top: 90px
}

.p-b-90 {
    padding-bottom: 90px
}

.p-t-100 {
    padding-top: 100px
}

.p-b-100 {
    padding-bottom: 100px
}

.padding_space {
    padding: 4px 0 0 0
}

.margin-top-65 {
    margin-top: -65px
}

.m-t-10 {
    margin-top: 10px
}

.m-b-10 {
    margin-bottom: 10px
}

.m-t-15 {
    margin-top: 15px
}

.m-b-15 {
    margin-bottom: 15px
}

.m-t-20 {
    margin-top: 20px
}

.m-b-20 {
    margin-bottom: 20px
}

.m-t-25 {
    margin-top: 25px
}

.m-b-25 {
    margin-bottom: 25px
}

.m-t-30 {
    margin-top: 30px
}

.m-b-30 {
    margin-bottom: 30px
}

.m-t-35 {
    margin-top: 35px
}

.m-b-35 {
    margin-bottom: 35px
}

.m-t-40 {
    margin-top: 40px
}

.m-b-40 {
    margin-bottom: 40px
}

.m-t-45 {
    margin-top: 45px
}

.m-b-45 {
    margin-bottom: 45px
}

.m-t-50 {
    margin-top: 50px
}

.m-b-50 {
    margin-bottom: 50px
}

.m-t-55 {
    margin-top: 55px
}

.m-b-55 {
    margin-bottom: 55px
}

.m-t-60 {
    margin-top: 60px
}

.m-b-60 {
    margin-bottom: 60px
}

.m-t-65 {
    margin-top: 65px
}

.m-b-65 {
    margin-bottom: 65px
}

.m-t-70 {
    margin-top: 70px
}

.m-b-70 {
    margin-bottom: 70px
}

.m-t-75 {
    margin-top: 75px
}

.m-b-75 {
    margin-bottom: 75px
}

.m-t-80 {
    margin-top: 80px
}

.m-b-80 {
    margin-bottom: 80px
}

.m-t-85 {
    margin-top: 85px
}

.m-b-85 {
    margin-bottom: 85px
}

.m-t-90 {
    margin-top: 90px
}

.m-b-90 {
    margin-bottom: 90px
}

.m-t-100 {
    margin-top: 100px
}

.m-b-100 {
    margin-bottom: 100px
}

.m-t-110 {
    margin-top: 110px
}

.m-b-110 {
    margin-bottom: 110px
}

#header-bottom .get-tech-line {
    display: inline-block;
    padding: 0 15px 0 25px;
    vertical-align: top
}

.cool-link:hover::after,
.cool-link.active:after {
    width: 100%
}

.wrap-sticky nav.navbar.bootsnav.sticked {
    position: fixed;
    transition: all 0.2s ease-in-out 0s;
    background: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .25)
}

.collapse.navbar-collapse.nav_bor_top {
    border-top: 1px solid #F5F5F6
}

nav.navbar.bootsnav ul.nav.navbar-right .dropdown-menu .dropdown-menu {
    left: -219px
}

.attr-nav>ul>li>a {
    padding: 20px 15px
}

ul.cart-list>li.total>.btn {
    border-bottom: solid 1px #cfcfcf!important;
    color: #fff!important;
    padding: 10px 15px
}

.navbar-sticky .social-icons li {
    width: 35px;
    height: 35px;
    line-height: 32px
}


#team {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0, -100%) scale(0, 0);
    -moz-transform: translate(0, -100%) scale(0, 0);
    -o-transform: translate(0, -100%) scale(0, 0);
    -ms-transform: translate(0, -100%) scale(0, 0);
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 11000
}

#team.open {
    -webkit-transform: translate(0, 0) scale(1, 1);
    -moz-transform: translate(0, 0) scale(1, 1);
    -o-transform: translate(0, 0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    filter: alpha(opacity=100)
}

#team .close {
    background-color: #303133;
    box-shadow: none;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    opacity: 1;
    padding: 10px 17px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    text-shadow: none
}

.team_popup {
    background: #fff;
    border-radius: 5px;
    height: 413px;
    left: 50%;
    max-width: 100%;
    padding: 46px 40px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 895px
}

.team_popup .popup_image>img {
    border-radius: 5px;
    float: left;
    width: 41%
}

.popup_text {
    display: inline-block;
    float: right;
    width: 55%
}

.team_popup .progress {
    background-color: #d9d9d9;
    border-radius: 0;
    box-shadow: 0;
    height: 6px;
    margin-bottom: 20px;
    margin-right: 30px;
    overflow: hidden
}

.team_popup .progress-bar {
    box-shadow: 0
}

.team_popup .lebal {
    margin-right: 30px
}

.team_popup .lebal>p {
    display: inline-block;
    font-weight: 700
}

.team_popup .social-icons li {
    border-radius: 100%;
    box-shadow: 0 2px 1px 1px #d2d2d2;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    margin-right: 7px;
    text-align: center;
    width: 32px
}

.team_popup .social-icons a {
    color: #3a3a3a;
    display: block
}

.collapse.navbar-collapse {
    height: 100%!important
}

.attr-nav>ul {
    margin: -3px 0 -7px
}

ul.cart-list li h3 {
    font-weight: 700;
    padding-bottom: 30px
}

ul.cart-list li h6 a {
    color: #111;
    font-size: 16px;
    font-weight: 700;
    padding: 0
}

ul.cart-list .total {
    text-align: center
}

ul.cart-list>.total {
    background-color: #f5f5f5;
    margin: 0 -20px -30px;
    padding: 20px 0
}

ul.cart-list>li {
    border-bottom: 1px solid #dcdcdc
}

ul.cart-list>li:nth-child(3) {
    border-bottom: medium none!important
}

ul.cart-list .total span a {
    background: transparent;
    border: medium none;
    color: #fff!important;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 0 12px 0
}

ul.cart-list .total span {
    background: #0a0a0a;
    border-radius: 5px;
    display: inline-block;
    width: 156px
}

ul.cart-list .total li {
    padding: 20px 0 30px 0!important
}


.tparrows {
    background: #f8c443!important;
    -webkit-border-radius: 100%;
    border-radius: 4px;
    transform: none;
    position: absolute;
    right: 0
}

.tparrows::before {
    color: #fff;
    display: block;
    font-family: 'FontAwesome';
    font-size: 25px;
    line-height: 40px;
    text-align: center
}

.tparrows.tp-leftarrow:before {
    content: url(../images/errow_left.png)
}

.tparrows.tp-rightarrow:before {
    content: url(../images/errow_right.png)
}

.tp-leftarrow,
.tp-rightarrow {
    margin: 0
}

.tparrows.tp-leftarrow:hover,
.tparrows.tp-rightarrow:hover,
.tparrows.tp-leftarrow:focus,
.tparrows.tp-rightarrow:focus {
    background: #002e5b!important
}

.tparrows:hover::before,
.tparrows:focus::before {
    color: #fff
}

.btn-dark:hover {
    color: #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}

.btn-light:hover {
    background: #0a0a0a;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s;
    border-radius: 3px
}

.btn-dark {
    border: 1px solid transparent;
    padding: 15px 36px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    position: 0;
    overflow: hidden;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s!important;
    background: #1888f1;
    color: #fff
}

.btn-whitw {
    border: 1px solid transparent;
    padding: 15px 36px;
    border-radius: 5px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    position: 0;
    overflow: hidden;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s!important;
    background: #fff;
    color: #0a0a0a
}

.btn-whitw:hover {
    background: #0a0a0a;
    color: #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}

.rev_slider .tp-mask-wrap .tp-caption,
.rev_slider .tp-mask-wrap *:last-child,
.wpb_text_column .rev_slider .tp-mask-wrap .tp-caption,
.wpb_text_column .rev_slider .tp-mask-wrap *:last-child {
    margin-bottom: 0;
    margin: 0 5px!important
}

.tp-tab.selected::before {
    content: none
}

.btn-light {
    padding: 10px 40px;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
    position: relative;
    z-index: 1;
    letter-spacing: .5px;
    overflow: hidden;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s!important;
    color: #fff;
    border: none;


}

a {
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}

.tp-tabs {
    left: 50%!important;
    margin: -160px auto 0;
    -ms-transform: translateX(-50%)!important;
    -moz-transform: translateX(-50%)!important;
    -webkit-transform: translateX(-50%)!important;
    transform: translateX(-50%)!important;
    z-index: 111;
    border-top: none;
    cursor: pointer
}

.hesperiden .tp-tab {
    background: #fff;
    border-bottom: medium none;
    border-right: 1px solid #b2b2b2;
    opacity: 1;
    padding: 0 0 0 62px;
    position: absolute;
    width: 295px!important
}

.hesperiden>.tp-tab + .tp-tab {
    border-left: 1px solid #b2b2b2
}

.tp-tab-title>span {
    position: absolute;
    top: 8px;
    border-radius: 100%;
    background: #161616;
    line-height: 33px;
    height: 33px;
    width: 33px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    left: -47px
}

.tp-tab .tp-tab-title {
    font-size: 20px;
    margin: 29px 0 0 0;
    color: #111;
    line-height: normal;
    position: relative;
    display: inline-block;
    font-weight: 700
}

.tp-tab:hover .tp-tab-title,
.tp-tab.selected .tp-tab-title {
    color: #fff
}

.tp-tab:hover .tp-tab-title>span,
.tp-tab.selected .tp-tab-title>span {
    background: #fff
}

.tp-tab:hover .tp-tab-desc,
.tp-tab.selected .tp-tab-desc {
    color: #fff
}

.tp-tab:hover .tp-tab-title::before,
.tp-tab.selected .tp-tab-title:before {
    background: #fff
}

.tp-tab:hover .tp-tab-title span {
    background: #fff
}

.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
    position: static
}

.text_bold {
    font-weight: bolder!important
}

.banner_3_box {
    background-color: rgba(255, 255, 255, .85);
    padding: 50px 30px!important;
    border-radius: 5px;
    min-width: 100%!important;
    max-width: 100;
}

.banner_3_box p {
    display: inline-table;
    font-size: 18px!important;
    padding-bottom: 20px;
    padding-top: 20px
}

.banner_3_box h2 {
    display: inline-table;
    font-size: 48px;
    font-weight: 700
}

.heading_border {
    height: 3px;
    width: 46px;
    margin-bottom: 17px
}

.heading_border_1 {
    height: 3px;
    width: 46px;
    margin-bottom: 17px;
    left: 48%;
    position: relative
}

.heading>p {
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Poppins-SemiBold'
}

.heading>h2 {
    font-family: 'Poppins';
    text-transform: uppercase;
    color: #323232
}

#s_services .services {
    margin: 0 30px 5px 0
}

#s_services .services img {
    display: block;
    width: 100%;
    height: auto
}

.services h3 {
    color: #323232;
    padding-top: 27px;
    padding-bottom: 15px;
    font-size: 14px;
    font-family: 'Poppins'
}

.services p {
    font-family: 'Poppins-Medium';
    color: #777;
    height: 100px;
    overflow: hidden;
    max-height: 100px
}

.services h3 span {
    font-size: 16px;
    background: transparent;
    border: 1px solid #c7c7c7;
    border-radius: 100%;
    line-height: 38px;
    width: 38px;
    display: inline-block;
    height: 38px;
    text-align: center;
    vertical-align: middle;
    margin-right: 14px;
    transition: all 0.7s ease 0s
}

.services {
    margin-bottom: 8px
}

#s_services .services .image_s {
    overflow: hidden;
    border-radius: 5px
}

#s_services .services .image_s img {
    transition: all 0.3s ease 0s;
    border-radius: 5px
}

#s_services .services:hover .image_s img {
    transform: scale(1.09);
    transition: all 0.7s ease 0s
}

#s_services .services:hover span {
    color: #fff;
    transition: all 0.7s ease 0s
}

#s_services .owl-controls.clickable {
    position: absolute;
    right: 28px;
    top: -82px
}

#s_services .owl-next {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: inline-block;
    line-height: 15px;
    padding: 9px 17px;
    font-size: 22px;
    color: #111
}

#s_services .owl-prev {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: inline-block;
    line-height: 15px;
    margin-right: 5px;
    padding: 9px 17px;
    font-size: 22px;
    color: #111
}

#s_services .owl-next:hover,
#s_services .owl-prev:hover {
    background: #f2f2f2!important;
    color: #111111!important
}

.feature_3 .heading_border {
    left: 48%;
    position: relative
}

.feature_box {
    background: #fff;
    padding: 18px 0 0 0;
    transition: all 0.7s ease 0s;
    border-radius: 5px;
    max-height: 400px;
    overflow: auto;
    height: 400px
}

.feature_box>i {
    font-size: 42px;
    color: #111;
    padding-bottom: 30px
}

.feature_box>h3 {
    padding-bottom: 20px;
    padding-top: 30px;
    font-weight: 700;
    font-size: 18px;
    color: #323232;
    font-family: 'Poppins-Medium'
}

.feature_box:hover {
    transition: all 0.7s ease 0s
}

.feature_box:hover i {
    color: #fff;
    transition: all 0.7s ease 0s
}

.feature_box:hover h3 {
    color: #fff;
    transition: all 0.7s ease 0s
}

.feature_box:hover p {
    color: #fff;
    transition: all 0.7s ease 0s
}

.feature_box {
    margin-bottom: 30px
}

.feature_slider .item {
    margin: 0 15px
}

.feature_3 .feature_box>i {
    border: 4px double #acacac;
    border-radius: 100%;
    display: inline-block;
    font-size: 36px;
    height: 106px;
    line-height: 98px;
    text-align: center;
    width: 106px
}

.feature_3 .feature_box:hover i {
    transition: all 0.7s ease 0s;
    border: 4px double #fff;
    color: #fff
}

.feature_3 .feature_box:hover h3 {
    transition: all 0.7s ease 0s
}

.feature_3 .feature_box:hover p {
    color: #5a5a5a
}

.feature_3 .feature_box:hover {
    background: #fff;
    box-shadow: 1px 0 22px #888888a3
}

.feature_slider .owl-theme .owl-controls {
    margin-top: 60px;
    text-align: center
}

.feature_slider .owl-pagination {
    bottom: 30px;
    left: 0;
    position: relative;
    right: 0
}

.feature_slider .owl-theme .owl-controls .owl-page {
    display: inline-block
}

.feature_slider .owl-theme .owl-controls .owl-page span {
    background: #111 none repeat scroll 0 0;
    border-radius: 20px;
    display: block;
    height: 3px;
    margin-right: 5px;
    margin-top: 30px;
    opacity: 1;
    width: 19px
}

.feature_slider .owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    background: #f71735 none repeat scroll 0 0
}

.about_box {
    background: #f2f2f2;
    border-radius: 5px
}

.about_image img {
    width: 100%
}

#about_slider .owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

#about_slider .owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center
}

#about_slider .owl-pagination {
    bottom: 30px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center
}

#about_slider .owl-wrapper-outer {
    border-radius: 5px
}

#about_slider .owl-page span {
    display: block;
    width: 19px;
    height: 3px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-right: 5px;
    background: #fff;
    margin-top: 30px
}

#about_slider .owl-page.active span,
#about_slider .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

#about_slider .owl-page {
    display: inline-block
}

#our-partner-slider .item img {
    display: block;
    height: auto;
    width: 100%;
    filter: grayscale(100%);
    transition: 0.5s;
    margin: 0 0 1px 1px
}

#our-partner-slider .item img:hover {
    filter: grayscale(0%)
}

#our-partner-slider .owl-next {
    position: absolute;
    right: -54px;
    top: 10px
}

#our-partner-slider .owl-prev {
    position: absolute;
    left: -54px;
    top: 10px
}

.partner_image>img {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    display: block;
    height: auto;
    width: 100%;
    margin-bottom: 25px
}

.about_2_button .btn-dark:hover {
    color: #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}

.about_2_button .btn-light:hover {
    background: #0a0a0a;
    color: #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}

#about_us_2 .feature_box:hover {
    background: transparent
}

#about_us_2 .feature_box:hover {
    background: transparent
}

#about_us_2 .feature_box:hover p {
    color: #5a5a5a
}

.about_us_2 .about_box {
    background: transparent
}

.about_us_2 .heading {
    margin-top: -30px
}

#sixth-section {
    background-color: #875F9A;
    display: inline;
    width: 100%;
    float: left
}

#sixth-section .sixth-section-area {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
    padding: 150px 0
}

#sixth-section .sixth-section-area h2 {
    color: #fff;
    margin-bottom: 40px
}

#sixth-section .sixth-section-area .single-effect {
    display: inline-block;
    margin: 0 18px
}

#sixth-section .sixth-section-area .single-effect h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px
}

#sixth-section .sixth-section-area .single-effect .hover {
    background-color: #FFF;
    color: #888
}

.pro-video img {
    border-radius: 5px;
    width: 100%
}

.wpf-demo-gallery {
    background-color: #FFF;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-gallery img {
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-gallery:hover .view-caption {
    opacity: 1;
    background-color: rgba(0, 0, 0, .8);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.wpf-demo-gallery:hover .view-caption:hover a {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.wpf-demo-gallery .view-caption {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -moz-transform: scale(.5);
    -o-transform: scale(.5);
    -ms-transform: scale(.5);
    -webkit-transform: scale(.5);
    transform: scale(.5)
}

.wpf-demo-gallery .view-caption h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(.4);
    -o-transform: scale(.4);
    -ms-transform: scale(.4);
    -webkit-transform: scale(.4);
    transform: scale(.4)
}

.wpf-demo-gallery .view-caption a {
    color: #fff;
    font-size: 50px;
    position: relative;
    top: 45%;
    bottom: 55%;
    display: inline-block;
    border: none;
    padding: 10px 15px;
    line-height: 18px;
    border-radius: 4px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(.4);
    -o-transform: scale(.4);
    -ms-transform: scale(.4);
    -webkit-transform: scale(.4);
    transform: scale(.4)
}

#recent_project {
    background: url(../images/r_p_bg.jpg) no-repeat fixed 50% center / cover
}

#recent_project .heading>p {
    color: #fff
}

#recent_project .heading>h2 {
    color: #fff
}

.recent_box {
    background: #fff;
    border-radius: 5px
}

.recent_box {
    background: #fff;
    border-radius: 5px;
    transition: all 0.7s ease 0s
}

.recent_box .recent_text {
    padding: 20px 15px
}

.recent_box .image_s {
    overflow: hidden;
    border-radius: 5px 5px 0 0
}

.recent_box .image_s img {
    transition: all 0.3s ease 0s;
    width: 100%;
    border-radius: 5px 5px 0 0
}

.recent_box:hover .image_s img {
    transform: scale(1.09);
    transition: all 0.7s ease 0s
}

.recent_box:hover {
    transition: all 0.7s ease 0s
}

.recent_box:hover h3 {
    color: #fff;
    transition: all 0.7s ease 0s
}

.recent_box:hover p {
    color: #fff;
    transition: all 0.7s ease 0s
}

.recent_project-slider .item {
    margin: 0 16px
}

#testimonial-slider_2 .owl-next,
.recent_project-slider .owl-next {
    position: absolute;
    right: 14px;
    bottom: -107px
}

#testimonial-slider_2 .owl-prev {
    position: absolute;
    right: 65px;
    bottom: -107px
}

.recent_project-slider .owl-prev {
    position: absolute;
    right: 65px;
    bottom: -107px;
    z-index: 2;
    background: #2e2e2e;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

.recent_project-slider .owl-next {
    position: absolute;
    right: 14px;
    bottom: -107px;
    z-index: 2;
    background: #2e2e2e;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

#testimonial-slider_2 .owl-prev,
#testimonial-slider_2 .owl-next {
    bottom: -40px
}

#testimonial-slider_2 .owl-prev,
#recent_project .owl-prev {
    background: #fff;
    border-radius: 5px;
    color: #2e2e2e;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

#recent_project .owl-next {
    background: #fff;
    border-radius: 5px;
    color: #2e2e2e;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

#recent_project .owl-prev:hover {
    color: #fff
}

#recent_project .owl-next:hover {
    color: #fff
}

.recent_project_2 .owl-prev {
    background: #2e2e2e!important;
    border-radius: 5px;
    color: #fff!important;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

.recent_project_2 .owl-next {
    background: #2e2e2e!important;
    border-radius: 5px;
    color: #fff!important;
    display: inline-block;
    height: 46px;
    line-height: 46px;
    margin-right: 5px;
    text-align: center;
    width: 46px
}

.recent_project_2 .owl-prev:hover {
    color: #fff
}

.recent_project_2 .owl-next:hover {
    color: #fff
}

#testimonial-slider_2 .owl-next,
#testimonial-slider_2 .owl-buttons .owl-prev:hover,
.recent_project-slider .owl-buttons .owl-prev:hover,
#testimonial-slider_2 .owl-buttons .owl-next:hover,
.recent_project-slider .owl-buttons .owl-next:hover {
    color: #fff
}

.recent_tabs .nav-tabs {
    border-bottom: 3px solid #fff
}

.recent_tabs .nav-tabs>li>a {
    border: none;
    border-radius: 0;
    line-height: 1.42857;
    margin-right: 2px;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 50px 0 0
}

.recent_tabs .nav-tabs>li.cool-link-2:nth-child(6) a {
    padding-right: 0
}

.recent_tabs .nav-tabs>li.active>a,
.recent_tabs .nav-tabs>li.active>a:focus,
.recent_tabs .nav-tabs>li.active>a:hover {
    background-color: transparent;
    border-color: transparent;
    border: none;
    cursor: default;
    outline: none
}

.recent_tabs .nav>li>a:focus,
.recent_tabs .nav>li>a:hover {
    background-color: transparent;
    text-decoration: none;
    border: none
}

.recent_tabs .nav-tabs>li {
    float: left;
    margin-bottom: -3px
}

.cool-link-2 {
    display: inline-block;
    text-decoration: none
}

.cool-link-2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    transition: width .3s
}

.cool-link-2:hover::after,
li.active:after {
    width: 100%
}

.cool-link:hover::after,
.cool-link.active:after {
    width: 100%
}

.recent_project_2 .heading>p {
    color: #5a5a5a!important
}

.recent_project_2 .heading>h2 {
    color: #111111!important
}

.recent_project_2 .recent_box {
    background: #2e2e2e
}

.recent_project_2 .recent_box .recent_text>h3 {
    color: #fff
}

.recent_project_2 .recent_box .recent_text>p {
    color: #fff
}

.recent_project_3_slider .item {
    margin: 0 15px
}

.recent_project_3_slider .owl-buttons .owl-prev {
    background: #111;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    margin-right: 5px
}

.recent_project_3_slider .owl-buttons .owl-next {
    background: #111;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center
}

.recent_project_3_slider .owl-buttons {
    margin-right: 15px;
    text-align: right;
    margin-top: 60px
}

.recent_project_3_slider .owl-buttons .owl-prev:hover,
.recent_project_3_slider .owl-buttons .owl-next:hover {
    color: #fff
}

.rece_text {
    font-weight: lighter;
    margin-top: 57px
}

.rece_text_2 {
    font-weight: lighter;
    margin-top: -37px
}

#our_team_slider .item {
    border-radius: 0
}

#our_team_slider .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

#our_team_slider .owl-controls {
    bottom: -5%;
    left: 50%;
    position: absolute;
    text-align: center
}

#our_team_slider .owl-pagination {
    bottom: 30px;
    left: 0;
    position: relative;
    right: 0
}

#our_team_slider .owl-controls .owl-page span {
    display: block;
    width: 19px;
    height: 3px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-right: 5px;
    background: #111;
    margin-top: 30px
}

#our_team_slider .owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

#eight-section {
    background-color: #6C7A89;
    display: inline;
    width: 100%;
    float: left
}

#eight-section .eight-section-area {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
    padding: 150px 0
}

#eight-section .eight-section-area h2 {
    color: #fff;
    margin-bottom: 40px
}

#eight-section .eight-section-area .single-effect {
    display: inline-block;
    margin: 0 18px
}

#eight-section .eight-section-area .single-effect h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px
}

#eight-section .eight-section-area .single-effect .hover {
    background-color: #FFF;
    color: #888;
    margin-bottom: 80px
}

.wpf-demo-8 {
    background-color: #FFF;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 0 #555;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    filter: alpha(opacity=100)
}

.wpf-demo-8 img {
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-8:before {
    content: '';
    background-color: rgba(0, 0, 0, 0);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-8:hover {
    cursor: pointer
}

.wpf-demo-8:hover:before {
    background-color: rgba(0, 0, 0, .8)
}

.wpf-demo-8:hover .view-caption {
    -moz-transform: translateY(0%) scale(1);
    -o-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    -webkit-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1)
}

.wpf-demo-8 .view-caption {
    background-color: rgba(255, 255, 255, 1);
    bottom: 0;
    height: 20%;
    left: 0;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    text-align: left;
    z-index: 99;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: translateY(150%) scale(1.5);
    -o-transform: translateY(150%) scale(1.5);
    -ms-transform: translateY(150%) scale(1.5);
    -webkit-transform: translateY(150%) scale(1.5);
    transform: translateY(150%) scale(1.5)
}

.wpf-demo-8 .view-caption .info {
    float: left
}

.wpf-demo-8 .view-caption .info h4 {
    color: #444;
    font-size: 16px;
    font-weight: 400;
    font-weight: 700
}

.wpf-demo-8 .view-caption .info p {
    color: #333;
    font-size: 12px
}

.wpf-demo-8 .view-caption ul {
    float: right;
    display: inline-block;
    margin-left: -5px
}

.wpf-demo-8 .view-caption ul li {
    display: inline-block
}

.wpf-demo-8 .view-caption ul li a {
    color: #333;
    display: inline-block;
    padding: 7px 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.wpf-demo-8 .view-caption ul li a:hover {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

#our_team_3 .owl-next {
    border: 1px solid #e5e5e5;
    color: #111;
    display: inline-block;
    position: absolute;
    right: 0;
    top: -99px;
    height: 42px;
    width: 42px;
    border-radius: 5px;
    line-height: 37px;
    text-align: center;
    font-size: 18px
}

#our_team_3 .owl-prev {
    border: 1px solid #e5e5e5;
    color: #111;
    display: inline-block;
    position: absolute;
    right: 52px;
    top: -99px;
    height: 42px;
    width: 42px;
    border-radius: 5px;
    line-height: 37px;
    text-align: center;
    font-size: 18px;
    background: transparent
}

#our_team_3 .owl-prev:hover,
#our_team_3 .owl-next:hover {
    background: #ededed
}

.team_text {
    margin-top: 35px
}

.team_text>p {
    padding: 10px 15px 20px 0
}

.team_text>a {
    color: #111;
    border-bottom: 1px solid #111
}

#our_team_3 .item {
    margin: 0 15px
}

#sixth-section {
    background-color: #875F9A;
    display: inline;
    width: 100%;
    float: left
}

#our_team_3 .item:hover .view-caption {
    opacity: 1;
    background-color: rgba(0, 0, 0, .7);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

#sixth-section .sixth-section-area {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
    padding: 150px 0
}

#sixth-section .sixth-section-area h2 {
    color: #fff;
    margin-bottom: 40px
}

#sixth-section .sixth-section-area .single-effect {
    display: inline-block;
    margin: 0 18px
}

#sixth-section .sixth-section-area .single-effect h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 20px
}

#sixth-section .sixth-section-area .single-effect .hover {
    background-color: #FFF;
    color: #888;
    border-radius: 5px 5px 0 0
}

.wpf-demo-gallery {
    background-color: #FFF;
    display: block;
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-gallery img {
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.wpf-demo-gallery:hover .view-caption:hover h4 {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.wpf-demo-gallery:hover .view-caption:hover a {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1)
}

.wpf-demo-gallery .view-caption {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -moz-transform: scale(.5);
    -o-transform: scale(.5);
    -ms-transform: scale(.5);
    -webkit-transform: scale(.5);
    transform: scale(.5)
}

.wpf-demo-gallery .view-caption h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(.4);
    -o-transform: scale(.4);
    -ms-transform: scale(.4);
    -webkit-transform: scale(.4);
    transform: scale(.4)
}

.wpf-demo-gallery .view-caption a {
    border: medium none;
    border-radius: 4px;
    bottom: 55%;
    color: #111;
    display: inline-block;
    font-size: 25px;
    line-height: 18px;
    padding: 15px 15px;
    position: relative;
    top: 45%;
    transform: scale(.4);
    transition: all 0.5s ease 0s;
    background: #fff
}

#testimonials .heading_border {
    left: 48%;
    position: relative
}

.testimonial-detail p {
    font-size: 15px;
    display: inline-block;
    padding: 0 10%
}

.testimonial-detail h3 {
    font-size: 18px;
    font-weight: 700
}

.testimonial-detail>p::before {
    content: url(../images/testinomial_errow_bf.png);
    position: absolute;
    left: 0;
    top: 0
}

.testimonial-detail>p::after {
    bottom: 7px;
    content: url(../images/testinomial_errow_af.png);
    position: absolute;
    right: 0
}

.testimonial-detail {
    position: relative
}

#testimonials .owl-theme .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

#testimonials .owl-theme .owl-controls {
    margin-top: 60px;
    text-align: center
}

.pag_pad .owl-theme .owl-controls {
    margin-top: -60px!important
}

#testimonials .owl-pagination {
    bottom: 30px;
    left: 0;
    position: relative;
    right: 0
}

#testimonials .owl-carousel .owl-item img {
    width: auto!important;
    display: inline-block
}

#testimonials .owl-wrapper-outer {
    border-radius: 5px
}

#testimonials .owl-theme .owl-controls .owl-page span {
    display: block;
    width: 19px;
    height: 3px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    margin-right: 5px;
    background: #fff;
    margin-top: 30px
}

#testimonials .owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

.image_text {
    height: 260px;
    border-radius: 5px 5px 0 0
}

.testi_heading {
    background: #f7f7f7;
    box-shadow: 0 13px 10px -9px #a6a6a6;
    padding-bottom: 15px;
    padding-top: 20px;
    border-radius: 0 0 5px 5px
}

#testimonial-slider_2 .item {
    margin: 15px;
    opacity: .5;
    transition: all 0.7s ease 0s
}

#testimonial-slider_2 .item:hover {
    opacity: 1;
    transition: all 0.7s ease 0s
}

.testi_heading>h4 {
    font-size: 18px;
    font-weight: 700
}

.image_text p {
    font-style: oblique;
    padding: 0 60px
}

#testimonial-slider_2 .item>img {
    position: relative;
    top: 40px
}

#testimonial-slider_2 .item {
    margin-bottom: 10px
}

.rating:not(:checked)>input {
    position: absolute;
    top: -9999px;
    clip: rect(0, 0, 0, 0)
}

.rating:not(:checked)>label {
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 150%;
    line-height: 1.2;
    color: #fff
}

.rating:not(:checked)>label:before {
    content: 'â˜… '
}

.rating>input:checked~label {
    color: #fff
}

.rating>label:active {
    position: relative;
    top: 2px;
    left: 2px
}

#testimonial-slider_2 .owl-controls .owl-page {
    display: inline-block;
    zoom: 1;
}

#testimonial-slider_2 .owl-controls {
    bottom: -5%;
    left: 50%;
    position: absolute;
    text-align: center
}

#testimonial-slider_2 .owl-pagination {
    bottom: -37px;
    left: -27px;
    position: relative;
    right: 0
}

#testimonial-slider_2 .owl-controls .owl-page span {
    display: block;
    width: 19px;
    height: 3px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-right: 5px;
    background: #111;
    margin-top: 30px
}

#testimonial-slider_2 .owl-controls .owl-page.active span,
.owl-controls.clickable .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

#testimonial-slider_2 .owl-item .item {
    opacity: 1
}

#testimonial-slider_2 .owl-item.center .item {
    opacity: 1
}

#testimonial-slider_2 .owl-nav {
    width: 100%;
    float: left;
    padding: 30px 0 0;
    text-align: center
}

#testimonial-slider_2 .owl-nav>div {
    position: static;
    display: inline-block;
    vertical-align: middle
}

.latest_box {
    background: #fff;
    padding: 45px 25px 25px;
    border-radius: 5px;
    width: 348px;
    height: 236px
}

.latest_box>h3 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 15px
}

.latest_box>p {
    padding-bottom: 25px
}

.latest_box .lates_border {
    height: 1px;
    background: #cfcfcf
}

.latest_box i {
    font-size: 24px;
    vertical-align: middle;
    margin-left: 25px
}

.latest_box span {
    font-size: 12px;
    vertical-align: middle
}

.latest_box>img {
    margin-right: 10px;
    vertical-align: middle
}

#latest_news-slider .item {
    margin-right: 35px
}

#latest_news-slider .owl-page {
    display: inline-block;
    zoom: 1;
}

#latest_news-slider .owl-theme .owl-controls {
    margin-top: 60px;
    text-align: center
}

#latest_news-slider .owl-pagination {
    margin-top: 50px;
    left: 0;
    position: relative;
    right: 0;
    text-align: center;
    margin-right: 20px
}

#latest_news-slider .owl-page span {
    display: block;
    width: 19px;
    height: 3px;
    filter: Alpha(Opacity=50);
    opacity: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    margin-right: 5px;
    background: #111;
    margin-top: 30px
}

#latest_news-slider .owl-page.active span,
#latest_news-slider .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

.latest_box>img {
    width: auto!important
}

.updates {
    background: #111;
    padding: 30px 25px;
    border-radius: 5px;
    height: 237px
}

#latest_news .col-md-8 {
    padding-right: 0
}

#latest_news .col-md-4 {
    padding-left: 0
}

.updates form input {
    width: 100%;
    display: block;
    border-radius: 5px;
    border: 1px solid #484848;
    height: 50px;
    background: #2a2a2a;
    color: #fff;
    padding-left: 15px;
    margin-bottom: 10px
}

.updates .col-md-12 {
    padding: 0
}

.updates .col-md-10 {
    padding: 0
}

.updates .col-md-2 {
    padding: 0
}

.updates input.submit {
    display: none
}

.updates form input {
    width: 100%;
    display: block;
    border-radius: 5px;
    border: 1px solid #484848;
    height: 50px;
    background: #2a2a2a;
    color: #fff;
    padding-left: 15px;
    margin-bottom: 10px
}

.updates form input.email {
    width: 100%;
    display: block;
    border-radius: 5px 0 0 5px;
    border: 1px solid #484848;
    height: 50px;
    background: #2a2a2a;
    color: #fff;
    padding-left: 15px;
    margin-bottom: 10px
}

.col-md-2>span>a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #484848;
    border-radius: 0 5px 5px 0;
    color: #2a2a2a;
    display: block;
    height: 50px;
    line-height: 54px;
    text-align: center;
    font-size: 35px
}

.over_image {
    position: absolute;
    z-index: 1;
    right: -29px;
    top: 85px
}

.updates form {
    position: relative;
    z-index: 2
}

.latest_news_item {
    background: #fff;
    margin-bottom: 60px
}

.bg_light {
    background: #edf3f8
}

.latest_news_item:hover .image img {
    transform: scale(1.09);
    transition: all 0.7s ease 0s
}

.latest_news_item .latest_news_text:hover a {
    transition: all 0.7s ease 0s
}

.image img {
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    transition: all ease .3s
}

.image,
.image img,
.latest_news_item .latest_news_head {
    overflow: hidden;
    position: relative!important;
    border-radius: 5px 5px 0 0
}

.image img {
    width: 100%
}

.image a {
    display: block
}

.latest_news_content {
    position: relative
}

.latest_news_content .latest_news_text {
    padding: 30px 20px
}

.latest_news_content p {
    margin: 0
}

.latest_news_content .favroute p {
    line-height: 34px;
    margin-left: 15px;
    font-size: 12px;
    margin-top: 5px
}

.feature3 .latest_news_meta,
.latest_news_content .latest_news_meta {
    display: table;
    table-layout: fixed;
    width: 100%
}

.latest_news_content .latest_news_meta {
    background: #f5f5f5;
    padding: 8px 20px
}

.latest_news_content .latest_news_meta span,
.feature3 .latest_news_meta span {
    display: table-cell;
    font-size: 12px;
    line-height: 38px;
    text-align: left
}

.latest_news_content .latest_news_meta span i {
    font-size: 24px;
    margin-right: 2px;
    vertical-align: middle
}

.latest_news_content .latest_news_meta span img {
    margin-right: 10px;
    vertical-align: middle
}

.latest_news_text>a {
    border-bottom: 2px solid;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}

.latest_box_1 {
    margin: 15px
}

.latest_box_4>h2>a {
    color: #111
}

#latest_news .owl-controls {
    left: 50%;
    position: absolute;
    text-align: center
}

#latest_news .owl-pagination {
    left: -27px;
    position: relative;
    right: 0
}

#latest_news .owl-controls .owl-page {
    display: inline-block
}

#latest_news .owl-controls .owl-page span {
    background: #111;
    border-radius: 20px;
    display: block;
    height: 3px;
    margin-right: 5px;
    margin-top: 30px;
    opacity: 1;
    width: 19px
}

#bg_text {
    background: url(../images/bg_1.jpg) no-repeat fixed center / cover;
    padding: 115px 0
}

#bg_text h2 {
    color: #fff;
    font-size: 42px
}

#bg_text h2>span {
    font-size: 60px
}

#bg_text .bg_text_box {
    display: inline-block;
    margin-right: 75px
}

#bg_text .bg_text_box>h3 {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 20px 0
}

#bg_text .bg_text_box>p {
    color: #fff;
    display: inline-block;
    line-height: 27px
}

#bg_text .bg_text_box>i {
    color: #fff;
    display: inline-block;
    font-size: 35px
}

.company_year {
    margin-top: 15px
}

.company_icon {
    border: 1px solid #d9d9d9;
    border-radius: 100%;
    height: 65px;
    line-height: 77px;
    text-align: center;
    width: 65px;
    background: #fff
}

.company_icon i {
    font-size: 28px
}

.company_text>h3 {
    padding: 0 0 15px
}

.our_company_border {
    background: #ccc;
    height: 435px;
    margin: 139px 129px;
    position: absolute;
    width: 1px
}

#map_banner .item img {
    display: block;
    width: 100%;
    height: auto
}

#contact {
    padding: 0
}

.contact {
    position: relative
}

#map_banner .owl-page span {
    background: #fff;
    height: 10px;
    width: 10px;
    right: 0;
    display: block;
    margin-bottom: 3px;
    border-radius: 50%
}

#map_banner .owl-page.active span,
#map_banner .owl-page:hover span {
    filter: Alpha(Opacity=100);
    opacity: 1
}

#map_banner .owl-pagination {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 43%
}

.dotted {
    position: absolute;
    right: 18px;
    top: 43%
}

#contact-us .contact-text {
    border-radius: 5px;
    display: inline-block;
    padding: 30px 20px;
    position: absolute;
    top: 150px;
    z-index: 1;
    right: 0;
    width: 400px
}

.agetn-contact-2 p {
    font-size: 15px!important;
    padding-bottom: 17px;
    color: #fff
}

#contact-us .agetn-contact-2 i {
    font-size: 26px;
    margin-right: 15px;
    vertical-align: middle
}

.agetn-contact-2>p:nth-child(5) {
    margin: -23px 0 0 42px
}

#google-container {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #e7eaf0
}

@media only screen and (min-width:768px) {
    #google-container {
        height: 300px
    }
}

@media only screen and (min-width:1170px) {
    #google-container {
        height: 600px
    }
}

#cd-google-map {
    position: relative
}

#cd-google-map address {
    display: none
}

@media only screen and (min-width:768px) {
    #cd-google-map address {
        font-size: 15px;
        font-size: .9375rem;
        text-align: center
    }
    #our-partner-slider .owl-next {
        display: none!important
    }

}

#cd-zoom-in,
#cd-zoom-out {
    height: 32px;
    width: 32px;
    cursor: pointer;
    margin-left: 10px;
    background-color: #f5213e;
    background-repeat: no-repeat;
    background-size: 32px 64px;
    background-image: url(../images/cd-icon-controller.svg)
}

.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
    background-color: #d36868
}

@media only screen and (min-width:768px) {
    #cd-zoom-in,
    #cd-zoom-out {
        margin-left: 50px
    }
}

#cd-zoom-in {
    background-position: 50% 0;
    margin-top: 10px;
    margin-bottom: 1px
}

@media only screen and (min-width:768px) {
    #cd-zoom-in {
        margin-top: 50px
    }
}

#cd-zoom-out {
    background-position: 50% -32px
}

.footer_link>li {
    display: inline-block
}

.footer_link>li>a {
    color: #fff;
    padding: 10px
}

.footer_link>li + li::before {
    content: url(../images/foote_di.jpg);
    top: -3px;
    position: relative;
    right: 2px
}

.footer_link {
    margin-top: 10px
}

.footer_line {
    background: #fff;
    display: block;
    height: 1px;
    opacity: .2
}

.footer_email input.email {
    background: #fff;
    border: 1px solid #484848;
    border-radius: 5px 0 0 5px;
    display: block;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 15px;
    width: 100%;
    font-size: 12px;
    color: #111
}

.footer_email .submit {
    display: none
}

.footer_email .submit_b>span>a {
    border: none;
    border-radius: 0 5px 5px 0;
    color: #fff;
    display: block;
    font-size: 35px;
    height: 50px;
    line-height: 54px;
    text-align: center
}

.footer_email .col-md-10 {
    padding: 0
}

.footer_email .col-md-2 {
    padding: 0
}

.footer_p {
    color: #fff
}

.footer_botom p {
    color: #fff
}

.footer_botom a {
    color: #fff
}

.footer_botom i {
    vertical-align: middle;
    padding: 0 8px
}

.color_white.p_24 {
    font-weight: 300
}

.social-icons_1 li {
    background: rgba(255, 255, 255, .13);
    display: inline-block;
    height: 34px;
    line-height: 31px;
    margin-right: 0;
    text-align: center;
    width: 34px
}

.social-icons_1 a {
    color: #fff;
    display: block
}

.blog_social_icon a {
    padding-top: 1px!important
}

.footer_box_1 .footer_p {
    color: #9b9b9b
}

.footer_box_1>h3 {
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid rgba(251, 251, 251, .17);
    padding-bottom: 10px;
    margin-bottom: 45px;
    font-family: 'Poppins-Medium'
}

.footer_link_1>li + li {
    margin-top: 12px
}

.footer_link_1>li>a {
    color: #9b9b9b;
    font-family: 'Poppins-Regular'
}

.footer_link_1 {
    display: inline-block
}

.footer_link_1>li {
    margin-left: 20px
}

.footer_link_1 li a:hover {
    transition: all 0.7s ease 0s
}

.footer_box_1>ul li::before {
    content: url(../images/footer_li.png);
    margin: 0 -20px;
    position: absolute;
    transition: all 0.7s ease 0s
}

.latest_footer {
    margin-bottom: 15px
}

.latest_footer>p {
    color: #9b9b9b
}

.latest_footer h4 a {
    color: #9b9b9b
}

.latest_footer h4 {
    color: #fff;
    font-size: 16px;
    line-height: 24px
}

.footer_1_contact p {
    color: #9b9b9b;
    font-size: 14px;
    padding-bottom: 17px
}

.footer_1_contact .icon-icons74 {
    color: #fff;
    font-size: 30px;
    margin-left: -4px;
    vertical-align: top
}

.adres_box>p {
    display: table-cell
}

.adres_box {
    display: table;
    width: 100%
}

.footer_1_contact p i {
    font-size: 24px;
    margin-right: 7px;
    vertical-align: middle;
    color: #fff
}

#footer_1 p {
    color: #fff
}

#page_banner {
    background-image: url(../images/sub_head_bg.png);
    padding-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

#page_banner .page-header {
    margin: 86px 0 52px;
    border: none
}

#page_banner .page-header h2 {
    color: #fff;
    padding-bottom: 10px;
    font-size: 32px;
    text-align: center;
    font-family: 'Poppins-Medium';
    text-transform: capitalize
}

#page_banner .page-header p {
    color: #fff;
    text-align: center
}

#about_page .about_box {
    background: transparent;
    padding: 36px 0
}

#about_page .about_img img {
    width: 100%
}

.text_ita {
    background: #f2f2f2;
    padding: 20px 25px 20px
}

.text_ita p {
    font-style: italic;
    font-size: 18px
}

#background_para {
    background: url(../images/bg_2.jpg) no-repeat fixed 50% center / cover
}

#background_para h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px
}

#background_para p {
    color: #fff
}

.error {
/*    padding-bottom: 140px;
    padding-top: 170px
padding : 0px;*/
}

.error>img {
    margin-bottom: 60px
}

.error>a:hover {
    background: #111
}

#contact_us_page .contact>div {
    height: 415px!important
}

#contact_form .single-query>input[type="text"] {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    height: 48px;
    margin-bottom: 15px;
    font-size: 13px;
    padding-left: 10px;
    transition: all 0.3s ease 0s;
    width: 100%
}

#contact_form .single-query select {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    height: 48px;
    margin-bottom: 15px;
    font-size: 13px;
    padding-left: 10px;
    transition: all 0.3s ease 0s;
    width: 100%
}

#contact_form .single-query textarea {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 13px;
    height: 130px;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-top: 15px;
    transition: all 0.3s ease 0s;
    width: 100%;
    resize: none
}

.blog_text_area .single-query textarea {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 13px;
    height: 130px;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-top: 15px;
    transition: all 0.3s ease 0s;
    width: 100%;
    resize: none
}

#contact_form h3 {
    font-weight: 600;
    padding-bottom: 25px
}

#contact_form h3 span {
    color: #fff;
    border-radius: 100%;
    font-size: 16px;
    line-height: 16px;
    margin-right: 14px;
    padding: 6px 13px;
    transition: all 0.7s ease 0s;
    vertical-align: middle
}

#contact_form .form_left .footer_1_contact p {
    color: #5a5a5a;
    display: inline-block;
    line-height: 18px
}

#contact_form .form_left .footer_1_contact i {
    font-size: 27px;
    margin-right: 20px
}

#contact_form .form_left .social-icons_1 li {
    background: #5a5a5a
}

#contact_form .over_image {
    position: absolute;
    right: -29px;
    top: 243px;
    z-index: 1
}

#contact_form .updates {
    background: #edf3f8
}

#contact_form .updates form input {
    background: #fff;
    border: 1px solid #b7b7b7;
    color: #5a5a5a
}

#contact_form .col-md-2>span>a {
    background: #b7b7b7;
    border: 1px solid #b7b7b7;
    color: #fff
}

#contact_form .contact-text {
    border-radius: 5px;
    padding: 30px 25px
}

#contact_form .agetn-contact-2 p {
    color: #fff;
    padding-bottom: 17px
}

#contact_form .agetn-contact-2 i {
    font-size: 26px;
    margin-right: 15px;
    vertical-align: middle
}

#faq .items>li>a {
    background: #fff;
    color: #111;
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 15px 20px;
    position: relative;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    text-decoration: none
}

#faq .items>li>a:after {
    right: 15px
}

#faq .items>li>a:hover,
#faq .items>li>a.expanded {
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    color: #fff;
    text-decoration: none!important;
    border: 1px solid transparent;
    outline: none
}

#faq .items .sub-items {
    background: #fff;
    display: none;
    margin-bottom: 10px;
    margin-top: -10px;
    padding: 20px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 0 0 5px 5px;
    border-top: none
}

#faq .items {
    padding-top: 30px
}

#faq .items .sub-items p {
    line-height: 26px;
    padding: 8px 20px
}

.tab_container {
    padding: 0
}

#faq .items>li>a::after,
#faq .items>li>a::after,
#faq .tab_drawer_heading::after {
    content: url(../images/pluse.png);
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 18px
}

#faq .items>li>a.expanded::after,
#faq.procedure_content .items>li>a.expanded::after,
#faq .tab_drawer_heading.d_active::after {
    content: url(../images/minas.png)
}

.faq .items>li>a {
    background: transparent;
    color: #111;
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 15px 20px;
    position: relative;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    text-decoration: none
}

.faq .items>li>a:after {
    right: 15px
}

.faq .items>li>a:hover,
#faq .items>li>a.expanded {
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    color: #fff;
    text-decoration: none!important;
    border: 1px solid transparent;
    outline: none
}

.faq .items .sub-items {
    background: #fff;
    display: none;
    margin-bottom: 10px;
    margin-top: -10px;
    padding: 20px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 0 0 5px 5px;
    border-top: none
}

.faq .items {
    padding-top: 30px
}

.faq .items .sub-items p {
    line-height: 26px;
    padding: 8px 20px
}

#news-section .input-append {
    border: 1px solid #d5dadf;
    display: block;
    height: 47px;
    line-height: 43px;
    width: 100%;
    border-radius: 5px;
    background: #fff
}

#news-section .input-medium.search-query {
    background: transparent;
    border: 0 none;
    display: inline-block;
    padding-left: 15px;
    width: 80%
}

#news-section .add-on {
    background: transparent;
    border: medium none;
    float: right;
    font-size: 18px;
    padding-right: 15px
}

#news-section .pro-list>li {
    cursor: pointer;
    list-style: url(../images/latest_news_li.png);
    margin-bottom: 20px;
    padding: 0 0 0 8px;
    transition: all 0.7s ease 0s;
    font-size: 15px
}

#news-section .pro-list {
    margin-left: 15px
}

.news_image .price .tag {
    color: #fff;
    display: block;
    font-size: 28px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    width: 80px
}

.news_image .price .tag_white {
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    width: 80px;
    background: #fff;
    color: #353535;
    display: block
}

.news_image .price {
    bottom: 10px;
    position: absolute;
    right: 10px;
    z-index: 0
}

.news_image>img {
    width: 100%
}

.latest_page_box>p {
    display: inline-block;
    font-size: 15px;
    margin-right: 30px
}

.latest_page_box>p>span {
    color: #5a5a5a;
    padding: 0 7px 0 0
}

.latest_page_box img {
    vertical-align: middle;
    margin-right: 10px
}

.news_image {
    margin-bottom: 30px;
    position: relative;
    border: 1px solid #d5dadf;
    padding: 1px
}

.latest_page_box span a {
    color: #5a5a5a
}

.latest_page_box>h2 {
    margin: 30px 0 20px
}

.latest_page_box .btn-dark:hover {
    color: #fff
}

.news_border {
    background: #cfcfcf;
    height: 1px;
    margin: 50px 0;
    width: 100%
}

.pager {
    margin: 0;
    text-align: left
}

.pager li {
    display: inline-block
}

.pager li>a {
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 27px;
    width: 40px;
    color: #111
}

.pager li>a:hover,
.pager li>a:focus,
.pager li.active>a {
    color: #fff
}

.latest_page_box .owl-pagination {
    bottom: 50px!important
}

.latest_page_box .owl-wrapper-outer {
    border-radius: 0!important
}

.have_qus {
    border-radius: 5px;
    padding: 30px 25px
}

.have_qus>h3 {
    color: #fff;
    margin-bottom: 25px
}

.have_qus>p {
    color: #fff
}

.have_qus .btn-dark {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #111;
    display: inline-block;
    font-size: 12px;
    overflow: hidden;
    padding: 13px 25px;
    text-transform: uppercase;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s!important;
    margin-top: 30px
}

.have_qus .btn-dark i {
    font-size: 17px;
    margin-right: 12px;
    vertical-align: sub
}



.have_qus .btn-dark:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #111
}
.news-tag>a {
    border: 1px solid #cfcfcf;
    color: #676767;
    border-radius: 5px;
    font-size: 13px;
    padding: 8px 15px 7px 13px;
    line-height: 50px
}
.news-tag>a:hover {
    color: #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}
.news-tag {
    padding-bottom: 0
}
.latest_page_box>h3 {
    margin: 30px 0 20px
}
.latest_page_box .effect-layla img {
    width: 100%
}
.news_3 .latest_page_box {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    padding-top: 16px;
    margin-bottom: 50px
}
.news_3 .news_image {
    margin-top: 16px
}
.news_date {
    padding: 0 25px
}
.news_padding>h3 {
    margin: 20px 0 10px
}
.news_padding>p {
    display: inline-block
}
.news_padding {
    padding: 0 25px 25px
}
.news_date i {
    font-size: 20px;
    vertical-align: middle
}
.latest_box_4>p {
    padding: 20px 50px
}
.latest_box_4>span {
    padding: 0!important;
    margin: 0 50px;
    color: #5a5a5a
}
.latest_box_4 img {
    margin-right: 5px
}
.latest_box_4 i {
    margin-right: 5px;
    font-size: 18px;
    vertical-align: middle
}
.news_4 .pager {
    text-align: center
}
.latest_box_5 {
    padding: 80px 35px
}
.latest_box_5>h2 {
    padding-bottom: 20px;
    padding-top: 30px
}
.latest_box_5>a {
    font-size: 16px
}
.latest_box_5>p {
    margin-bottom: 40px
}
.news_5 .owl-wrapper-outer {
    border-radius: 0!important
}
.news_5 .owl-pagination {
    bottom: 50px!important
}
.news_5 .pager {
    text-align: center
}
.latest_box_image>img {
    width: 100%
}
.latest_page_details>p {
    font-size: 15px
}
.latest_page_details span {
    color: #111;
    font-size: 15px
}
.latest_page_details li {
    font-size: 15px;
    color: #5a5a5a;
    padding-bottom: 25px
}
.add>h2 {
    margin-bottom: 25px
}
.news_details .single-query>input[type="text"] {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 13px;
    height: 48px;
    margin-bottom: 15px;
    padding-left: 10px;
    transition: all 0.3s ease 0s;
    width: 100%
}
.news_details .single-query textarea {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 13px;
    height: 260px;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-top: 15px;
    transition: all 0.3s ease 0s;
    width: 100%
}
.our_team .item {
    margin: 0 0 80px!important
}
.our_team .about_box {
    padding: 45px 25px!important
}
.our_team .social-icons_1 li {
    background: #818181
}
.our_team .owl-pagination {
    bottom: 96px!important
}
.our_team .item .col-md-7 {
    padding: 0
}
#team_slider_2 .owl-prev {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #5e5e5e;
    font-size: 20px;
    height: 43px;
    line-height: 40px;
    position: absolute;
    right: 50px;
    text-align: center;
    top: -78px;
    width: 43px
}
#team_slider_2 .owl-next {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #5e5e5e;
    font-size: 20px;
    height: 43px;
    line-height: 40px;
    position: absolute;
    right: 0;
    text-align: center;
    top: -78px;
    width: 43px
}
.project .item {
    margin-bottom: 30px
}
.project .recent_box {
    background: #2e2e2e
}
.project .recent_text>h3 {
    color: #fff
}
.project .recent_text>p {
    color: #fff
}
.project .heading>h2 {
    color: #111111!important
}
.project .heading>p {
    color: #5a5a5a!important
}
.project .nav-tabs>li>a {
    color: #111
}
.project .nav-tabs {
    border-bottom: 3px solid #111
}
.project .recent_tabs {
    margin-top: 36px
}
.italic {
    color: #111;
    font-size: 18px;
    font-style: oblique;
    margin-bottom: 30px
}
.project_details_text>h3 {
    margin-bottom: 30px;
    margin-top: 80px
}
.project_details_text li {
    padding-bottom: 15px;
    list-style: none;
    margin-left: 15px
}
.project_details_text ul {
    margin-bottom: 30px
}
.owl-wrapper-outer {
    border-radius: 5px
}
#project_slider .owl-wrapper-outer {
    border-radius: 5px
}
.project_des {
    margin-top: 40px
}
.project_des .table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: none;
    padding: 20px 15px
}
.testimonials_box {
    background: #edf3f8;
    border-radius: 5px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 30px
}
.testimonials_box>h3 {
    margin-bottom: 25px;
    margin-top: 30px
}
.testimonials_box>h4 {
    margin-top: 30px
}
.solution_tabs>ul {
    margin-top: 30px;
    margin-bottom: 60px
}
.solution_tabs ul li a {
    background: #1888f1;
    color: #fff;
    font-size: 15px;
    display: block;
    height: 50px;
    line-height: 32px;
    width: 100%;
    padding-left: 20px
}
.solution_tabs .active a {
    color: #fff
}
.solution_tabs ul li a:hover {
    color: #fff
}
.solution_tabs ul li:active {
    color: #fff
}
.solution_tabs ul li a:focus {
    color: #fff;
    outline: none;
    text-decoration: none
}
#solution .footer_1_contact p {
    color: #5a5a5a;
    line-height: 18px;
    display: inline-block;
    vertical-align: sub
}
#solution .footer_1_contact i {
    font-size: 26px;
    margin-right: 15px
}
#solution .footer_1_contact>h3 {
    margin-bottom: 30px
}
#solution .footer_1_contact {
    margin-bottom: 43px
}
.brochure>h3 {
    margin-bottom: 30px
}
.brochure>p {
    margin-bottom: 50px
}
.brochure>a {
    border-radius: 5px;
    color: #fff;
    display: block;
    height: 52px;
    line-height: 52px;
    text-align: center;
    text-transform: uppercase
}
.brochure i {
    font-size: 28px;
    vertical-align: text-bottom;
    margin-right: 15px
}
#solution .project_details_text li {
    font-size: 18px
}
#solution img {
    width: 100%
}
.blog_recent_update .media-heading>a {
    font-size: 15px;
    color: #1888f1;
    line-height: 24px
}
.blog_archive ul li a {
    color: #1888f1
}
.media-body>p {
    margin-bottom: 10px;
    font-size: 15px
}
.media {
    border-bottom: 1px solid #cfcfcf
}
.media-body>span {
    font-size: 12px;
    color: #959595
}
.comments .media-body>p {
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 15px
}
.comments .media-heading {
    margin-top: 32px
}
.comments .media {
    border-bottom: none
}
.comments .media {
    transition: all 0.7s ease 0s
}
.comments .media .media-left {
    transition: all 0.7s ease 0s
}
.comments .media .media-body {
    transition: all 0.7s ease 0s
}
.add .media {
    background: #edf3f8;
    border-bottom: none;
    padding: 30px
}
.add .media-left,
.media>.pull-left {
    padding-right: 30px
}
.add .media-heading {
    margin-bottom: 15px;
    margin-top: 24px;
    font-size: 22px
}
.add .media {
    margin-top: 100px
}
.add .media-heading>span {
    font-size: 12px;
    margin-left: 10px;
    color: #959595
}
#shop-slider .owl-prev {
    display: inline-block;
    position: absolute;
    top: 50%
}
#shop-slider .owl-next {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0
}
.shop_details>h2 {
    margin-bottom: 25px
}
.shop_details>span {
    font-size: 28px
}
.shop_details>span>del {
    color: #737373;
    font-size: 18px
}
.shop_details>p {
    padding-right: 25px;
    margin-top: 20px;
    margin-bottom: 25px
}
.shop_details .cart_quantity_button .input-number {
    height: 46px;
    text-align: center;
    width: 46px;
    margin-left: 2px;
    z-index: 0
}
.cart_quantity_button {
    width: 138px;
    display: inline-block;
    margin-right: 15px
}
.cart_quantity_button .btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    box-shadow: none;
    cursor: not-allowed;
    height: 46px;
    opacity: .65;
    width: 46px;
    z-index: 0
}
.cart_quantity_button .btn {
    font-size: 11px;
    font-weight: lighter;
    height: 46px;
    text-align: center;
    width: 46px;
    z-index: 0!important
}
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
    margin-right: -2px
}
.cart_button_1 {
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    width: 133px;
    background: #111;
    vertical-align: top;
    text-transform: uppercase
}
.cart_button_1:hover {
    color: #fff
}
.category_text span {
    font-weight: 700
}
.shop_social_icons ul li {
    background: #fff;
    border-radius: 5px;
    display: inline-block;
    height: 34px;
    line-height: 34px;
    margin-right: 7px;
    text-align: center;
    width: 34px
}
.shop_social_icons ul li a {
    color: #888;
    display: block
}
.share_product>p {
    display: inline-block;
    color: #fff;
    font-size: 20px
}
.shop_social_icons {
    display: inline-block;
    margin-left: 50%
}
.share_product {
    border-radius: 5px;
    padding: 10px 0 10px 20px
}
.shop_box .image_s>img {
    width: 100%
}
.category_box>h3 {
    margin-bottom: 35px
}
.category_box .single-query-slider .btn-slide {
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    color: #656565;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    height: 29px;
    text-transform: uppercase;
    width: 75px
}
.category_box .price {
    border: 1px solid #e0e0e0;
    color: #656565;
    display: inline-block;
    float: right;
    height: 29px;
    line-height: 26px;
    margin-top: 0;
    text-align: center;
    width: 138px
}
.category_box .leftLabel,
.rightLabel {
    color: #535353;
    display: inline-block;
    font-size: 12px
}
.category_box .single-query-slider label {
    color: #575757;
    font-weight: 400;
    font-size: 12px
}
.price.text-right>span {
    font-size: 12px
}
.category_box .nstSlider {
    background: #d8d8d8;
    height: 12px;
    margin-bottom: 25px
}
.category_box .nstSlider .bar {
    height: 12px
}
.category_box .nstSlider .leftGrip,
.nstSlider .rightGrip {
    background: #fff!important;
    height: 20px!important;
    top: -5px!important;
    width: 20px!important;
    box-shadow: 0 1px 1px 0 #b8b8b8
}
.nstSlider .leftGrip,
.nstSlider .rightGrip {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 1px 0 #b8b8b8;
    height: 20px;
    position: absolute;
    width: 20px;
    box-shadow: 0 1px 1px 0 #b8b8b8
}
.category_box .pro-list>li {
    cursor: pointer;
    font-size: 15px;
    list-style: outside url(../images/latest_news_li.png) disc;
    margin-bottom: 20px;
    padding: 0 0 0 8px;
    transition: all 0.7s ease 0s
}
.category_box .pro-list {
    margin-left: 15px
}
.category_box .pro-list>li a {
    color: #5a5a5a
}
.shop_contact p {
    color: #5a5a5a;
    display: inline-block;
    font-size: 14px;
    padding-bottom: 17px;
    line-height: 18px
}
.shop_contact i {
    font-size: 24px;
    margin-right: 15px;
    margin-top: 10px;
    vertical-align: top
}
.shop_contact>h3 {
    margin-bottom: 35px
}
#shop .content-right-md>img {
    width: 100%
}
.shp_des {
    bottom: 14px;
    padding-left: 45px;
    position: absolute;
    top: 24%;
    z-index: 1
}
.shp_des>h2 {
    margin-bottom: 15px
}
.shp_des>p {
    margin-bottom: 30px
}
#shop .owl-page span {
    background: #848485
}
.box_image>img {
    width: 100%
}
.shop_details_box {
    border: 1px solid #d5d5d5;
    border-radius: 3px
}
.box_des>span {
    font-size: 18px
}
.box_des>p {
    margin-top: 20px;
    padding-bottom: 30px
}
.box_des>a {
    margin-bottom: 15px;
    color: #111;
    font-size: 22px;
    font-weight: 500
}
.box_des {
    border-bottom: 4px double #d5d5d5;
    margin: 30px 25px 0
}
.cart_box>a {
    color: #5a5a5a;
    font-size: 15px
}
.cart_box>a>.icon-icons240 {
    padding-bottom: 5px
}
.cart_box {
    padding: 20px 25px
}
.cart_box i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle
}
.tag_new {
    border-radius: 50%;
    color: #fff;
    height: 60px;
    line-height: 57px;
    position: absolute;
    right: 26px;
    text-align: center;
    top: 10px;
    width: 60px
}
#shop .pager {
    margin: 0;
    text-align: center
}
#cart .table-responsive>.table tbody tr>td {
    padding: 30px 0;
    vertical-align: middle
}
#cart .table-responsive>.table tbody tr>td .btn-close {
    display: inline-block;
    margin-top: -15px;
    font-size: 40px;
    color: #414141
}
#cart .table .spinner {
    width: 118px
}
#cart .table .btn-danger {
    background-color: #fff;
    border-color: #ccc;
    color: #333
}
#cart .table .btn-success {
    background-color: #fff;
    border-color: #ccc;
    color: #333
}
#cart .table .btn-success:hover,
.btn-danger:hover {
    background-color: #e6e6e6;
    border-color: #e6e6e6;
    color: #333
}
#cart .table .input-group .btn {
    height: 46px;
    margin-right: 0;
    position: relative;
    width: 40px;
    z-index: 0
}
.product-name>p {
    font-size: 15px;
    font-weight: 400
}
.product-name>h6 {
    font-size: 15px;
    font-weight: 700
}
#cart .table th {
    font-size: 22px
}
#cart .table .input-group .btn.btn-default {
    height: 46px;
    width: 40px;
    margin-right: 0;
    position: relative;
    z-index: 0
}
#cart .shop_total .table-responsive {
    padding-right: 20px;
    margin-top: 20px
}
#cart .table .input-group .form-control {
    height: 46px;
    width: 39px;
    position: relative;
    z-index: 0
}
#cart .table>thead>tr>th {
    border-bottom: medium none!important;
    padding-left: 0;
    padding-top: 0
}
#cart .table .price h4 {
    margin-top: -15px!important
}
#cart .table tr:last-child {
    border-bottom: 1px solid #ddd
}
.shop_total {
    border-top: 3px solid #3c3d3d;
    margin-top: -20px
}
#cart .buttons input {
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    height: 47px;
    width: 100%;
    padding-left: 15px
}
.cart_sub>h3 {
    margin-bottom: 30px;
    margin-top: -6px
}
.buttons>a {
    background: #111;
    border-radius: 3px;
    color: #fff;
    display: block;
    height: 46px;
    line-height: 46px;
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700
}
.buttons>a:hover {
    border-radius: 3px;
    color: #fff
}
.border_left {
    border-left: 1px solid #cecece;
    padding: 0 0 0 40px
}
.cart_sub .items li a {
    display: block;
    margin-bottom: 30px
}
.shop_total .table>tbody>tr>td {
    border-bottom: 1px solid #ddd;
    line-height: 1.42857;
    padding: 20px 0;
    vertical-align: top;
    border-top: medium none
}
.cart_sub .items>li>a::before,
.cart_sub .items>li>a::before,
.cart_sub .tab_drawer_heading::after {
    content: url(../images/cacu_ship.png);
    display: inline-block;
    position: absolute;
    left: 38px
}
.cart_sub .items>li>a.expanded::before,
.cart_sub.procedure_content .items>li>a.expanded::before,
.cart_sub .tab_drawer_heading.d_active::before {
    content: url(../images/minas_2.png)
}
.cart_sub .items a h3 {
    margin-left: 40px
}
#pricing_table .nav-tabs {
    border-bottom: 3px solid #111;
    display: inline-block
}
#pricing_table .nav-tabs>li.cool-link-2:nth-child(3) {
    padding-right: 0
}
.pricing-box {
    background: #f6f6f6;
    border: 1px solid #e1e1e1;
    margin: 0 -1px;
    padding: 0!important;
    border-radius: 5px
}
.pricing-table-heading {
    background: #fff;
    padding: 18px 0;
    margin-bottom: 60px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #c4c4c4
}
.table-price {
    border-bottom: 1px solid #c4c4c4;
    color: #222;
    display: inline-block;
    font-size: 98px;
    font-weight: 300;
    line-height: 50px;
    padding: 45px 0;
    position: relative
}
.table-price span {
    color: #111;
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}
.table-price span.currency {
    font-size: 48px;
    font-weight: 400;
    left: -30px;
    position: absolute;
    top: 27px
}
.list-support {
    padding: 45px 0
}
.pricing-table .list {
    padding: 10px 0
}
.pricing-box .list-support>li {
    font-size: 15px;
    padding: 15px 0;
    font-weight: 300
}
.pricing-table-footer {
    border-top: 1px solid #e1e1e1;
    padding: 20px 20px
}
.pricing-table-footer .btn.btn-default {
    padding: 15px 45px 14px;
    color: #fff
}
.pricing-box.highlight .list-support li {
    line-height: 38px
}
.pricing-box.highlight {
    background: #fff;
    position: relative;
    top: -32px;
    z-index: 1
}
.counter span {
    font-size: 75px;
    font-weight: 500
}
.counter h6 {
    font-size: 15px;
    font-weight: 400;
    margin-top: -10px
}
#funfacts h2 {
    margin-top: 30px
}
.broker_box>img {
    width: 100%
}
.toggle {
    margin-bottom: 12px
}
.toggle .toggle-heading a {
    background: #fff;
    border-radius: 30px;
    font-size: 20px;
    color: #111;
    box-shadow: 0 1px 2px 0 rgba(199, 201, 205, .6);
    color: #121212;
    display: block;
    padding: 11px 0 0 66px;
    position: relative;
    height: 54px;
    width: 100%
}
.toggle .toggle-heading a i {
    border: medium none;
    border-radius: 100%;
    font-size: 14px;
    height: 29px;
    left: 17px;
    line-height: 31px;
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    text-align: center;
    top: 24%;
    width: 29px
}
.toggle .toggle-body {
    padding: 20px 0 4px
}
.toggle.two .toggle-heading a {
    background: #f3f5fa;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}
.toggle .toggle-heading a i {
    border: none;
    color: #fff
}
.toggle-body>p {
    font-size: 18px;
    padding-left: 30px;
    border-left: 1px solid #cfd5d9;
    margin-left: 30px;
    margin-top: -20px;
    padding-top: 20px;
    margin-bottom: -20px;
    padding-bottom: 20px
}
.sonny_progressbar {
    margin-bottom: 40px
}
.sonny_progressbar p.title {
    font-size: 15px;
    line-height: 18px;
    margin: 0;
    padding: 5px 0;
    font-weight: bolder
}
.sonny_progressbar .bar-container {
    position: relative;
    height: 40px
}
.sonny_progressbar .bar-container.shadow {
    -moz-box-shadow: 0 5px 7px -3px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 5px 7px -3px rgba(0, 0, 0, .5);
    box-shadow: 0 5px 7px -3px rgba(0, 0, 0, .5)
}
.sonny_progressbar .backgroundBar {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0
}
.sonny_progressbar .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%
}
.sonny_progressbar .targetBar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -webkit-animation: AnimationB 4s infinite ease-in-out;
    -moz-animation: AnimationB 4s infinite ease-in-out;
    animation: AnimationB 4s infinite ease-in-out
}
.sonny_progressbar .targetBar.loader {
    -webkit-animation: AnimationB 4s infinite ease-in-out;
    -moz-animation: AnimationB 4s infinite ease-in-out;
    animation: AnimationB 4s infinite ease-in-out
}
.sonny_progressbar .bar-container.border .bar,
.sonny_progressbar .bar-container.border .targetBar,
.sonny_progressbar .bar-container.border .backgroundBar {
    border-bottom: 3px solid rgba(0, 0, 0, .2)
}
.sonny_progressbar .progress-percent {
    font-size: 15px;
    position: absolute;
    right: -15px;
    font-weight: 400
}
.company_box>p {
    font-size: 18px;
    margin-top: 40px
}
@keyframes Animation {
    0% {
        opacity: .4
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .4
    }
}
@-moz-keyframes Animation {
    0% {
        opacity: .4
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .4
    }
}
@-webkit-keyframes Animation {
    0% {
        opacity: .4
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: .4
    }
}
@keyframes AnimationB {
    0% {
        opacity: .01
    }

    50% {
        opacity: .1
    }

    100% {
        opacity: .01
    }
}
@-moz-keyframes AnimationB {
    0% {
        opacity: .01
    }

    50% {
        opacity: .1
    }

    100% {
        opacity: .01
    }
}
@-webkit-keyframes AnimationB {
    0% {
        opacity: .01
    }

    50% {
        opacity: .1
    }

    100% {
        opacity: .01
    }
}
.progress-percent {
    position: absolute;
    right: 0;
    margin-top: -22px;
    margin-right: 20px
}
.cell_image {
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: 0
}
.call_box {
    position: relative
}
.call_box>p {
    font-size: 18px;
    position: relative;
    z-index: 1
}
.callback_bg .col-md-6 {
    padding: 0 10px!important
}
#call_back .col-md-6 {
    padding: 10px
}
.call_box form input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"] {
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    height: 48px;
    margin-bottom: 15px;
    font-size: 13px;
    padding-left: 10px;
    transition: all 0.3s ease 0s;
    width: 100%
}
.callback_bg .btn-light {
    margin-left: -15px!important
}
#call_back .btn-light {
    border: medium none;
    height: 46px;
    line-height: 17px;
    margin-left: -10px;
    width: 133px;
    margin-top: 10px
}
.call_box>form {
    margin-top: -35px;
    margin-left: -11px
}
.call_box .zelected {
    background: #fff;
    height: 56px;
    line-height: 56px;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    padding: 0 11px;
    width: 100%;
    color: #8f8f8f;
    font-size: 15px
}
#call_back .zelected::after {
    content: url(../images/select-icon.png);
    position: absolute;
    right: 6%;
    bottom: 26.5%
}
.intro .zelect {
    cursor: pointer
}
.call_box .zearch {
    display: none
}
.call_box .intro .dropdown li {
    padding: 14px 12px
}
.call_box .intro .dropdown li:hover {
    color: #f71735;
    color: #fff
}
.intro .dropdown li.current {
    background-color: #1888f1;
    color: #fff
}
.call_box .intro .dropdown {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-image: none;
    padding: 3px 0;
    z-index: 2;
    width: 100%;
    box-shadow: 0 0 1px 0 #616161;
    margin-top: -4px
}
.logistic .recent_project-slider.owl-carousel.owl-theme {
    margin-top: -85px
}
.logistic.p_24 {
    font-weight: 300
}
.logistic .about_box {
    padding: 42px 0
}
.logistic .testimonial-detail>p::before {
    bottom: -39px;
    content: url(../images/logistic/arrow.png);
    left: -66px;
    position: relative
}
.logistic .testimonial-detail>p {
    border: 1px solid #d1d1d1;
    padding: 40px 0 40px 100px;
    border-radius: 5px
}
.logistic .testimonial-detail>p::after {
    bottom: -77px;
    content: url(../images/logistic/testinomial.png);
    right: 83%
}
.logistic .testimonial-detail {
    margin-bottom: 40px
}
h3.testi_head {
    display: inline-block;
    margin-left: 15px
}
p.testi_head {
    display: block;
    margin-left: 91px;
    margin-top: -32px
}
.logistic .owl-theme .owl-controls {
    text-align: right!important
}
.logistic .heading_border {
    left: 0!important
}
.logistic .pro-video img {
    width: auto
}
.p_setting {
    font-size: 24px;
    font-weight: 300;
    margin-top: 50px
}
.logistic .pro-video a.html5lightbox.content-vbtn-color-blue {
    top: 41%
}
.freight_text>p {
    padding: 0 40px;
    display: inline-block
}
.freight_image>img {
    border-radius: 5px
}
.logistic_count p {
    color: #fff
}
.logistic_count .counter span {
    color: #fff
}
.logistic_count .counter h6 {
    color: #fff
}
#bg_text .counter span {
    color: #fff
}
#bg_text .counter h6 {
    color: #fff
}
#freight_packging .owl-pagination {
    bottom: -60px
}
#freight_packging .owl-page span {
    background: #111
}
.set .zelected::after {
    bottom: -14px!important;
    right: 2%!important
}
.callback_bg .intro .dropdown {
    width: 94.4%!important
}
.bg_3 {
    padding: 200px 0!important
}
/*
.breadcrumb {
    background-color: #1b75bc;
    border-radius: 0;
    display: inline-block;
    list-style: outside none none;
    margin-bottom: 0;
    padding: 15px 20px
}
.breadcrumb a {
    color: #fff;
    font-size: 13px
}
.breadcrumb>.active {
    color: #fff
}
.breadcrumb li + li:before {
    content: "ï„…";
    font-family: FontAwesome;
    color: #fff
} */
.border_b .page-header {
    border: medium none
}
#logistic_bg_text_3 {
    background: url(../images/logistic/happycustomar.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 135px;
    padding-bottom: 175px
}
#logistic_bg_text_3 h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px
}
#logistic_bg_text_3 .counter span {
    color: #fff
}
#logistic_bg_text_3 .counter h6 {
    color: #fff
}
#bg_text {
    background: url(../images/logistic/happycustomar.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 150px;
    padding-bottom: 150px
}
#bg_text h2 {
    color: #fff;
    font-size: 42px
}
#bg_text h2>span {
    font-size: 60px
}
#bg_text .bg_text_box {
    display: inline-block;
    margin-right: 75px
}
#bg_text .bg_text_box>h3 {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 20px 0
}
#bg_text .bg_text_box>p {
    color: #fff;
    display: inline-block;
    line-height: 27px
}
#bg_text .bg_text_box>i {
    color: #fff;
    display: inline-block;
    font-size: 35px
}
.callback_bg {
    background: url(../images/finance/callbackbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed
}
.callback_bg .call_box {
    height: auto;
    padding: 0;
    position: relative
}
.chart-widget {
    margin-bottom: 50px
}
.finance_tab .nav-tabs>li.active>a,
.finance_tab .nav-tabs>li.active>a:focus,
.finance_tab .nav-tabs>li.active>a:hover {
    color: #f71735;
    background-color: #fff;
    border-bottom: none
}
.finance_tab .nav-tabs>li>a {
    background-color: #f6f6f6;
    border: 1px solid #d9d9d9;
    font-size: 18px;
    font-weight: 500;
    margin-right: 2px;
    padding: 13px 25px
}
.finance_tab .tab-content p {
    padding-left: 25px;
    padding-top: 30px
}
.finance_tab .tab-content {
    border-radius: 0 0 5px 5px;
    border: 1px solid #d9d9d9;
    border-top: none;
    padding-bottom: 30px;
    padding-right: 25px
}
a:focus {
    outline: none!important
}
.bg_gray.p-b-100.finance_3 {
    padding-top: 165px
}
.tab_finance .items {
    padding-top: 0!important
}
.tab_finance .items>li>a {
    background: #fff!important
}
#finance_partner .media-left.media-middle {
    padding-right: 30px
}
#finance_partner .media-body a {
    color: #111
}
#finance_partner .media-body a:hover {
    color: #f71735
}
#finance_partner .media {
    border-bottom: none
}
#finance_partner .media h4 {
    font-weight: 400
}
#finance_partner .media-left.media-middle img {
    border: 1px solid #d9d9d9
}
#positions .items>li>a {
    display: table;
    table-layout: fixed;
    width: 100%;
    background: #fff;
    border: 1px solid #d9d9d9!important;
    padding: 6px 20px;
    position: relative;
    text-decoration: none;
    border-radius: 0
}
#positions .items>li>a>span {
    display: table-cell;
    font-size: 12px;
    line-height: 38px;
    font-size: 15px;
    color: #323232;
    font-family: 'Poppins-Medium'
}
#positions .positions_tab_h {
    display: table;
    table-layout: fixed;
    width: 100%;
    background: #1888f1;
    border: 1px solid #d9d9d9!important;
    padding: 6px 20px;
    position: relative;
    text-decoration: none;
    border-radius: 0
}
#positions .positions_tab_h>span {
    display: table-cell;
    font-size: 12px;
    line-height: 38px;
    font-size: 15px;
    color: #fff
}
#positions .items>li>a:hover,
#positions .items>li>a.expanded {
    border: 1px solid transparent;
    background: #fff!important;
    border-radius: 0;
    box-shadow: none;
    outline: medium none;
    text-decoration: none!important
}
#positions .items>li>a.expanded::after,
#positions.procedure_content .items>li>a.expanded::after,
#positions .tab_drawer_heading.d_active::after {
    content: url(../images/finance/minas.png)
}
#positions .items>li>a::after,
#positions .items>li>a::after,
#positions .tab_drawer_heading::after {
    content: url(../images/finance/pluse.png);
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0
}
#positions .project_details_text {
    display: inline-block
}
#positions .items .sub-items p {
    padding: 8px 0
}
.fin_set {
    margin-left: 15%;
    position: relative;
    top: -40px
}
#positions .items .sub-items {
    padding: 20px 16px 40px 16px;
    border-radius: 0
}
#positions .items {
    padding-top: 10px
}
.recent_tabs.finance_nav {
    background: #0e1032;
    height: 65px;
    line-height: 65px;
    text-align: center
}
.finance_nav ul li {
    display: inline-block
}
.finance_nav ul li a {
    color: #fff;
    margin: 0 10px;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}
.finance_nav ul>li:before {
    color: #fff;
    content: "/"
}
.finance_nav ul>li:first-child:before {
    content: none
}
.finance_nav ul li a:hover {
    border-bottom: 2px solid #fff;
    transition: color 1000ms ease 0s, background-color 1500ms ease 0s
}
.finance_bg_text {
    background: url(../images/help_icon_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 135px;
    padding-bottom: 175px;
    position: relative
}
.finance_bg_text h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px
}
.finance_bg_text .counter span {
    color: #fff
}
.finance_bg_text .counter h6 {
    color: #fff
}
#finance_bg_text_2 {
    background-image: url(../images/finance/test_image_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
    position: inherit;
}
#finance_bg_text_2 h2 {
    color: #fff;
    font-size: 43px
}
#finance_bg_text_2 h2>span {
    font-size: 50px
}
#finance_bg_text_2 .bg_text_box {
    display: inline-block;
    margin-right: 75px
}
#finance_bg_text_2 .bg_text_box>h3 {
    color: #fff;
    display: inline-block;
    font-size: 20px;
    padding: 20px 0
}
#finance_bg_text_2 .bg_text_box>p {
    color: #fff;
    display: inline-block;
    line-height: 27px
}
#finance_bg_text_2 .bg_text_box>i {
    color: #fff;
    display: inline-block;
    font-size: 35px
}
@media (max-width:1200px) {
    .officeaddress .addressbox .get-tuch:nth-child(2) {
        display: none!important
    }

    .callback_bg {
        background-position: center center!important;
        margin-top: 0
    }

    .social-icons_1 li {
        margin-right: 0
    }

    .footer_link_1 {
        display: block;
        margin-top: 15px
    }

    .footer_link_1.pull-right {
        float: none!important
    }

    .searc_button {
        left: 78%
    }
}
@media (max-width:1081px) {
    .searc_button {
        left: 88%
    }

    #header-top_3 .cool-link_3 {
        display: block
    }

    #header-top_3 .cool-link_3::after {
        top: -64px
    }

    #header-top_3 .wrap-sticky .bootsnav ul.nav>li {
        padding: 0!important
    }

    #header-top_3 .wrap-sticky .bootsnav ul.nav li a {
        padding: 20px 12px!important
    }

    h3 {
        font-size: 16px
    }

    .recent_project-slider .owl-prev {
        bottom: -75px
    }

    .recent_project-slider .owl-next {
        bottom: -75px
    }

    #recent_project .col-md-10.m-t-55,
    #recent_project .col-md-10.m-t-5 {
        display: none
    }

    .testimonial-detail>p::before {
        display: none
    }

    .testimonial-detail>p::after {
        display: none
    }

    #testimonial-slider_2 .item>img {
        display: inline-block;
        width: auto
    }

    .latest_news_content .latest_news_meta span img {
        width: auto!important
    }

    .image_text {
        height: 100%
    }

    .footer_box_1 {
        margin-bottom: 20px
    }

    .our_company_border {
        display: none
    }

    .error>img {
        width: 100%
    }

    .border_left {
        padding: 0 15px
    }

    .our_team .item .col-md-7 {
        padding: 0 15px
    }

    .rece_text {
        margin-top: 10px
    }

    .logistic .pro-video img {
        width: 100%
    }

    .finance_image>img {
        width: 100%
    }

    .recent_tabs.finance_nav {
        height: 100%48
    }

    .latest_box {
        height: 100%;
        width: 100%
    }

    .updates {
        height: 277px
    }

    .latest_box i,
    .latest_box_1 i {
        display: none
    }

    .latest_box span:last-child,
    .latest_box_1 span:last-child {
        display: none
    }

    .rec-4 {
        display: none!important
    }

    #team_slider_2 .item {
        overflow: hidden
    }

    .tp-loop-wrap h1 {
        font-size: 48px!important;
        line-height: 48px!important
    }
}
@media (max-width:1024px) {
    #recent_project .col-md-7 {
        width: 100%
    }

    #recent_project .col-md-5 {
        width: 100%
    }

    #header-top_3 .navbar-brand .logo-display {
        display: none
    }

    #header-top_3 .cool-link_3::after {
        top: -60px
    }

    .our_team .about_box {
        padding: 32px 25px!important
    }

    #news-section .add-on {
        padding-right: 0
    }

    #our-partner-slider .owl-prev {
        display: none!important
    }
}
@media (max-width:992px) {
    #testimonial-slider {
        margin-bottom: 70px
    }

    .updates {
        height: 100%
    }

    #rev_slider_35_1 .tp-leftarrow {
        margin: -20px -25px;
        transform: matrix(1, 0, 0, 1, -82, -40)!important
    }

    #rev_slider_35_1 .tp-rightarrow {
        margin: -20px -25px;
        transform: matrix(1, 0, 0, 1, -30, -40)!important
    }

    #rev_slider_3_forcefullwidth .tp-leftarrow {
        margin: -20px -25px;
        transform: matrix(1, 0, 0, 1, 37, 65)!important
    }

    #rev_slider_3_forcefullwidth .tp-rightarrow {
        margin: -20px -25px;
        transform: matrix(1, 0, 0, 1, -30, 65)!important
    }

    #header-top_3 nav.navbar.bootsnav .navbar-toggle {
        float: right;
        margin-right: 0
    }

    #header-top_3 nav.navbar.bootsnav.navbar-fixed {
        padding: 10px 0
    }

    #header-top_3 nav.navbar .navbar-brand img.logo {
        width: auto
    }

    #header-top_3 nav.navbar.bootsnav .navbar-nav {
        margin: 26px 0
    }

    .header_set .col-md-10 {
        text-align: left;
        width: 75%
    }

    .header_set .col-md-2 {
        width: 25%
    }

    #footer_1 .col-md-6 {
        width: 100%;
        text-align: center;
        padding: 30px 0
    }

    #footer_1 .col-md-3 {
        width: 100%;
        text-align: center
    }

    #footer_1 .header-top-links {
        text-align: center
    }

    .social-icons_1 {
        text-align: center
    }

    .social-icons_1 li {
        margin-bottom: 5px
    }

    .footer_botom .col-md-7 {
        text-align: center
    }

    .footer_botom .col-md-5 {
        text-align: center
    }

    .our_team .content-right-md img {
        width: 100%
    }

    .about_box>p:nth-child(4) {
        display: none
    }

    .our_team .about_box {
        padding: 14px 25px!important
    }

    .tp-caption h2 {
        font-size: 37px!important
    }

    .tp-caption h2 span {
        font-size: 37px!important
    }

    .p_24 {
        font-size: 18px!important
    }

    .tp-loop-wrap h1 {
        font-size: 28px!important;
        line-height: 28px!important
    }
}
@media (max-width:770px) {
    .about_box>p:nth-child(4) {
        display: block
    }

    #funfacts .col-md-4 {
        width: 100%;
        text-align: center
    }

    #funfacts .col-md-8 {
        width: 100%;
        text-align: center
    }

    #header-top .col-md-8 {
        margin-top: 10px
    }

    .p-56,
    .p-48 {
        font-size: 18px!important;
        line-height: 18px!important
    }

    .tp-caption span {
        font-size: 18px!important;
        line-height: 18px!important
    }

    .tp-loop-wrap h1 {
        font-size: 18px!important;
        line-height: 18px!important
    }

    #bg_text .bg_text_box {
        display: inline-block;
        margin-right: 15px
    }

    .logistic .recent_project-slider.owl-carousel.owl-theme {
        margin-top: 25px
    }

    .copmany_image {
        margin-bottom: 50px
    }

    #call_back .zelected::after {
        right: 8%
    }

    .logistic .testimonial-detail>p {
        padding: 10px
    }

    #testimonial-slider .item {
        padding-bottom: 15px
    }

    .recent_project_3_slider .owl-buttons {
        display: none
    }

    .rece_text_2 {
        margin-top: 15px
    }

    .navbar-header .res-5 {
        top: -4px!important
    }

    .btn-light {
        padding: 16px 34px
    }

    #header-bottom {
        border-bottom: 1px solid #e7e7e7
    }

    #recent_project .navbar-toggle {
        color: #fff;
        top: -45px;
        font-size: 22px
    }

    #call_back .zelected::after {
        bottom: 31.5%
    }

    .freight_text {
        margin-bottom: 50px
    }

    .recent_project-slider .owl-prev,
    .recent_project-slider .owl-next {
        display: none
    }

    nav.navbar .navbar-brand img.logo {
        width: 100%;
        float: left!important
    }

    #header-top_3 .wrap-sticky .navbar-brand {
        padding: 3px 15px;
        margin: 10px 0!important
    }

    nav.navbar.bootsnav .navbar-toggle {
        float: right;
        margin-right: 8px;
        margin-top: 6px
    }

    /* .bg-white {
        height: 100%
    } */

    .tab-content {
        text-align: center
    }

    .collapse.navbar-collapse {
        height: 100%!important
    }

    .attr-nav {
        margin: 0
    }

    .attr-nav .search {
        margin-right: 32px
    }

    #search input[type="search"] {
        left: 0;
        width: 100%
    }

    .searc_button {
        right: 0
    }

    .owl-carousel .owl-item img {
        transform-style: preserve-3d;
        width: 100%
    }

    .owl-carousel .owl-item img {
        display: inline-block;
        width: 100%
    }

    .header_set {
        display: none
    }

    .shop_social_icons {
        margin-left: 47%
    }

    #our_team_slider .owl-controls {
        left: 45%
    }

    .over_image>img {
        display: none
    }

    .latest_box {
        height: 100%;
        width: auto;
        margin-bottom: 30px
    }

    #footer_1 .social-icons.text-right {
        text-align: center;
        margin-top: 30px
    }

    .footer_logo {
        margin-bottom: 30px
    }

    #footer_1 p {
        color: #fff
    }

    .broker_box {
        margin-top: 50px
    }

    #s_services .owl-controls.clickable {
        right: 0;
        top: -111px
    }

    #s_services .services {
        margin-bottom: 30px
    }

    .updates {
        height: 100%
    }

    #testimonial-slider {
        margin-bottom: 80px
    }

    #team {
        top: 46px
    }

    #finance_bg_text_2,
    .finance_bg_text,
    #recent_project,
    #bg_text,
    #logistic_bg_text_3,
    #background_para {
        background-position: center center!important
    }

    .heading_border_1 {
        left: 44%;
        top: 0;
        transform: translate(46%, -39%)
    }

    #testimonial-slider_2 .owl-pagination {
        bottom: -7px;
        left: -55px
    }

    .footer_botom .col-md-6.text-right>p {
        position: relative;
        top: -12px
    }

    .footer_botom .col-md-6>p {
        position: relative;
        top: 16px
    }

    #header-top_3 .cool-link_3::after {
        top: 0
    }

    .officeaddress .addressbox .get-tuch:last-child {
        display: none!important
    }

    #header-bottom .col-md-9 {
        display: inline-block;
        width: auto;
        float: right
    }

    #header-bottom .col-md-3 {
        display: inline-block;
        width: auto;
        float: left
    }
}
@media (max-width:760px) {
    #header-top .col-md-8 {
        margin-top: -35px
    }

    #footer .col-xs-12 {
        width: 50%
    }
}
@media (max-width:740px) {
    #header-top .col-md-8 {
        margin-top: -46px;
        padding-bottom: 0
    }

    .home2-header .col-md-8 {
        margin-top: -26px!important;
        padding-bottom: 10px
    }
     .resptpl{
        display: none;
    }

    #s_services .owl-controls.clickable {
        display: none
    }

    #header-top .cont_office {
        display: none
    }

    .p-0 {
        padding: 10px 0
    }

    .bg-white {
        text-align: left;
        border-bottom: 1px solid #e0e0e0
    }

    #latest_news .col-md-4 {
        padding-left: 15px
    }

    .footer_botom p {
        text-align: center
    }

    .call_box {
        height: 100%
    }

    #finance_partner .media-body,
    #finance_partner .media-left,
    .media-right {
        display: block
    }

    #finance_partner .media-left.media-middle img {
        margin-bottom: 15px
    }

    .m-b-110 {
        margin-bottom: 0
    }

    .counter span {
        font-size: 45px
    }

    .attr-nav ul li a.dropdown-toggle {
        display: none
    }

    .attr-nav {
        right: 0
    }

    #latest_news .col-md-8 {
        margin-bottom: 50px
    }

    #latest_news .owl-controls {
        left: 39%;
        position: absolute;
        bottom: -11px
    }

    #contact-us .contact-text {
        width: 100%;
        margin-bottom: 20px;
        position: unset
    }

    .footer_botom .col-md-6>p {
        position: relative!important;
        top: 12px!important
    }
     .resptpl{
        display: none;
    }
}
@media (max-width:669px) {
    .popup_text {
        width: 100%
    }

    .popup_image {
        display: none
    }

    #header-bottom .get-tuch {
        margin-left: 0
    }

    .banner_3_box p {
        line-height: 18px!important
    }

    .tp-caption h2 {
        font-size: 20px!important
    }

    .tp-caption h2 span {
        font-size: 20px!important
    }
}
@media (max-width:480px) {
    #footer .col-xs-12 {
        width: 100%
    }

    #header-bottom .col-md-9 {
        display: none
    }

    .tp-caption p {
        display: none
    }

    /* .bg-white {
        height: 100%
    } */

    .toggle .toggle-heading a {
        height: 100%
    }

    .collapse.navbar-collapse {
        height: 100%!important
    }

    .attr-nav {
        margin: 0
    }

    .attr-nav .search {
        margin-right: 32px
    }

    #search input[type="search"] {
        left: 0;
        width: 100%
    }

    .searc_button {
        right: 0
    }

    .services h3 span {
        transition: all 0.7s ease 0s;
        margin-right: 4px
    }

    h3 {
        font-size: 17px
    }

    .feature_box {
        margin-bottom: 30px
    }

    .shop_social_icons {
        margin-left: 0
    }

    #our-partner-slider .owl-next {
        display: none!important
    }

    .horizental_tab li {
        float: none
    }
}
@media (max-width:370px) {
    #header-top .header-top-links {
        display: none
    }

    #our-partner-slider .owl-next {
        display: none
    }

}
.banner_up_content {
    position: absolute;
    left: 0;
    right: 0;
    top: 15%;
    text-align: center;
    margin: 0 auto
}
.banner_up_content h1,
.banner_up_content p {
    color: #fff
}
.pn {
    padding: 0
}
.top_icon_size li {
    height: 30px
}
.list_style_li_before ul li::before {
    content: " ";
    height: 8px;
    width: 8px;
    background: #1888f1;
    position: absolute;
    left: 0;
    margin-top: 9px
}
#solution .project_details_text li .small_li_p_content {
    font-size: 14px;
    padding: 0 0 0 22px
}
.all_solution_contet_heading h3 {
    margin-bottom: 10px;
    text-transform: capitalize
}
.quick_touch_btn {
    background: #1888f1;
    border: none;
    color: #fff;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    margin-left: 15px
}
.quick_touch_btn:hover,
.quick_touch_btn:focus {
    color: #fff;
    border: none;
    outline: none
}
.ul_list_font_size li {
    font-size: 15px!important;
    line-height: 25px;
    margin-bottom: 10px
}
.contact_us_middle_office_address {
    color: #fff!important
}
.footer_address_icon_top {
    position: relative;
    top: 10px
}
.career_bg_color {
    background-color: #fff;
    padding: 50px 0 50px 0
}
.career_qulification_name {
    color: #5a5a5a;
    padding: 0 0 0 15px
}
.dark_heading_text {
    font-size: 15px
}
.career_li_list_style ul li::before {
    margin-top: 6px
}
.pn {
    padding: 0
}
.blog_content_in_personl_page h4 {
    font-size: 17px;
    line-height: 25px
}
.social_blog_page_change_color li {
    background: #5a5a5a
}
.about_hr .media {
    border-bottom: none
}
.about_hr .blog_hr_img img {
    height: 80px;
    width: 80px;
    border: 1px solid #000;
    padding: 5px
}
.about_hr .blog_hr_img {
    padding: 0 25px 0 0
}
.about_hr {
    padding: 15px 20px 10px 20px;
    text-align: justify
}
.about_hr_bg {
    background-color: #edf3f8;
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 3px solid #1888f1
}
.about_hr .hr_name {
    line-height: 15px;
    text-transform: capitalize
}
.blog_comment_form {
    background: #edf3f8;
    padding: 60px 40px 45px 50px;
    margin-bottom: 50px
}
.blog_bg_color {
    background: #fff!important;
}
.bg_serives_inner_page {
    background-color: #fff;
}
.about_us_company_overview .welcome_text {
    line-height: 26px;
    font-size: 14px;
    text-align: justify;
    background: #edf3f8;
    padding: 25px 15px 25px 15px;
    margin-top: 15px;
    color: #777;
    font-family: 'Poppins-Medium'
}
.company_ceo p:nth-child(1) {
    font-size: 16px;
    margin: 0
}
.company_ceo p:nth-child(2) {
    font-size: 14px;
    padding-top: 15px;
    margin: 0
}
.circle_icon {
    border: 4px double #acacac;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    padding-top: 12px;
    text-align: center
}
.overlay_container {
    position: relative
}
.overlay_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0
}
.feature_3 .feature_box:hover .overlay_overlay {
    opacity: 1
}
.text_overlay {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%
}
.feature_3 .feature_box:hover .circle_icon {
    background-color: #1888f1;
    transition: all 0.7s ease 0s;
    border: 4px double #fff
}
.faq_ul_li li a {
    transition: color 500ms ease 0s, background-color 500ms ease 0s
}
.md-modal {
    position: fixed;
    top: 12%;
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 50%;
    max-width: 630px;
    min-width: 320px;
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -moz-backface-visibility: hidden
}
.md-show {
    visibility: visible
}
.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, .45);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s
}
.md-show~.md-overlay {
    opacity: 1;
    visibility: visible
}
.md-content {
    color: #fff;
    background: #edf3f8;
    position: relative;
    border-radius: 3px;
    margin: 0 auto
}
.md-content h3 {
    margin: 0;
    text-align: center;
    opacity: .8;
    border-radius: 3px 3px 0 0
}
.md-effect-1 .md-content {
    -webkit-transform: scale(.7);
    -moz-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s
}
.md-show.md-effect-1 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}
.apply_form_group {
    margin-top: 15px
}
.apply_modal_heading {
    padding: 3px 0 3px 0;
    font-size: 22px;
    background-color: #1888f1;
    color: #fff;
    font-weight: 400
}
.apply_form_group {
    color: #000
}
.apply_form_group .form-group label {
    font-weight: 400;
    padding-top: 7px
}
.apply_form_group .form-group .form-control {
    color: #000
}
.apply_form {
    background-color: #edf3f8;
    padding: 20px 20px 20px 20px
}
.apply_form_group_btn {
    margin-top: 30px
}
.apply_close_btn {
    cursor: pointer;
    margin-right: 12px
}
.contact_us_form_bg_color {
    background: #fff;
    padding: 25px 20px 25px 20px
}
.home_read_more_btn {
    text-transform: capitalize;
    padding: 4px 10px
}
@media (min-width:1200px) {
    #our-partner-slider .owl-next {
        display: block!important
    }
}
.color_white_testimonial {
    color: #fff
}
.color_white_testimonial p {
    color: #fff;
    font-style: italic;
    font-family: 'Poppins-Regular';
    font-style: 15px
}
.client_name_color h3 {
    color: #1888f1
}
.horizental_tab>li.active>a,
.horizental_tab>li.active>a:focus,
.horizental_tab>li.active>a:hover {
    border-bottom: 3px solid #1888f1
}
.horizental_tab {
    border-bottom: none
}
.horizental_tab li {
    margin: 10px 0 0 4px
}
.collapse_service_content a:hover,
.collapse_service_content a:focus {
    color: #000
}
.collapse_service_content i {
    background: #1888f1;
    padding: 13px 8px 13px 14px;
    color: #fff;
    position: relative
}
.collapse_service_content i::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    right: -13px;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 13px solid #1888f1;
    top: 0
}
.collapse_service_content span {
    padding: 20px;
    font-family: 'Poppins-Medium'
}
.collapse_service_content {
    background-color: #fff
}
.service_panel {
    border: none;
    margin-bottom: 15px!important
}
.service_bar_menu a {
    position: relative
}
.service_bar_menu
 a .text_under_icon
{
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    font-size: 14px;
}

.service_bar_menu {
    width: 100%;
    overflow: auto;
    position: relative
}
.service_bar_menu
 a {
    float: left;
    width: 16%;
    text-align: center;
    padding: 10px 0px 45px 0px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 20px;
}


.service_bar_menu .active {
    background-color: #1e75bc!important;
    color: #fff
}
.service_bar_menu .active:after,
.service_bar_menu .active:hover::after {
    content: ' ';
    position: absolute;
    width: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff
}
.service_bar_menu a:hover::after {
    content: ' ';
    position: absolute;
    width: 20px;
    width: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff
}
@media screen and (min-width:320px) {
    .service_bar_menu a .text_under_icon {
        visibility: hidden
    }

    .footer_full_bg::before {
        background: transparent!important
    }

    .footer_full_bg::after {
        display: none
    }

    .working_mail p {
        text-align: center
    }

    .working_mail_btn {
        text-align: center
    }

    .about_box {
        padding: 60px 0 0 0
    }

    .round_circle_box {
        display: none
    }

    .left_face_content h3,
    .left_face_content p {
        text-align: left
    }

    .right_face_content h3,
    .right_face_content p {
        text-align: left
    }

    .paddding_right_50 {
        padding-right: 0
    }

    .paddding_left_50 {
        padding-left: 0
    }

    .padding_left_100 {
        padding-left: 0;
    }

    .text_face_ceneter {
        text-align: left
    }

    .responsive_m-b-40 {
        margin-bottom: 40px
    }
     #slider_one{
        height: 300px;
    }
    #sidebar_two, #sidebar_two1{
        top: 20%;
    }
    .respo_left_3
    {
       left: 0;
    }
    .second_row_respo_left_3
    {
      left: 0;
    }
    .comapny_work_icon .web_deve_in_round
    {
      margin: 0px 0px 80px 0px;
    }

}
@media (min-width:481px) {
    .service_bar_menu a .text_under_icon {
        visibility: hidden
    }

    .footer_full_bg::before {
        background: transparent!important
    }

    .footer_full_bg::after {
        display: none !important;
    }
    .respo_left_3
   {
    left: 0;
   }
   .second_row_respo_left_3
   {
     left: 0;
   }
   .comapny_work_icon .web_deve_in_round
   {
    margin: 0px 0px 80px 0px;
   }
}
@media only screen and (min-width:768px) {
    .service_bar_menu a .text_under_icon {
        visibility: hidden
    }

    .footer_full_bg::before {
        background: transparent!important
    }

    .footer_full_bg::after {
        display: none
    }

    .kb_caption h1 {
        font-size: 26px
    }
     #sidebar_two1, #sidebar_two{
        top: 30%;
    }
    #slider_one{
        height: 400px;
    }

    .comapny_work_icon .reverse_icon
    {
      top: -45px;
    }
    .respo_left_5
    {
      left: 5rem;
    }
   .respo_left_3
    {
     left: 3rem;
    }
   .second_row_respo_left_3
    {
     left:0;
    }
    .comapny_work_icon .web_deve_in_round
    {
    margin: 0px 0px 0px 0px;
    }

}
@media only screen and (min-width:992px) {
    .service_bar_menu a .text_under_icon {
        visibility: visible
    }

    .footer_full_bg::before {
        background: #181818!important;
        height: 135%
    }

    .footer_full_bg::after {
        display: block
    }

    .working_mail p {
        text-align: left
    }

    .working_mail_btn {
        text-align: left
    }

    .about_box {
        padding: 130px 0 0 0
    }

    .kb_caption h1 {
        font-size: 50px
    }

    .round_circle_box {
        display: block;
        width: 330px;
        height: 330px;
        /* margin-top: 95px */
    }

    .left_face_content h3,
    .left_face_content p {
        text-align: right
    }

    .right_face_content h3,
    .right_face_content p {
        text-align: left
    }

    .paddding_right_50 {
        padding-right: 50px!important
    }

    .paddding_left_50 {
        padding-left: 50px!important
    }
    .padding_left_100 {
        padding-left: 100px !important;
    }

    .text_face_ceneter {
        text-align: center
    }

    .responsive_m-b-40 {
        margin-bottom: 0
    }
     #sidebar_two1, #sidebar_two{
        top: 30%;
    }
    #slider_one{
        height: 500px;
    }


    .comapny_work_icon .reverse_icon
    {
      top: 70px;
    }
   .respo_left_5
   {
    left: 0px;
    }
   .respo_left_3
   {
    left: 0px;
    }
   .second_row_respo_left_3
   {
     left:0;
   }
   .comapny_work_icon .web_deve_in_round
   {
    margin: 0px 0px 0px 0px;
   }

}
@media only screen and (min-width:1200px)and (max-width:1600px) {
    .service_bar_menu a .text_under_icon {
        visibility: visible
    }

    .footer_full_bg::before {
        background: #181818!important;
        height: 137%;
    }

    .round_circle_box {
        display: block;
        width: 450px;
        height: 450px;
        /* margin-top: 60px */
    }
    .comapny_work_icon .reverse_icon
    {
     top: 70px;
    }
    .respo_left_5
    {
      left: 0px;
    }
    .respo_left_3
    {
     left: 0px;
    }
    .second_row_respo_left_3
    {
     left:0;
    }
    .comapny_work_icon .web_deve_in_round
    {
      margin: 0px 0px 0px 0px;
    }

}
@media only screen and (min-width:1610px)and (max-width:3000px) {
    .service_bar_menu a .text_under_icon {
        visibility: visible
    }

    .footer_full_bg::before {
        background: #181818!important;
        height: 137%;
    }
    .comapny_work_icon .reverse_icon
    {
     top: 70px;
    }
    .respo_left_5
    {
     left: 0px;
    }
    .respo_left_3
    {
     left: 0px;
    }
    .second_row_respo_left_3
    {
     left:0;
    }
    .comapny_work_icon .web_deve_in_round
    {
      margin: 0px 0px 0px 0px;
    }

}
.image_right_side {
    margin-top: 100px
}
.why_chooose_bg_color {
    background: #f2f2f2
}
.feature_box p {
    padding: 0 15px 0 15px;
    text-align: justify;
    font-family: 'Poppins-Regular';
    color: #777
}
.test_as_img {
    background: #f2f2f2
}
.test_as_img img {
    margin: 0 auto
}
.z_index_1 {
    z-index: 1
}
.get_quote_the {
    font-size: 15px!important
}
.footer_socail_icon .social-icons_1 li {
    line-height: 42px!important;
    border-radius: 50px;
    width: 40px;
    height: 40px
}
.clients_heading_color {
    font-size: 43px
}
.home_page_feature_box .feature_box {
    height: 300px
}
.selected a.animated-button.thar-three:hover {
    color: #fff!important;
    background-color: transparent;
    z-index: 999999
}
.selected a.animated-button.thar-three {
    cursor: pointer;
    display: block;
    position: relative;
    transition: all 0.4s cubic-bezier(.42, 0, .58, 1);

}
.selected a.animated-button.thar-three:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
    z-index: -1
}
.selected a.animated-button.thar-three:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    content: '';
    color: #000!important;
    background: #3c496a;
    transition: all 0.4s cubic-bezier(.42, 0, .58, 1);
}
.autochagetext {
    font-size: 14px;
    line-height: 25px;
    margin: 0;
    padding-top: 4px;
    color: #2188f1
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a>span>i {
    color: 0;
    width: 25px
}
.bg_white p {
    background-color: #fff!important
}
.collapse_look .panel-title>a,
.panel-title>a:active {
    display: block;
    text-transform: capitalize;
    text-decoration: none
}
.collapse_look .panel-heading a:before {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    transition: all 0.5s;
    margin-right: 14px;
    margin-top: 9px
}
.collapse_look .panel-heading.active a:before {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg)
}
.client_office_name {
    padding-top: 10px!important;
    color: #2380de!important;
    font-weight: 700
}
.top_icon_size ul .facebook_color a,
.top_icon_size ul .twitter_color a,
.top_icon_size ul .linkdin_color a{
    color: #323232
}
.top_icon_size ul .facebook_color a:hover,
.top_icon_size ul .twitter_color a:hover,
.top_icon_size ul .linkdin_color a:hover{
    color: #fff!important
}
.top_icon_size ul .linkdin_color a.animated-button.thar-three:before {
    background-color: #1a6599
}
.top_icon_size ul .twitter_color a.animated-button.thar-three:before {
    background-color: #00aced
}
.bg_cover_img {
    background-image: url(../images/bg_image_two.png);
    background-size: contain;
    background-position: center
}
.bg_light_skyblue {
    background-color: #ddeffe
}
.working_mail .media {
    border: none
}
.working_mail p {
    padding-top: 28px;
    color: #fff;
    font-size: 30px;
    font-family: 'Poppins';
    text-transform: capitalize
}
.working_mail_btn .home_read_more_btn {
    padding: 12px 25px;
    font-family: 'Poppins';
    font-size: 18px;
    background-color: #fff;
    color: #0af;
    border-radius: 5px
}
.working_mail_btn {
    margin-top: 7px
}
.el-base {
    position: relative;
    top: 30px;
    left: 50%;
    height: 90px;
    width: 140px;
    margin-top: -40px;
    margin-left: -70px;
    background: #eac353;
    border-radius: 3px
}
.el-inner-space {
    border-radius: 3px;
    border-top: solid 45px transparent;
    border-right: solid 70px #f7f6de;
    border-bottom: solid 45px #f7f6de;
    border-left: solid 70px #f7f6de
}
.el-flap {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    border-top: solid 45px #3292e0;
    border-right: solid 70px transparent;
    border-left: solid 70px transparent;
    animation: el-open 4s infinite
}
@keyframes el-open {
    0% {
        border-top: solid 45px #3292e0;
        transform: rotateX(0deg);
        transform-origin: center top
    }

    40%,
    60% {
        border-top: solid 45px #fad662;
        transform: rotateX(180deg);
        transform-origin: center top
    }

    100% {
        border-top: solid 45px #3292e0;
        transform: rotateX(0deg);
        transform-origin: center top
    }
}
nav.navbar.bootsnav ul.nav>.active>a {
    color: #0af
}
.bg_light_black {
    background-color: #313131
}
.footer_1_contact .media {
    border: none;
    margin-top: 0
}
.footer_1_contact .media .media-body>p {
    margin-bottom: 0;
    font-size: 14px
}
.footer_full_bg::before {
    content: '';
    position: absolute;
    background: #181818;
    top: -50px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1
}
.footer_full_bg::after {
    content: url(../images/footer_logo_img.png);
    position: absolute;
    background-color: #181818;
    left: 0;
    top: 43%;

        padding: 10px 7px 0px 9px;
    left: -8%;
    background-repeat: no-repeat;
    transform: rotate(138deg);
}
.footer_full_bg {
    z-index: 999
}
.top_icon_size ul li:first-child {
    border-left: 1px solid #dddddd8f
}
.top_icon_size ul li {
    border-right: 1px solid #dddddd8f
}
.top_icon_size ul .get_quot_btn {
    width: auto;
    font-size: 12px;
    padding: 0 6px 0 4px
}
.top_icon_size ul .get_quot_btn a {
    padding: 2px 10px 1px 10px;
    display: inline!important;
    background-color: #0af;
    border-radius: 3px
}
.right_side_navbar {
    margin-right: -65px
}
.working_mail_btn .btn-light:hover {
    background-color: #9b9b9b;
    color: #fff
}
.get_quot_btn a.animated-button.thar-three:before {
    border-radius: 3px
}
.service_tabing_icon {
    background-color: #073f88
}
.service_bar_menu a img {
    margin: 0 auto
}
.service_check_content li::before {
    content: "\f00c";
    position: absolute;
    font-family: FontAwesome;
    left: 0
}
.service_check_content li {
    list-style: none;
    margin-left: 30px;
    color: #0af;
    font-family: 'Poppins-Medium';
    padding: 30px 0 0 0
}
.service_check_content li p {
    color: #777;
    font-family: 'Poppins-Medium';
    padding: 10px 0 0 0
}
.service_check_content li span {
    color: #777;
    line-height: 25px
}
.center_blue_line .bg_red {
    margin: 0 auto
}
.center_blue_line .heading p {
    padding: 8px 0 8px 0
}
.service_info_img {
    padding: 40px 0 0 0
}
.change_colro_between_content {
    color: #00aaff!important
}
.left_right_font h3 {
    font-size: 24px;
    font-weight: 600;
}
.left_right_font p {
    padding: 10px 0 0 0;
     font-weight: 500;
    color: #000;
    font-size: 16px;
}
.round_circle_box {
    background: var(--vs-primary);
    border-radius: 50%;
    position: absolute;
    border: 5px solid #fff
}
/* .logo_center {
    visibility: visible;
    animation-name: zoomIn;
    width: 350px;
    background: red;
    border-radius: 50%;
    height: 350px;
} */
.logo_center img {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%) !important;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: contain;
}

.top_left img {
    position: absolute;
    left: 40px;
    top: 15px;
    height: 80px;
    width: 80px;
    background: #47c660;
    border-radius: 50px;
    border: 6px solid #fff;
    padding: 6px
}
.top_right img {
    position: absolute;
    right: 40px;
    top: 15px;
    height: 80px;
    width: 80px;
    background: #ec7050;
    border-radius: 50px;
    border: 6px solid #fff;
    padding: 6px
}
.bottom_left img {
    position: absolute;
    left: -26px;
    height: 80px;
    width: 80px;
    background: #f9af40;
    border-radius: 50px;
    border: 6px solid #fff;
    padding: 6px;
    bottom: 95px
}
.bottom_right img {
    position: absolute;
    right: -26px;
    height: 80px;
    width: 80px;
    background: #6d6e72;
    border-radius: 50px;
    border: 6px solid #fff;
    padding: 6px;
    bottom: 95px
}
.center_under_logo img {
    position: absolute;
    height: 80px;
    width: 80px;
    background: #36a29e;
    border-radius: 50px;
    border: 6px solid #fff;
    padding: 6px;
    bottom: -33px;
    left: 0;
    right: 0;
    margin: 0 auto
}
#page_banner .page-header p a,
#page_banner .page-header p a:hover {
    color: #fff
}

.seo_serive_p p
{
   height: 100% !important;
   max-height: 100% !important;
}


/*   css for seo pages */


.seo_p_div
{
    margin-top: 25px;
    margin-bottom: 25px;
}

.contet_for_seo
{
    text-align: justify;
    font-family: 'Poppins-Regular';
    padding: 0px 0px 30px 0px;
}

.seo_p_heading
{
    font-family: 'Poppins';
    text-transform: capitalize;
    color: #323232;
}

.p_heading_for_seo_pages
{
    padding: 0px 0px 0px 30px;
    font-size: 15px;
    font-family: 'Poppins-SemiBold';
}

.p-l-30
{
    padding-left: 30px;
}

.p_heading_for_seo_pages_2
{
   padding: 0;
   font-size: 15px;
    font-family: 'Poppins-SemiBold';
}


.seo_home_page_feature_box
{
    height: 100% !important;
     min-height: 450px !important;
}

.seo_single_web {

    margin-top: 18%;
    text-align: center;
    padding: 20px 11px;
    height: 315px;
}

 .seo_page_single .icon {
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 40px;
    background: #fff;
    transition: all 0.3s ease-out;
    transition: all 0.3s ease-in;
     margin: 0px auto;

}



.seo_page_single .service-content {
    margin-top: 10px;
    position: relative;
    height: 230px;

}


.classic-title span {
    border-bottom-color: #2A7BE3;
}

.classic-title span {
    margin-bottom: 50px;
}

.seo_page_single .service-content p
{
    text-align: justify;
}

.seo_page_single {


    text-align: center;
    padding: 20px 11px;

}

.seo_page_single:hover {
    background: #fff;
    box-shadow: 1px 0 22px #888888a3;
    transition: all 0.7s ease 0s;
}



 .seo_page_single .icon i {
    transform: rotate(45deg);
    color: #2A7BE3;
    transition: all 0.3s ease-out;
    filter: brightness(1) invert(0);
}

.seo_list_remove_blue li
{
     color: #777;
}
.error{
    color: #ff0000;
}
#seo_solution
{
   width: auto;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu > li > a
{
    padding:10px 15px;
    border-bottom:solid 1px #eee;
    color:#323232;
    font-family:'Poppins-Light'
}
#inquiry-form .single-query>input[type="text"]{
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    height: 38px;
    margin-bottom: 15px;
    font-size: 13px;
    padding-left: 10px;
    transition: all 0.3s ease 0s;
    width: 100%;
}
#inquiry-form .single-query textarea{
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 13px;
    height: 80px;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-top: 15px;
    transition: all 0.3s ease 0s;
    width: 100%;
    resize: none;
}
.kb_caption h1 { width: 90%; margin: 0 auto; }

/*  new css by kalpesh  */
.more_we_offer
{
  background-image: url(../images/fresh_bg.png);
  padding: 10rem 0rem 11rem 0rem;
  background-size: cover;
  background-position: center;
}
.more_we_offer h3
{
  color: #fff;
  font-family: 'Poppins-Medium';
  text-align: center;
  margin-bottom: 4rem;
  font-size: 24px;
}
.more_we_offer p
{
  color: #fff;
  width: 75%;
  margin: 0px auto;
  font-size: 16px;
  line-height: 30px;
}
.comapny_work_icon
{
  background-color: #eaa11e;
  padding: 10rem 0rem 16rem 0rem;
}



.comapny_work_icon .web_deve_in_round
{
  height: 110px;
  width: 110px;
  background: #f67722;
  text-align: center;
  border-radius: 100%;
  display: block;
  position: relative;
  border:6px solid #fff;
  -webkit-animation-name: bottom_icons; /* Safari 4.0 - 8.0 */
  animation-name: bottom_icons;
  animation-duration: 1.8s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.comapny_work_icon .web_deve_in_round:hover
{
  animation-play-state:paused;

}
/* Standard syntax */
@keyframes bottom_icons {
  from { transform: translateY(-5px);}
  to  {transform: translateY(5px);}

}

.comapny_work_icon .reverse_icon
{
  animation-name: reverse_animtion;

}
@keyframes reverse_animtion {
  from { transform: translateY(-6px);}
  to  {transform: translateY(6px);}

}

.comapny_work_icon .web_deve_in_round::after
{
  content: '';
  position: absolute;
  height: 35px;
  width: 2px;
  background: #fff;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0px auto;
}
.comapny_work_icon .web_deve_in_round::before
{
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background: #fff;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0px auto;
  border-radius: 100%;
}
.comapny_work_icon .reverse_icon
{
  position: relative;

}
.comapny_work_icon .reverse_icon::after
{
  content: '';
  position: absolute;
  height: 35px;
  width: 2px;
  background: #fff;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0px auto;
}
.comapny_work_icon .reverse_icon::before
{
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  background: #fff;
  top: -35px;
  left: 0;
  right: 0;
  margin: 0px auto;
  border-radius: 100%;
}
.comapny_work_icon .web_deve_in_round img
{
  height: 65px;
  width: auto;
  margin: 0px auto;
  position: relative;
  top: 16px;
}
.web_deve_in_round .tech_name_move
{
  position: absolute;
    bottom: -6rem;
    left: 0;
    right: 0;
    color: #fff;
}
.web_deve_in_round  .reverse_text
{
  position: absolute;
  top: -6rem;
  left: 0;
  right: 0;
  color: #fff;
}
/* .web_deve_circle
{
  width: 13%;
  float:right;
} */

.php_icon
{
  background-color: #f67722;
}
.Magento_icon
{
  background-color: #e5dfda !important;
}
.wordpress_icon
{
  background-color:#3f6a84 !important;
}
.drupal_icon
{
  background-color: #f6752b !important;
}
.mysql_icon
{
  background-color: #f9a502 !important;
}
.xml_icon
{
  background-color: #a9d053 !important;
}
.xtesn_icon
{
  background-color: #34aae3 !important;
}
.xtesn_icon_logo_h_w
{
  width: 160px !important;
  height: 160px !important;
  left: -2rem;
  border: 12px solid #fff !important;
}
.xtesn_icon_logo_h_w img
{
  top: 23px !important;
  height: 90px !important;
}
.dealy_time1
{

  animation-delay: 1s;
  animation-direction:normal;

}
.p-l-10{
    padding-left: 10px;
}
#header-top{
    border-bottom: 1px solid #dddddd8f;
}
.mail_phone{
    top: 5px;
}
.mail_phone span i{
    padding-right: 4px;
}



#BR_product_feature{
    background-image: url(../images/our_product/features_bg.png);
    padding-top: 0;
    background-repeat: no-repeat;
    background-position: center
}
#our_banner {
    background-image: url(../images/our_product_banner_image.png);
    padding-top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

#our_banner .page-header {
    margin: 86px 0 52px;
    border: none
}

#our_banner .page-header h2 {
    color: #fff;
    padding-bottom: 10px;
    font-size: 40px;
    font-family: 'Poppins-Medium';
    text-transform: capitalize
}
#our_banner .page-header h4 {
    color: #fff;
    padding-bottom: 10px;
    font-size: 32px;
    font-family: 'Poppins-Light';
}

#our_banner .page-header p {
    color: #fff;
    text-align: center
}
#our_banner .br_header_hr{
    border-right: 2px solid #ffffff !important;
}
.br-info h6{
    font-size: 18px;
    color: #323232;
    font-family: "Poppins";
}
.company-info h6{
    font-size: 16px;
    color: #323232;
    font-family: "Poppins";
}
.br-info p, .company-info ul li{
    font-size: 14px;
    color: #323232;
    font-family: "Poppins-Medium";
    line-height: 1.8;
}

.company-info ul{
    margin-left: 17%;
}

.company-info ul li::before {
  content: "\2022";
  color: #3687c8;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.company-info .col-md-10{
       padding-left: 20px;
}

#BR_product_feature h4{
    font-size: 19px;
    color: #ffffff;
    font-family: "Poppins-Light";
    height: 100px;
}


#BR_product_feature .feature-info img.feature1{
   background: #02f5d0;
     border-top: 1px solid #02f5d0;
    border-radius: 65px;
    padding: 20px;
}

#BR_product_feature .feature-info img.feature2{
   background: #7fcaeb;
    border: 5px solid #7fcaeb;
    border-radius: 65px;
    padding: 20px;
}

#BR_product_feature .feature-info img.feature3{
   background: #f8f1a1;
  border-top: 5px solid #f8f1a1;
    border-radius: 65px;
    padding: 20px;
}

#BR_product_feature .feature-info img.feature4{
   background: #96beff;
     border-top: 5px solid #96beff;
    border-radius: 65px;
    padding: 20px;
}


#BR_product_feature .feature-img{
    position: absolute;
    text-align: center;
    top: -40%;
    left: 30%;
}

#BR_product_feature .feature-desc1{
    background: #ffffff;
    border-top: 5px solid #02f5d0;
    padding: 20px;
    height: 160px;
}
#BR_product_feature .feature-desc2{
    background: #ffffff;
    border-top: 5px solid #7fcaeb;
    padding: 20px;
    height: 160px;
}
#BR_product_feature .feature-desc3{
    background: #ffffff;
    border-top: 5px solid #f8f1a1;
    padding: 20px;
    height: 160px;
}
#BR_product_feature .feature-desc4{
    background: #ffffff;
    border-top: 5px solid #96beff;
    padding: 20px;
    height: 160px;
}
#BR_product_feature .btn-default{
    color: #23629b;
    background-color: #7fcaeb;
    border-color: #7fcaeb;
    font-weight: 600;
}

body {
  font-family: "Sofia", sans-serif;
}

.p-t-40 {
    padding-top: 100px;
}
.p-t-150 {
    padding-top: 170px;
}
.p-t-180 {
    padding-top: 180px;
}
.p-t-200 {
    padding-top: 200px;
}
.why-choose-banner {
    height: 300px;;
}
.why-choose-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.why-choose-div .col-lg-7 {
    background-color: var(--vs-primary);
    color: var(--vs-white);
    padding-top: 40px;
    padding-bottom: 40px;
    width: 55%;
}
.rect-title .d-flex.align-items-center.gap-20 {
    font-size: 50px;
}

.rect-title .d-flex.align-items-center.gap-20 .y-us-title-border {
    margin-top: 12px;
}

.boxshadow {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.similar-product-items .image-box.gallery-img {
    border-radius: 0;
}

.description.list--hand-bullet li {
    position: relative;
    list-style-type: none;
    position: relative;
    list-style-type: none;
    margin-left: 35px;
    font-family: var(--accent-font);
    font-size: 16px !important;
    /* font-weight: 700; */
    /* color: var(--primary-color); */
    text-transform: capitalize;
    /* padding-left: 30px; */
    margin-bottom: 20px;
}

.description.list--hand-bullet li::after {
    content: '';
    position: absolute;
    background: url('https://www.discoveryworldtrekking.com/_next/static/media/hand.27ba99a6.svg') no-repeat !important;
    width: 23px;
    height: 12px;
    left: -35px;
    top: 10px;
}

#InqueryModal .modal-content {
    /* padding: 10px 40px; */
}
#InqueryModal .modal-header {
    /* background-color: var(--vs-primary); */
    /* color: var(--vs-white); */
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: initial !important;
}

.br-0 {
    border-radius: 0 !important;
}
.no-red {
    color: var(--vs-black);
}

.one-line-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1;
}

.two-line-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
}

.three-line-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
}

.blog-right-side {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
}
.blog-right-side .search-input {
    position: relative;
}
.blog-right-side .search-input input:focus {
    box-shadow: initial;
    border-color: var(--color-primary);
}
.blog-right-side .search-input .search-icon i {
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 24px;
    font-weight: 700;
}
.blog-right-side li {
    /* list-style-type: none; */
    /* margin-left: 22px; */
    margin-top: 8px;;
}
.blog-right-side li a {
    margin-top: 0;
    color: #888;
    font-size: 14px;
    font-weight: 600;
}
.blog-right-side li:hover a {
    color: var(--vs-primary);
}

.recent-post-img {
    width: 80px;
}
.recent-post-img img {
    width: 100%;;
}

.recent-blogs .recent-blog-details-content h6 {
    display: inline-block;
    width: 100%;
    color: #777777;
    margin: 0px;
    font-size: 14px;
    line-height: 20px;
}
.recent-blog-details-content span {
    color: var(--vs-primary);
    letter-spacing: 0px;
    font-size: 11px;
}

.blog-right-side h3{
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.blog-right-side .widget {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.blog-header h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.blog-details-left .date {
    margin-top: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.blog-details-left .postmeta {
    margin: 10px 0;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}
.blog-details-left .postmeta p span {
    color: var(--vs-primary);
}
.blog-details-left .blog-description p, .blog-details-left .blog-description h1  {
    font-size: 16px !important;
    line-height: 25px !important;
}
.btn-close {
    background: initial !important;
    opacity: 1 !important;
}
.btn-close:focus {
    box-shadow: initial !important;
}
.modal-header .btn-close {
    padding: 0 !important;
    margin: 0 !important;
}
.btn-close i {
    box-sizing: content-box;
    color: var(--vs-white) !important;
    background: var(--vs-primary);
    border: 0;
    border-radius: 50%;
    font-size: 22px;
    padding: 6px;
    margin-top: -30px;
}
.btn-close:hover i {
    background-color: #000;
}
.icon-box img {
    max-width: 24px;
}
.title-label {
    font-weight: 600;
    font-size: 18px;
}

.dropdownMenu .filter-product .btn.btn-primary.secondary-btn.form-control.hover-shadow {
    color: var(--vs-white) !important;
}

.pick-drop-item {
    border: 1px solid #ececec;
    overflow: hidden;
    background-color: var(--vs-white);
}
.pickdrop-img {
    height: 250px;
    overflow: hidden;
}
.pickdrop-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all ease-in-out .3s;
}

.pickdrop-img:hover img{
    transform: scale(1.1);
}
.picdrop-content h4 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}
.picdrop-content p {
    margin: 0;
}

.pick-drop-services-title .highlight-div {
    padding: 0;
    margin: 0;
    font-size: 35px;
    font-weight: 700;
    /* text-shadow: 1px 1px 1px #957dad,
             1px 2px 1px #957dad,
             1px 3px 1px #957dad,
             1px 4px 1px #957dad,
             1px 5px 1px #957dad,
             1px 6px 1px #957dad,
             1px 10px 5px rgba(16, 16, 16, 0.5),
             1px 15px 10px rgba(16, 16, 16, 0.4),
             1px 20px 30px rgba(16, 16, 16, 0.3),
             1px 25px 50px rgba(16, 16, 16, 0.2); */

}


/*
.pick-drop-services-title .highlight-div .text-center {
    border-right: 4px solid #000;
    animation: cursor 1s infinite step-end, typing 15s infinite;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes cursor{
    0%, 100%{border-color: transparent;}
    50%{border-color: #000;}
  }


  @keyframes typing{
    0%{ width: 0ch}
    30%{ width: 20ch;}
    80%{ width: 20ch;}
    90%{ width: 20ch;}
    100%{ width: 20ch;}
  } */

.pick-drop-services-title p {
    font-size: 15px;
    margin-bottom: 30px;
    text-align: justify;
}

/* table of content for blogs  */
.toc-wrap {
    padding: 40px 40px 20px;
    /* background: url('https://www.altitudehimalaya.com/public/front/img/shape.svg') 0 0 no-repeat rgba(0, 0, 0, .0392156862745098); */
    background-size: auto;
    background-size: cover;
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .45);
}

#toctoc {
    overflow: hidden;
}

#toctoc .heading {
    color: var(--vs-primary);
}

.the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
    margin-top: 0;
}

.the-content h2 {
    font-size: 35px;
}

.heading-mb {
    display: none;
}

.heading, .main-title .heading {
    position: relative;
    color: #000;
    margin: 0;
    line-height: 56px;
    text-transform: uppercase;
    display: inline-block;
}

#toctoc .heading i {
    display: none;
}


#toctoc>ul {
    overflow: hidden;
    list-style: none;
    -moz-column-count: 2;
    column-count: 2;
    padding: 0;
    margin: 0;
}


#toctoc>ul>li {
    counter-increment: item;
    padding: 14px 0;
    margin-bottom: 0;
    border-bottom: 2px solid rgba(0, 0, 0, .1803921568627451);
    line-height: 26px;
}

#toctoc>ul>li>a {
    font-family: FF Headline Condensed Regular;
    font-size: 25px;
    color: #000;
    opacity: .8;
    position: relative;
}

#toctoc>ul>li>a:before {
    display: table-cell;
    content: "" counters(item, ".");
    font-weight: 700;
    padding-right: 4px;
}

.toc-wrap .show-toggle {
    margin-top: 16px;
    width: auto;
    padding: 9px 20px;
    text-align: center;
    z-index: 1;
    position: relative;
    color: #fff;
    background: var(--vs-primary);
}

.show-toggle {
    color: var(--vs-primary);
    text-transform: uppercase;
    font-family: FF Good Headline Condensed Pro;
    font-size: 19px;
    display: inline-block;
    margin-top: 16px;
}

.toc-wrap {
    position: relative;
}

#toctoc {
    overflow: hidden; /* Hide content exceeding the max-height */
    max-height: 100px; /* Initially hidden state */
    transition: max-height 0.3s ease; /* Smooth transition for height change */
}

.show-toggle {
    display: inline-block;
    padding: 9px 20px;
    text-align: center;
    color: #fff;
    background: var(--vs-primary);
    text-transform: uppercase;
    font-family: 'FF Good Headline Condensed Pro', sans-serif;
    font-size: 19px;
    text-decoration: none;
    margin-top: 16px;
    cursor: pointer;
}

.blog-content-box h1 {
    padding: 20px 0;
}

.pick-drop-img {
    height: 445px;
    border-radius: 10px;
    overflow: hidden;
}
.pick-drop-img img {
    width: 100%;
    height: 100%;
    transition: transform ease-in-out .3s;
}
.pick-drop-img:hover img {
    transform: scale(1.1);
}

.list {
    position: relative;
    display: block;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list li {
    position: relative;
    display: flex;
    align-items: center;
}
.list-icon {
    display: grid;
}

.list-icon span {
    font-size: 11px;
    color: var(--vs-white);
    background-color: #222;
    text-align: center;
    padding: 15px;
    border-radius: 100%;
}

.list-text {
    margin-left: 15px;
}

.list-text p {
    font-size: 14px;
    margin: 0;
    color: var(--vs-black);
}

.list li+li {
    /* margin-top: 10px; */
    border-top: 1px solid #eaeaea;
}


.blog-content-box.uk-overflow-auto h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.pickdrop-service-price {
    background-color: var(--vs-primary);
    padding: 8px 16px;
    display: inline;
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #fff;
    font-weight: 600;
}
.rating-context {
    margin-bottom: 10px;
}
.rating-context i {
    color: var(--vs-primary);
}

.py-20 {
    padding: 0 20px;
}

.rating-context span {
    margin-right: 12px;
    color: var(--vs-black);
}
.car-feature-package {
    padding: 20px;
}

.car-feature-package .feature-specs {
    place-items: initial;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 0;
}
.car-feature-package .feature-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-specs li:last-child {
    margin-bottom: 0;
}

.book-package .btn-primary {
    background: var(--color-primary) !important;
    border: var(--color-primary) !important;
    color: var(--vs-black) !important;
}

.book-package .btn-primary:hover {
    background: var(--vs-primary) !important;
    border: var(--vs-primary) !important;
    color: var(--color-primary) !important;
}

.offer-content-desc h2 {
    margin-top: 38px;
    font-size: 22px;
    text-align: center;
    padding: 8px 0;
}

.new-offer-section {
    margin-top: 80px !important;
}
.new-offer-section .col-lg-3 .d-flex.justify-content-center {
    margin-top: -52px;
}

.new-offer-section .col-lg-3 .border.p-3.bg-white {
    border-radius: 10px;
    height: 236px;
}

.other-offer-bg {
    background-color: var(--vs-light-primary);
    width: 100%;
    height: 40%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.car-types1 .item {
    position: relative;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    margin-bottom: 15px;
    isolation: isolate;
}

.car-types1 .item img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.car-types1 .item .title {
    position: absolute;
    top: 0px;
    padding: 30px;
}


.car-types1 .item .title h4 {
    color: #fff;
    font-size: 26px;
}

.car-types1 .item .curv-butn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 40px 0 0;
    background-color: var(--vs-white);
}

.car-types1 .item .curv-butn .vid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    color: #fff;
}

.car-types1 .item .curv-butn .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: var(--vs-white);
    border: 1px solid var(--vs-primary);
    background: var(--vs-primary);
    border-radius: 100%;
    line-height: 60px;
}
.car-types1 .item .curv-butn .icon i {
    transform: rotate(-45deg);
}

.car-types1 .item:hover img{
    transform: scale(1.05);
}
.car-types1 .item:hover .icon {
    background-color: var(--vs-black);
    border: var(--vs-black);
}
.car-types1 .item .curv-butn .br-left-top {
    position: absolute;
    top: -24px;
    left: -1px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}


.car-types1 .item .curv-butn .br-left-top svg {
    width: 24px;
    height: 24px;
}

.car-types1 .item .curv-butn .br-right-bottom {
    position: absolute;
    bottom: -1px;
    right: -24px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    line-height: 1;
}

.car-types1 .item .curv-butn .br-right-bottom svg {
    width: 24px;
    height: 24px;
}

.myblog_slider .owl-nav.disabled .owl-prev {
    left: 15px;
}
.myblog_slider .owl-nav.disabled .owl-next {
    right: 15px;
}

.line-between {
    border: 1px solid var(--color-primary);
}

.pick-drop-item .form-control.btn.btn-primary.hover-shadow.br-0 {
    padding: 10px;
}

.reviews-google img {
    height: 48px;
    width: 48px;
    box-sizing: border-box;
    vertical-align: middle;
    object-fit: contain;
}
.reviews-google h3 a{
    color: var(--vs-black);
    font-size: 28px;
}

.grw-net-logo-l {
    width: 32px;
    height: 22px;
    margin-left: 0.1rem;
    flex-shrink: 0;
    display: block;
    background-image: url(https://grwapi.net/assets/1.1/img/google-logo-l.svg);
    background-size: auto auto;
    background-position: center center;
    background-repeat: no-repeat;

}
.grw-net-widget a {
    color: var(--vs-black);
}

.grw-net-widget .grw-net-text {
    color: #5F6369;
}

.grw-net-widget-one-type-2 .grw-net-stars {
    margin-left: 0.5rem;
    color: var(--vs-primary);
    font-size: 22px;
}

.grw-net-widget .grw-net-text-bold {
    font-weight: bold;
    font-size: 18px;
}

.googlereviewscroerw {
    color: #817c7c;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 10px;
}
.tripadvisor-custom a {
    font-size: 15px;
    text-decoration: underline !important;
    color: #3b3b3b;
}


.step-wise-section .container .row.row-cols-5 .col {
    position: relative;
}

.step-wise-section .container .row.row-cols-5 .col::after {
    position: absolute;
    top: 0;
    content: "";
    left: 150px;
    background: url('../images/arrow.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.step-wise-section .container .row.row-cols-5 .col:last-child::after {
    display: none;
}
.new-offer-box{
    color: var(--vs-black) !important;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);

}
.new-offer-box:hover {
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
}

.pickdrop-service .item {
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--vs-light-primary);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    position: relative;
}
.pickdrop-service .item .pickdrop-service-title h4{
    color: var(--vs-black);
    padding: 20px;
    font-size: 18px;
    text-align: center;
}

.pickdrop-service .item a .pickdrop-service-img {
    overflow: hidden;

}
.pickdrop-service .item a .pickdrop-service-img img {
    transition: all ease-in-out .3s;
}

.pickdrop-service .item a .pickdrop-service-img:hover img {
    transform: scale(1.05);
}

.pickdrop-service .item .curv-butn {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 0px 0px 40px;
    background-color: var(--vs-white);
}

.pickdrop-service .item .curv-butn .vid {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 100%;
    background: transparent;
    color: #fff;
}

.pickdrop-service .item .curv-butn .br-left-top {
    position: absolute;
    top: 90px;
    left: 66px;
    transform: rotate(90deg);
    line-height: 1;
}

.pickdrop-service .item .curv-butn .br-left-top svg {
    width: 24px;
    height: 24px;
}


.pickdrop-service .item .curv-butn .br-right-bottom {
    position: absolute;
    top: 0px;
    left: -24px;
    transform: rotate(450deg);
    line-height: 1;
}

.pickdrop-service .item .curv-butn .br-right-bottom svg {
    width: 24px;
    height: 24px;
}

.pickdrop-service .item .curv-butn .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    color: var(--vs-white);
    border: 1px solid var(--vs-primary);
    background: var(--vs-primary);
    border-radius: 100%;
    line-height: 60px;
}

.pickdrop-service .item:hover .curv-butn .icon {
    border: 1px solid var(--vs-black);
    background: var(--vs-black);
}

.pickdrop-service-img {
    height: 300px;
    overflow: hidden;
}
.pickdrop-service-img img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

/* testimonial new video design  */
.about-video .video-iframe-wrapper {
    /* height: 350px; */
    padding: 1px;
    z-index: 99;
    position: relative;
    padding: 1px;
    /* border: 1px solid #ffffff; */
    border-radius: 30px;
    overflow: hidden;
}
.about-video .video-items .video-gallery-image:hover a::before {
    opacity: 0;;

}

.about-video .video-items .video-gallery-image:hover .v-play-icon {
    color: var(--vs-white);
}



.about-video .video-items .v-play-icon i {
    font-size: 120px;
    transition: all ease-in-out .3s;
}
.about-video .video-items .v-play-icon:hover i {
    /* transform: scale(1.1); */
    color: var(--vs-primary);
}


.about-video .video-wrapper {
    padding: 4px;
    border: 1px solid var(--vs-primary);
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.about-video .video-wrapper-inner {
    position: relative;
}
.about-video .video-wrapper::before {
    top: 0;
    right: 0;
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #e94646;
    z-index: 1;
}

.about-video .video-wrapper-inner::before {
    bottom: -15px;
    right: -15px;
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #e94646;
    z-index: 1;
}

.about-video .video-wrapper::after {
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #e94646;
    z-index: 1;
}

.about-video .video-wrapper-inner::after {
    bottom: -15px;
    left: -15px;
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: #e94646;
    z-index: 1;
}

.subscriber-review {
    /* padding: 80px 0; */
    background-image: url(../sasto_img/images/about-video-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer-bottom .copyright .col-lg-6.text-start p {
    margin-left: 70px;
}

.footer-bottom .copyright .col-lg-6.text-end p {
    margin-right: 20px;
}



.product-bg {
    position: relative;
}
.how_it_works {
    background: rgb(78, 190, 162);
    background: linear-gradient(180deg, rgba(78, 190, 162, 1) 0%, rgba(33, 105, 116, 1) 100%);
    background: url('./../images/curved.png') no-repeat center, linear-gradient(180deg, rgb(191 191 191 / 28%), rgb(173 10 4 / 75%) 100%);
    padding-top: 60px;
    padding-bottom: 140px;
    background-size: cover;
    padding-left: 91px;
}



.how_it_works h2 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.how_it_works .how_it_works_comp {
    position: relative;
    display: grid;
    place-items: center;
}
.how_it_works .how_it_works_comp:nth-child(1) {
    top: -15px;
}

.how_it_works .how_it_works_comp:nth-child(2) {
    top: -60px;
    left: -20px;
}

.how_it_works .how_it_works_comp:nth-child(3) {
    top: 10px;
    left: -60px;
}

.how_it_works .how_it_works_comp:nth-child(4) {
    top: -50px;
    right: 55px;
}

.how_it_works .how_it_works_comp:nth-child(5) {
    top: 20px;
    right: 75px;
}

.how_it_works .container .row  .how-it-works-img {
    background: var(--vs-white);
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 10px;
}

.how_it_works .container .row img {
    width: auto;
    height: 100%;
    z-index: 1;
}


.video-list.video-list--photos-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 10px;
}

.video-list.video-list--photos-videos .video-item {
    aspect-ratio: 16 / 9;
    height: auto;
    margin-bottom: 0;
}


/******************************************/
/* Other */
.services-list {
    margin: 0 -5px;
    padding: 0;
    list-style: none;
}
.services-list > div {
    padding-left: 5px;
    padding-right: 5px;
}

/* Timeline */

.timeline {
    position: relative;
    display: block;
    margin: 0;
    padding: 10px 0;
}

.timeline, .timeline > li {
    list-style: none;
}

.timeline-line {
    display: inline-block;
    position: absolute;
    top: 38px;
    bottom: 0;
    left: 0%;
    width: 1px;
    height: 82%;
    background-color: #eee;
    transform: translate(-50%, 0);
}

.timeline-poster .btn-link {
    color: #a1aab0;
}

.timeline-item {
    position: relative;
    padding-left:30px;
}

.timeline-item .timeline-badge {
    left: -6px;
}

.timeline-item > .timeline-badge {
    position: absolute;
    top: 22px;
    z-index: 1;
}
.timeline-item > .timeline-badge > a {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--vs-primary);
    border-radius: 24px;
    background-color: var(--vs-primary);
    text-decoration: none;
    transition: all ease .3s;
}
.timeline-item > .timeline-panel {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.timeline-img {
    display: block;
    padding: 5px 0;
}
.timeline-img.first {
    margin-right: -10px;
}
.timeline-img.middle {
    margin-right: -10px;
    margin-left: -10px;
}
.timeline-img.last {
    margin-left: -10px;
}
.timeline-footer,
.timeline-liveliness,
.timeline-resume {
    border-top: 1px solid #eee;
    background-color: #fbfcfc;
}
.timeline-footer {
    border-radius: 0 0 5px 5px;
}
.timeline-avatar {
    margin-top: -2px;
    margin-right: 10px;
}
.timeline-title {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857;
    font-weight: 600;
    color: #3e5771;
    text-decoration: none;
}
.timeline-title > small {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: #a1aab0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.timeline .media {
    border-bottom: 1px solid #eee;
}
.timeline .media,
.timeline .media p {
    font-size: 13px;
}
.timeline .media:last-child {
    border-bottom: 0;
}

/* Responsive Adjustments */
/* @media (max-width: 991px) {
    .timeline {
        padding-left: 15px;
    }
    .timeline-line {
        left: 15px;
    }
    .timeline-group {
        display: inline-block;
        margin-left: 4px;
    }
    .timeline-item {
        width: 100%;
        margin-top: 0 !important;
        padding-right: 10px;
    }
    .timeline-item.block:nth-child(even),
    .timeline-item.block:nth-child(odd) {
        padding-bottom: 0;
    }
    
    .timeline-item.block:nth-child(even):after,
    .timeline-item.block:nth-child(odd):after,
    .timeline-item:nth-child(even):after,
    .timeline-item:nth-child(odd):after {
        left: 20px;
        top: 11px;
        border-top: 11px solid transparent;
        border-bottom: 11px solid transparent;
        border-right: 11px solid #fff;
    }
    
}
@media (max-width: 480px) {
    .timeline {
        padding: 0;
    }
    .timeline-line {
        display: none;
    }
    .timeline-item {
        display: block;
        padding: 0 0 20px !important;
    }
    .timeline-item.block:nth-child(even),
    .timeline-item.block:nth-child(odd),
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        float: none;
        clear: both;
    }
    .timeline-item.block:nth-child(even):after,
    .timeline-item.block:nth-child(even):before,
    .timeline-item.block:nth-child(odd):after,
    .timeline-item.block:nth-child(odd):before,
    .timeline-item.timeline-poster > .timeline-badge,
    .timeline-item:nth-child(even):after,
    .timeline-item:nth-child(even):before,
    .timeline-item:nth-child(odd):after,
    .timeline-item:nth-child(odd):before {
        display: none;
    }
    .timeline-item > .timeline-badge {
        top: -8px !important;
        left: 50% !important;
        margin-left: -6px;
    }
} */
.wrapkit-content-rtl .timeline-avatar {
    margin-right: 0;
    margin-left: 10px;
}

/*** Accordion Collapse ***/
.panel-heading,
.panel-body {
    padding: 0;
}
.panel-heading.isOpen {
    background: #f5f5f5;
    color: #333;
}

.timeline .accordion-item {
    border: 0 !important;
}

.timeline .accordion-button {
    /* padding-top: 0; */
}


.timeline .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: var(--vs-black) !important;
    font-weight: 400 !important;
}

.timeline .accordion-button::after {
    width: 16px !important;
    line-height: 12px;
    text-align: center;
    border-radius: 100%;
    border: 2px solid var(--vs-primary);
    font-size: 20px;
    color: var(--vs-primary);
}

/* .timeline .accordion-button:not(.collapsed)::after {
    content: '\002B' !important;
} */


.our-services.bg-section {
    margin: 0 auto
}

.highlights-img img {
    width: 34px;
}

.mfp-with-zoom .mfp-img {
    transition: opacity 0.3s ease;
}
.mfp-with-zoom.mfp-bg {
    transition: opacity 0.3s ease;
}


/* .fleets-information .section-title.description h2, .section-title.gallery-text h2, .section-title.faq-txt h2, .section-title.reviews-txt h2 .section-title.related-pkg h2  {
    font-size: 28px;
} */


.fleets-amenities .section-title.highlights h2 {
    font-size: 34px;
}

.itenery-content {
    margin-top: 40px;
}

.itenery-content .section-title.itenary h2 {
    font-size: 32px;
}

.v-play-icon {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    margin: 0 auto;
	font-size: 20px;
	font-weight: 900;
	color: var(--white-color);
    border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

/* .v-play-icon {
    position: absolute;
    top: 0;
} */
.video-gallery-image:hover .v-play-icon {
    /* opacity: 1;
    visibility: visible; */
	color: var(--accent-color);
}
.v-play-icon i {
    font-size: 60px;
}

.extra-description {
    margin-left: 20px;
    font-size: 15px;
    margin-left: 20px;
    font-weight: 500;
    font-family: 'Gotham-Book';
    line-height: 23px;
    margin-top: 8px;
}


.section-title.extra-activ h2 {
    font-size: 26px;
}

.checkbox-content {
    width: 75%;
    gap: 4px;
}

.checkbox-content input {
    margin-top: 2px;;
}

.checkbox-content strong {
    line-height: 20px;
}

.itenary-icon i {
    font-size: 36px;
    color: var(--vs-black);
}

.carsmalldetail {
    display: flex;
    gap: 10px;
    padding: 0;
    margin-bottom: 10px;
}

.carsmalldetail li {
    border: 1px solid #ccc;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px #ccc;
    font-size: 16px;
    align-items: center;
    display: flex;
}

.carsmalldetail li img {
    width: 18px;
    height: 16px;
    margin-top: 0;
    margin-left: 7px;
}
.car-interiar {
    position: relative;
}
.view-all-gallery {
    position: absolute;
    z-index: 9;
    background: #fff;
    padding: 3px 15px;
    right: 25px;
    bottom: 110px;
    cursor: pointer;
    border-radius: 8px;
    color: #000;
}

.view-all-gallery:hover {
    color: var(--vs-primary);
}

.btn-default.popup-with-form:hover {
    color: var(--vs-white) !important;
}

.navbar-nav .nav-item svg {
    height: 16px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* modal design  */
.modal-content {
    border-radius: 30px !important;
    padding: 20px;
}

.modal-header {
    border-bottom: 0 !important;
}
.modal-footer {
    border-top: 0 !important;
}

.signinform {
    color: var(--vs-primary);
}
.signinform:hover {
    color: var(--vs-black);
}

.checkbox input[type='checkbox'] {
    margin-right: 6px;
}

.related-img {
    height: 220px;
}

.servee-form .fleets-single-sidebar-btn {
    justify-content: initial;
    gap: 20px;
}

.servee-title {
    margin: initial !important;
    text-align: initial !important;
    max-width: initial !important;
}

.fleets-single-content .gallery {
    border-top: 1px solid #d7d7d7;
    padding: 20px 0;
    border-bottom: 1px solid #d7d7d7;
    margin-top: 30px;;
}

.timeline-panel .accordion-body {
    padding-top: 0;
}

.timeline-panel .accordion-button {
    font-size: 1.1rem;
}
.select2-selection.select2-selection--multiple {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    /* scrollbar-color: #888 #f1f1f1; */
    scrollbar-color: transparent transparent;
  }

  .select2-selection.select2-selection--multiple::-webkit-scrollbar {
    width: 8px;
  }

  .select2-selection.select2-selection--multiple::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }

  .select2-selection.select2-selection--multiple::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
  }

  .select2-selection.select2-selection--multiple::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

.select2-selection.select2-selection--multiple:hover::-webkit-scrollbar {
    width: 8px;
  }

  .select2-selection.select2-selection--multiple:hover::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
  }

  .select2-selection.select2-selection--multiple:hover::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  .select2-selection.select2-selection--multiple:hover::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
  }
  .select2-selection.select2-selection--multiple:hover {
    scrollbar-color: #888 #f1f1f1;
  }

  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent !important;
    border-radius: 0 !important;
  }

  .select2-container .select2-selection--multiple {
    min-height: initial !important;
  }


  .line-2 {
    display: -webkit-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }


.mobile-auth-resposive {
    display: none;
}
.desktop-view {
    display: block;
}

.adv_pay {
    /* box-shadow: 0 0 10px 0 rgba(0, 0, 0, .9); */
    background-color: #fff;
    padding: 20px 0;
    border-radius: 10px;
    display: none;
}

.adv_pay span {
    font-size: 24px;
}
.adv_pay h3 {
    font-size: 22px;
    margin-top: 10px;;
}

.feature_specification li {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    width: initial !important;
    border-left: 1px solid #d9d9d9;
    padding-left: 10px;
}

.feature_specification li img {
    width: 35px;
}

.feature_specification li span + .feature_specification li span {
    padding-left: 0 !important;
}


input[type='text'].form-control:focus, .contact_form_wrapper .form-select:focus, input[type='date']:focus {
    border-color: #eaeaea;
    box-shadow: initial;
}

/* #search-form {
    position: absolute;
    bottom: -210px;
    z-index: 111;
    width: 100%;
} */

.select2-search__field::before {
    display: block;
    content: "";
    position: absolute;
    right: 4px;
    transform: rotate(135deg);
    border: solid #333;
    border-width: 1px 1px 0 0;
    width: 6.5px;
    height: 6.5px;
}

/* .check {
    display: inline-block;
    transform: rotate(45deg);
    height: 24px;
    width: 24px;
    border-bottom: 7px solid #78b13f;
    border-right: 7px solid #78b13f;
    margin-left: 10px;
} */
.gotop {
    position: fixed;
    cursor: pointer;
    transition: ease-in-out .5s;
    bottom: 15px;
    right: 50px;
    z-index: 4;
    text-align: center;
    height: 40px;
    width: 40px;
    background: #dc3b05;
    border-radius: 100%;
    display: grid;
    place-items: center;
    opacity: 0;
}

.gotop.active {
    opacity: 1;
}

.gotop .go-top {
    color: var(--white-color);
    font-size: 22px;
    /* animation: sm-shake-animation linear 3s infinite; */
}



/* @keyframes sm-shake-animation {
    0% {
        transform: translate(0, 0);
    }

    1.78571% {
        transform: translate(5px, 0);
    }
    3.57143% {
        transform: translate(0, 0);
    }

    5.35714% {
        transform: translate(5px, 0);
    }
    7.14286% {
        transform: translate(0, 0);
    }
    8.92857% {
        transform: translate(5px, 0);
    }
    10.7143% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes waves-call-now {
    0% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 0 rgba(48, 191, 57, .2), 0 0 0 0 rgba(48, 191, 57, .2);
    }
    40% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 35px rgba(48, 191, 57, .2), 0 0 0 0 rgba(48, 191, 57, .2);
    }
    80% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 55px transparent, 0 0 0 26.7px rgba(48, 191, 57, .067);
    }
    100% {
        box-shadow: 0 8px 10px rgba(48, 191, 57, .3), 0 0 0 80px transparent, 0 0 0 40px transparent;
    }
} */



.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--vs-primary) !important;
}

.fs-40 {
    font-size: 34px;
}



.select2-container--default .select2-results>.select2-results__options {
    overflow-y: hidden !important;
}

.select2-container--open .select2-dropdown--below {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2) !important;
}
.select2-results__option {
    border-bottom: 1px solid #eaeaea;
}

.swiper-button-lock {
    display: block !important;
}

.gallery .modal-content {
    background-color: transparent;
}

.gallery .modal {
    height: auto;
}

.singal-gallery .video-gallery-image img {
    aspect-ratio: 16/10 !important;

}
.padding-6 {
    padding: 0 6px !important;
}

/* .singal-gallery .singal-video {
    padding: 0 6px;
}

.singal-gallery .single-img {
    aspect-ratio: 16/19 !important;
} */


.feature-icon img {
    width: 40px;
}
.pt-20 {
    padding-top: 20px;
}

.ml--6 {
    margin-left: -6px;
}

.common-jump {
    scroll-margin-top: 6rem;
}