/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/*@import url('../fonts/font.css');*/

body {
    font-family: "Open Sans", sans-serif;
    color: #000;
    color: #444444;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.2rem;
}

a {
    color: #5846f9;
}

a:hover {
    color: #8577fb;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

p {
    margin-bottom: 1.3rem;
}

.abnum {
    border-bottom: 1px solid #dfdfdf;
}

.abnumr {
    position: relative;
}

.abnumr:after {
    content: "";
    border-right: 1px solid #dfdfdf;
    position: absolute;
    right: -16px;
    height: 100%;
    top: -7px;
}

.t-green {
    color: #27b675
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #27b675;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #fff;
    color: #000;
    border: 2px solid #27b675;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #076795;
    border-top-color: #e7e4fe;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 0px 0;
    background: #fff;
    box-shadow: 0 0 12px #dfdfdf;
}

img {
    max-width: 100%;
}

.testimonials img {
    max-width: 80%;
}

.fixed-top.header-scrolled .nav-menu a {
    color: rgba(0, 0, 0, 0.99);
}

.fixed-top.header-scrolled .nav-menu>ul>li>a:before {
    background-color: #076795;
}

.fixed-top.header-scrolled .get-started-btn:hover {
    color: #ffffff;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(255, 255, 255, 1);
    padding: 12px 0;
    box-shadow: 0 0 12px #dfdfdf;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 70px;
    /*width: 100%;*/
    display: block;
}

@media (max-width: 992px) {
    #header,
    #header.header-scrolled {
        padding: 0;
    }
    #header .logo {
        font-size: 28px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>ul {
    display: flex;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    padding: 10px 0 10px 24px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgb(0, 0, 0) !important;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    padding: 0 3px;
    letter-spacing: 1px;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 60%;
    margin: 0 auto;
    right: 0;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #000;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 22px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: #2c4964;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #5846f9;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Get Startet Button */

.get-started-btn,
.get-started-btn:visited {
    margin-left: 25px;
    color: #000;
    border-radius: 50px;
    padding: 12px 35px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #23b573;
}

.get-started-btn:hover,
.get-started-btn:focus {
    color: #fff;
    background: #23b573;
    border: 2px solid #23b573;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 13vw 0 0;
        padding: 6px 18px;
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 24px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    background: #000;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.btn-get-touch {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 5px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff !important;
    border: 0px solid #fff;
    background: #076795;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #2c4964;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #5846f9;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(28, 47, 65, 0.6);
    background: #000;
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    /*background: linear-gradient(45deg, rgba(86, 58, 250, 0.9) 0%, rgba(116, 15, 214, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
    background: url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;*/
    background: url(//ik.imagekit.io/snowstormtech/sstmarketing/hero-bg_CY8emJSZH.jpg) center right no-repeat;
    background-size: contain;
    background-position: right -70px;
}

*,
::after,
::before {
    outline: none !important;
}


/* #hero .container,
#hero .container-fluid {
    padding-top: 84px;
} */

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    font-family: "Oxygen", sans-serif;
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 28px;
    line-height: 36px;
}

.font-600 {
    font-weight: 600;
}

#hero .btn-get-started,
.btn-get-started {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #23b573;
    background: #23b573;
}

.min-h-220 {
    min-height: 225px;
}

.min-h-365 {
    min-height: 365px;
}

.phone {
    color: #000;
}

.phone.green i {
    color: #23b573;
    margin-right: 10px;
    font-weight: 800;
}

.phone.blue i {
    color: #47b2f6;
    margin-right: 10px;
    font-weight: 800;
}

.btn-get-started:hover,
.btn-get-started:visited,
.btn-get-started:focus {
    color: #fff;
    border: 2px solid #23b573;
    background: transparent;
}

.banneroverlapimg {
    position: absolute;
    right: 0;
    top: -350px;
    top: -90px;
}

#hero .btn-get-started:hover,
.btn-get-started:hover #hero .btn-get-started:focus,
.btn-get-started :focus {
    color: #000;
    border: 2px solid #23b573;
    background: #fff;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
    #hero {
        /* background-attachment: fixed; */
    }
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
    }
    #hero .container,
    #hero .container-fluid {
        padding-top: 68px;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 26px;
        line-height: 36px;
    }
    .testimonials {
        padding: 0px 0 30px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        color: #000;
        text-align: center;
    }
    #hero .hero-img img {
        width: 60%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 100px 0;
    /* overflow: hidden; */
}

.section-bg {
    background-color: #f7f7ff;
    border-radius: 10px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    margin-top: 30px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #5846f9;
    bottom: 0;
    left: calc(50% - 25px);
    display: none;
    /* left: 0; */
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 80px 0;
}

.about .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: #2c4964;
}

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

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

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

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

.about .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    color: #fff;
    background: linear-gradient(45deg, #5846f9 0%, #7b27d8 100%);
    position: relative;
}

.about .content .read-more:hover {
    background: linear-gradient(180deg, #5846f9 0%, #7b27d8 100%);
}

.about .content .read-more i {
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 12px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #2c4964;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #5846f9;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: #2c4964;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #b1a9fc;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #fff;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.testimonials .owl-dot.active {
    background-color: #5846f9 !important;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px 0;
        padding: 0px 0!important;
    }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f2f6f9;
    min-height: 40px;
    margin-top: 68px;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #3c6387;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

.section-title h2::after {
    background: #076795;
}

.mobile-nav-active .mobile-nav-toggle i {
    font-family: FontAwesome;
}

.section-location-map {
    margin: 70px 0;
}

.section-location-map .map-bg {
    background: url(https://ik.imagekit.io/snowstormtech/sstmarketing/mapdots_g50UBA1ZwE.jpg) center/cover no-repeat;
    height: 525px;
    width: 850px;
    padding: 0;
    margin: 0 auto;
    position: relative;
}

.section-location-map .map-bg .map-pointer {
    width: 50px;
    height: 50px;
    background: #333333;
    padding: 0;
    margin: 0;
    text-align: center;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
    line-height: 50px;
    cursor: pointer;
}

.section-location-map .map-bg .map-pointer.pointer1 {
    position: absolute;
    left: 37px;
    top: 158px;
}

.section-location-map .map-bg .map-pointer.pointer2 {
    position: absolute;
    left: 147px;
    top: 188px;
}

.section-location-map .map-bg .map-pointer.pointer3 {
    position: absolute;
    left: 111px;
    top: 274px;
}

.section-location-map .map-bg .map-pointer.pointer4 {
    position: absolute;
    left: 421px;
    top: 90px;
}

.section-location-map .map-bg .map-pointer.pointer5 {
    position: absolute;
    left: 341px;
    top: 170px;
}

.section-location-map .map-bg .map-pointer.pointer6 {
    position: absolute;
    right: 215px;
    top: 295px;
}

.section-location-map .map-bg .map-pointer [data-md-tooltip] {
    position: relative;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -50px;
}

.section-location-map .map-bg .map-pointer [data-md-tooltip]:before {
    content: attr(data-md-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    padding: 8px;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: top;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 2px;
    font-size: 18px;
    line-height: 18px;
}

.section-location-map .map-bg .map-pointer [data-md-tooltip]:hover:before {
    transform: translateX(-50%) scale(1);
}

.footer-logo img {
    height: 70px;
}

.copyright a {
    color: #076795;
    margin-top: 15px;
    display: inline-block;
}

a,
a:focus,
a:visited {
    color: #076795;
}

.footer-logo {
    border-top: 1px solid #dfdfdf;
    max-width: 40%;
    margin: 0 auto;
    padding-top: 30px;
}

.login-logo img {
    height: 90px;
}

.get-started-btn.active {
    background: #34ad72;
    color: #fff;
}

.fixed-top.header-scrolled .get-started-btn.active {
    color: #fff;
}

.one-process,
.product {
    display: inline-block;
    position: relative;
    max-width: 55.556vw;
    margin: 0 auto;
}

.one-process .tectnology {
    position: absolute;
    width: 11.513vw;
    height: 10.513vw;
    top: 12%;
    left: 40%;
    cursor: pointer;
    display: block;
}

.one-process .journey {
    position: absolute;
    width: 11.513vw;
    height: 10.513vw;
    top: 64%;
    left: 15%;
    cursor: pointer;
    display: block;
}

.one-process .content {
    position: absolute;
    width: 11.513vw;
    height: 10.513vw;
    top: 64%;
    left: 64%;
    cursor: pointer;
    display: block;
}

.one-process .one2one {
    position: absolute;
    width: 11.513vw;
    height: 10.513vw;
    top: 46%;
    left: 40%;
    cursor: pointer;
    display: block;
}

.product .air {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 10%;
    left: 40%;
    cursor: pointer;
    display: block;
}

.product .tour {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 32%;
    left: 17%;
    cursor: pointer;
    display: block;
}

.product .activity {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 65%;
    left: 26%;
    cursor: pointer;
    display: block;
}

.product .car {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 66%;
    left: 55%;
    cursor: pointer;
    display: block;
}

.product .hotel {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 32%;
    left: 64%;
    cursor: pointer;
    display: block;
}

h2 {
    font-weight: 400;
}

.product.journey .air {
    top: 6%;
    left: 40%;
}

.product.journey .tour {
    top: 22%;
    left: 17%;
}

.product.journey .activity {
    top: 55%;
    left: 17%;
}

.product.journey .car {
    top: 71%;
    left: 40%;
}

.product.journey .hotel {
    top: 55%;
    left: 64%;
}

.product.journey .journypro {
    position: absolute;
    width: 10.513vw;
    height: 10.513vw;
    top: 22%;
    left: 63%;
    cursor: pointer;
    display: block;
}

#hero {
    background-image: none !important;
    background-size: 68%;
    /* height: auto; */
    padding-bottom: 0;
    /* margin-top: 88px; */
    /* background-position: right 0px!important; */
    min-height: auto !important;
    padding-top: 95px;
    height: auto;
}

@media (min-width: 890px) {
    .modal-content {
        width: 600px;
        border: 2px solid #da0281;
        border-radius: 100%;
        height: 600px;
    }
    .modal-body {
        margin: 0 109px;
        overflow: auto;
        max-height: 165px;
        margin-top: 30px;
        margin-bottom: 5px;
        text-align: center;
        padding: 0;
    }
    .new-modal-close {
        text-align: center;
        display: inline-block;
        width: 50px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        height: 50px;
        margin: 0 auto;
        background: #da0281;
        color: #fff;
        border-radius: 100%;
        line-height: 50px;
        font-size: 42px;
        cursor: pointer;
    }
}

.modal-content h3 {
    color: #da0281;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#tour .modal-content {
    border: 2px solid #f68101;
}

#tour .modal-content h3 {
    color: #f68101;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#tour .new-modal-close {
    background: #f68101;
}

#activity .modal-content {
    border: 2px solid #039fe7;
}

#activity .modal-content h3 {
    color: #039fe7;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#activity .new-modal-close {
    background: #039fe7;
}

#car .modal-content {
    border: 2px solid #09bdb6;
}

#car .modal-content h3 {
    color: #09bdb6;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#car .new-modal-close {
    background: #09bdb6;
}

#hotel .modal-content {
    border: 2px solid #88c731;
}

#hotel .modal-content h3 {
    color: #88c731;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#hotel .new-modal-close {
    background: #88c731;
}

#activity.journey .modal-content {
    border: 2px solid #ffcc01;
}

#activity.journey .modal-content h3 {
    color: #ffcc01;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#activity.journey .new-modal-close {
    background: #ffcc01;
}

#car.journey .modal-content {
    border: 2px solid #039fe7;
}

#car.journey .modal-content h3 {
    color: #039fe7;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#car.journey .new-modal-close {
    background: #039fe7;
}

#hotel.journey .modal-content {
    border: 2px solid #09bdb6;
}

#hotel.journey .modal-content h3 {
    color: #09bdb6;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#hotel.journey .new-modal-close {
    background: #09bdb6;
}

#journypro.journey .modal-content {
    border: 2px solid #88c731;
}

#journypro.journey .modal-content h3 {
    color: #88c731;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

#journypro.journey .new-modal-close {
    background: #88c731;
}

.section-grey {
    background-color: #f2f2f2;
}

.section-blue {
    background-color: #076795;
}

.subtext {
    color: #fff;
    font-size: 45px;
    text-align: center;
    font-weight: 700;
}

.sub-inpubox {
    background-color: #fff;
    border-radius: 4px;
    padding: 5px;
}

.sub-inpubox input[type="text"] {
    border: 0;
    padding: 12px 8px;
    height: auto;
}

.sub-inpubox button[type="button"] {
    border-radius: 5px !important;
    padding: 12px 27px;
    background: #da0081;
    color: #fff;
    border: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: calc(100% / 4);
    font-size: 120px;
    font-weight: 300;
    color: #076795;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel {
    position: relative;
}

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

.owl-carousel .owl-item p {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 28px;
}

.p-logo {
    /* border: 1px solid #dfdfdf; */
    border-radius: 4px;
    padding: 15px 0;
    /* margin: 0 15px 15px 0; */
    max-width: calc(96% / 4);
}

.hero-left-block {
    margin-right: 160px;
}

#hero .hero-left-block h1 {
    color: #444444;
    font-weight: 400;
    font-size: 46px;
    line-height: 55px;
}

#hero .hero-left-block h2 {
    color: #7d7d7d;
    font-weight: 400;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1600px;
    }
}

.team .info-box h3 {
    font-size: 28px;
    font-weight: 700;
}

.team .info-box p {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 700;
}

.team .col-md-4:nth-child(1) .info-box h3 {
    color: #1fbfb5;
}

.team .col-md-4:nth-child(2) .info-box h3 {
    color: #e3801b;
}

.team .col-md-4:nth-child(3) .info-box h3 {
    color: #b8026f;
}

.team .col-md-4:nth-child(4) .info-box h3 {
    color: #0ea2e6;
}

.team .col-md-4:nth-child(5) .info-box h3 {
    color: #8cc640;
}

.team .col-md-4:nth-child(6) .info-box h3 {
    color: #f4ce1a;
}

.team .col-md-4:nth-child(7) .info-box h3 {
    color: #692e94;
}

.team .col-md-4:nth-child(8) .info-box h3 {
    color: #b73f3f;
}

.team .col-md-4:nth-child(9) .info-box h3 {
    color: #35a570;
}

.media-block {
    background: #f4f4f4;
    border-radius: 4px;
    box-shadow: 3px 4px 3px #dadada;
    margin: 0 15px 20px;
    width: calc(92% / 3);
    max-width: initial;
    flex: initial;
}

.media-block h3 {
    font-size: 20px;
    font-weight: 700;
    min-height: 65px;
}

.media-block img {
    max-height: 50px;
}

.media-block p {
    font-size: 18px;
    font-style: italic;
    min-height: 220px;
}

.media-block a.readmore {
    color: #000;
}

.btn:hover {
    color: #ffffff;
}

.media-block a.readmore i:nth-child(2) {
    text-decoration: underline;
}

.pink-btn a.btn.btn-outline-secondary {
    border-radius: 5px !important;
    padding: 12px 27px;
    background: #da0081;
    color: #fff;
    border: 2px solid #fff;
    background: #ffffff;
    color: #076695;
}

.login .input-group-prepend {
    margin-right: -2px;
}

.login .input-group-text {
    background-color: #ffffff;
    border-color: #51616b;
    border-width: 2px;
}

.login .form-control {
    border-left: 0;
    padding-left: 0;
    border-color: #51616b;
    border-width: 2px;
}

.login .btn-get-touch {
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 0;
    color: #fff;
    border: 0px solid #fff;
    background: #076795;
    width: 100%;
    text-transform: uppercase;
}

.login .forgot {
    color: #000;
}

.login .forgot a {
    color: #000;
    text-decoration: underline;
}

.content-sub p {
    font-size: 20px;
    line-height: 30px;
    color: #7d7d7d;
}

.new-con-title {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 64px;
}

#hero.air {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/bg-p_baDYSqR2ly.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

#hero.air h2 {
    font-size: 17px;
    line-height: 22px;
    font-size: 28px;
    line-height: 35px;
}

#hero.hotel {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/bg-g_BHN3GTGkVs.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

#hero.hotel h2 {
    font-size: 17px;
    line-height: 22px;
}

#hero.car {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/bg-sg_D1D8HtNjXt.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

#hero.car h2 {
    font-size: 17px;
    line-height: 22px;
}

#hero.activiti {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/bg-b_A3NxGrutPt.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

#hero.activiti h2 {
    font-size: 17px;
    line-height: 22px;
}

#hero.cruise {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/bg-o_2RMjtWshf.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

#hero.cruise h2 {
    font-size: 17px;
    line-height: 22px;
}

#hero.loyalty {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Event-bg_0u2dyuec5.jpg") center right no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 0;
    margin-top: 95px;
    background-position: right 0px !important;
    min-height: 85vh;
}

section.loyalty,
section.cruise {
    padding-top: 0;
}

.modal-content h3 sub {
    bottom: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: lowercase;
}

.modal-content a.readmore {
    /* color: #000; */
    text-decoration: underline;
}

#hero h1 sub {
    bottom: 0;
    font-size: 40px;
    font-weight: 700;
}

ul.tlist {
    padding-left: 0;
}

ul.tlist li {
    list-style: none;
    background: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/tick_vqxml2u2r.png) no-repeat left 0px;
    padding-bottom: 20px;
    padding-left: 33px;
    font-size: 17px;
    background-size: 24px;
}

.t-bot-img {
    position: relative;
    bottom: -50px;
}

.t-bot-img img {
    width: 100vw;
}

.tblue {
    color: #0ab6b0;
}

.torange {
    color: #f18000;
}

.tpink {
    color: #d40080;
}

.tgreen {
    color: #83c131;
}

#hero {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/pink-bedspread-inside-room-2351290_H80ZOpDiB.jpg)!important;
    background-position: left 85px !important;
    background-size: 45%;
    /* height: auto; */
    padding-bottom: 0;
    /* margin-top: 88px; */
    /* background-position: right 0px!important; */
    min-height: 100vh!important;
    padding-top: 85px;
}

#hero.about {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/AboutUs-pic_bW58Q3NRW.jpg)!important;
    background-size: 40%;
}

#hero.contact {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/person-holding-smartphone-3585074_3dA4n59TM.jpg)!important;
    background-size: 40%;
}

#hero.login {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/login-bg_6FpOALkCU.jpg)!important;
    background-size: 40%;
}

#hero.generic {
    height: auto;
    min-height: auto!important;
    background: none transparent!important;
    margin-top: 30px;
}

.btn-get-started.green:hover,
.btn-get-started.green:visited,
.btn-get-started.green:focus {
    color: #000;
}

.btn-get-started.blue,
.btn-get-started.blue,
.btn-get-started.blue {
    color: #fff;
    background: #3ea9f5;
    border: 2px solid #3ea9f5;
}

.btn-get-started.blue:hover,
.btn-get-started.blue:visited,
.btn-get-started.blue:focus {
    color: #000;
    border: 2px solid #3ea9f5;
    background: transparent;
}

#hero .align-items-center {
    -ms-flex-align: start !important;
    align-items: start !important;
    /* margin-top: 50px; */
}

#hero .align-items-center>.text-right {
    margin-top: 50px;
}

.content-sub a.get-started-btn {
    color: #fff;
    background: #076795;
}

.content-sub h4 {
    font-weight: 700;
}

#hero h2.new-qte {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/dgdgdg_6avrbl9eq.png") no-repeat top center;
    font-weight: 600;
    padding-top: 35px;
    font-size: 22px;
    line-height: 30px;
    margin-top: 50px;
    background-size: contain;
}

.lan-ne-con-1 {
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    margin-top: 50px;
}

.lan-ne-con-1 b {
    font-weight: 700;
}

.tblue-new {
    color: #039fe7;
}

.nCONNECT {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_67_dyDk0iHAe.png") no-repeat top left;
    background-size: contain;
    padding: 0;
}

.nCONNECT h3 {
    font-weight: 700;
    font-size: 43px;
    line-height: 55px;
    color: #d40080;
}

.nCOLLABORATE {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_68_YjGlvquDhT.png") no-repeat top right;
    background-size: contain;
    padding: 0;
}

.nCOLLABORATE h3 {
    font-weight: 700;
    font-size: 43px;
    line-height: 55px;
    color: #83c131;
}

.nSEARCH {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_69_2pqD_k1uVa.png") no-repeat top left;
    background-size: contain;
    padding: 0;
}

.nSEARCH h3 {
    font-weight: 700;
    font-size: 43px;
    line-height: 55px;
    color: #0ab6b0;
}

.nBOOK {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_70_TPpeP9ZrBp.png") no-repeat top right;
    background-size: contain;
    padding: 0;
}

.nBOOK h3 {
    font-weight: 700;
    font-size: 43px;
    line-height: 55px;
    color: #0287cd;
}

.nMANAGE {
    background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_71_N6CFFoHqfJ.png") no-repeat top left;
    background-size: contain;
    padding: 0;
}

.nMANAGE h3 {
    font-weight: 700;
    font-size: 43px;
    line-height: 55px;
    color: #f18000;
}

.nCONNECT p,
.nCOLLABORATE p,
.nSEARCH p,
.nBOOK p,
.nMANAGE p {
    font-weight: 400;
    font-size: 22px;
    line-height: 35px;
}

.new-land span {
    font-weight: 700;
    /* color: #076795;*/
    color: #444;
}

.mobile-nav-toggle {
    position: absolute;
    right: 15px;
    top: 20px;
}

body.mobile-nav-active .mobile-nav button.mobile-nav-toggle {
    position: fixed;
    top: 25px;
    right: 25px;
}

.footersection-bg {
    background: url('https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/nasa-Q1p7bh3SHj8-unsplash_z7o81OLciR.jpg') center center no-repeat;
    background-size: cover;
    min-height: 450px;
}

footer.contact {
    background: #232323;
}

footer.contact p {
    color: #fff;
}

footer.contact ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer.contact ul li {
    list-style: none;
    padding: 0 20px 0 0;
    margin: 0 10px;
    border-right: 2px solid #ffffff;
}

footer.contact ul li:last-child {
    border-right: 0;
}

footer.contact ul li a {
    color: #fff;
    text-decoration: none;
    line-height: 20px;
}

footer.contact ul li a:hover {
    color: #23b573;
}

.f-green {
    color: #23b573;
}

.team-new.to .info-box img {
    border: 2px solid #23b573;
    border-radius: 100%;
    max-width: 200px;
}

.team-new.to .info-box p {
    font-style: italic;
}

.contact .form-control {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #dfdfdf;
    background: transparent;
}

.contact .form-control:focus {
    box-shadow: 0 0 0;
}

.team-new.to .info-box h3 {
    font-size: 22px;
    font-weight: 700;
}

#preloader {
    display: inline-block;
    font-size: 0px;
    padding: 0px;
    background: #0e0e0e;
}

#preloader::before {
    display: none;
}

#preloader>div,
#preloader>.loaderlogo {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: auto;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 150px;
}

#preloader>.loaderlogo {
    margin-bottom: 130px;
}

#preloader span {
    border-radius: 100%;
    width: 10px;
    height: 10px;
    margin: 3px 2px;
    -webkit-animation: loader1 0.8s linear infinite alternate;
    animation: loader1 0.8s linear infinite alternate;
}

#preloader span:nth-child(1) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(35, 181, 115, 0.6);
}

#preloader span:nth-child(2) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(35, 181, 115, 0.8);
}

#preloader span:nth-child(3) {
    -webkit-animation-delay: -0.26666s;
    animation-delay: -0.26666s;
    background: rgba(35, 181, 115, 1);
}

#preloader span:nth-child(4) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
    background: rgba(35, 181, 115, 0.8);
}

#preloader span:nth-child(5) {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background: rgba(35, 181, 115, 0.4);
}

#hero.generic h2 {
    color: #000;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: auto;
    /* image-rendering: pixelated; */
}

.max-w-150 {
    max-width: 150px;
}

.max-w-180 {
    max-width: 180px;
}

@keyframes loader1 {
    from {
        transform: scale(0, 0);
    }
    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes loader1 {
    from {
        -webkit-transform: scale(0, 0);
    }
    to {
        -webkit-transform: scale(1, 1);
    }
}

* {
    outline: none;
}

#hero.programme {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/Asset_15_36hPJ7B3R.png)!important;
    background-position: left 85px !important;
    background-size: 44%;
    min-height: 540px!important;
}

#hero.partner {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/Asset_17_xpoekWgn4.png)!important;
    background-position: left 85px !important;
    background-size: 44%;
    min-height: 540px!important;
}

#hero.join {
    background-image: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/Asset_13_2XAxnYj1B9.png)!important;
    background-position: -18px 84px !important;
    background-size: 48%;
    min-height: 540px!important;
}

@media (min-width: 1025px) and (max-width: 1400px) {
    #hero h2 {
        font-size: 17px;
        line-height: 22px;
    }
    #hero .align-items-center {
        margin-top: 50px;
    }
}

@media (min-width: 768px) and (max-width: 890px) {
    #hero .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 890px) {
    .phone {
        color: #fff;
    }
    .min-h-365 {
        min-height: auto;
    }
    .contact .section-bg {
        background-color: transparent;
    }
    .abnum {
        border-bottom: 0px solid #dfdfdf;
    }
    .abnumr {
        position: relative;
    }
    .abnumr:after {
        display: none;
    }
    .contact .form-control {
        color: #313131;
    }
    .team-new.to .info-box img {
        max-width: 130px;
    }
    .team-new.to .info-box h3 {
        font-size: 20px;
        font-weight: 700;
    }
    .team-new.to .info-box p {
        font-size: 14px;
        min-height: 45px;
    }
    #hero.about,
    #hero.contact {
        background-size: cover;
        position: relative;
    }
    #hero.about:after,
    #hero.contact:after {
        height: 100%;
        top: 0;
        bottom: 0;
    }
    .nCONNECT,
    .nCOLLABORATE,
    .nSEARCH,
    .nBOOK,
    .nMANAGE {
        background: none;
        padding: 0;
    }
    .nCONNECT .text-right,
    .nCONNECT .text-left,
    .nCOLLABORATE .text-right,
    .nCOLLABORATE .text-left,
    .nSEARCH .text-right,
    .nSEARCH .text-left,
    .nBOOK .text-right,
    .nBOOK .text-left,
    .nMANAGE .text-right,
    .nMANAGE .text-left {
        text-align: center !important;
    }
    .nCONNECT img,
    .nCOLLABORATE img,
    .nSEARCH img,
    .nBOOK img,
    .nMANAGE img {
        max-width: 160px;
    }
    #hero h2.new-qte {
        background-size: 50%;
    }
    #hero h2.new-qte br,
    .lan-ne-con-1 br,
    .new-land br {
        display: none;
    }
    .contactimg-res {
        zoom: 0.4;
        object-fit: none;
        height: fit-content;
    }
    #hero.air h2 br {
        display: none;
    }
    .modal-content a.readmore {
        position: relative;
        top: -12vh;
    }
    .p-logo {
        max-width: calc(92% / 2);
        margin: 0 auto 15px;
    }
    #hero {
        height: auto;
    }
    .hero-left-block {
        margin-right: 0;
    }
    .media-block {
        width: calc(92% / 1);
    }
    .subtext {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }
    .owl-carousel .owl-item .item {
        padding: 0 58px;
    }
    .about {
        padding: 30px 0;
    }
    #hero.generic:after {
        display: none;
    }
    #hero.generic h1 {
        color: #000;
    }
    #hero h1 {
        font-size: 43px;
        line-height: 48px;
        color: #fff;
        text-align: center;
    }
    #hero .btn-get-started {
        color: #ffffff;
        border: 2px solid #23b573;
        background: #23b573;
        display: inline-block;
        text-align: center;
        /* position: relative;
        left: 30vw; */
    }
    .text-m-center {
        text-align: center!important;
    }
    dl,
    ol,
    ul {
        margin-bottom: auto;
    }
    ul.tlist li:last-child {
        padding-bottom: 0px;
    }
    .pad-m-0 {
        padding-bottom: 0;
    }
    body {
        overflow-x: hidden;
    }
    .mobile-nav-toggle i {
        color: #23b573;
    }
    #hero,
    #hero.hotel,
    #hero.air,
    #hero.car,
    #hero.activiti,
    #hero.cruise,
    #hero.loyalty,
    #hero.partner,
    #hero.join,
    #hero.programme {
        background-position: top right;
        margin-top: 0px;
        padding-top: 0;
        background-size: cover;
        background-position: center top!important;
        padding: 20px;
        color: #fff;
        min-height: auto!important;
        position: relative;
    }
    #hero>.container-fluid {
        position: relative;
        z-index: 10;
    }
    #hero p {
        text-align: center!important;
    }
    /* #hero p br {
        display: none;
    } */
    #hero:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        background: rgb(33 37 41 / .75);
        z-index: 9;
    }
    .banneroverlapimg {
        position: static;
    }
    .new-con-title {
        font-size: 30px;
        line-height: 38px;
    }
    .section-location-map {
        display: none;
    }
    /* #header .logo a {
        display: block;
        position: relative;
        left: -50px;
    } */
    .mobile-nav a:hover,
    .mobile-nav .active>a,
    .mobile-nav li:hover>a {
        color: #fff;
        background: #27b675;
        border-radius: 6px;
    }
    .mobile-nav a {
        padding: 20px;
        text-transform: uppercase;
        color: #969696;
        border-bottom: 1px solid #353535;
    }
    #header .logo img {
        max-height: 55px;
        position: relative;
        /*left: -53px;
        top: -5px;*/
    }
    .modal-open .modal {
        z-index: 10000;
    }
    .modal-body {
        max-height: 50vh;
        overflow: auto;
        margin-bottom: 90px;
    }
    .modal-content {
        max-height: 90vh;
    }
    .modal-image img {
        max-width: 40%;
    }
    .new-modal-close {
        text-align: center;
        display: inline-block;
        width: 50px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        height: 50px;
        margin: 0 auto;
        background: #da0281;
        color: #fff;
        border-radius: 100%;
        line-height: 50px;
        font-size: 42px;
        cursor: pointer;
    }
    #main .get-started-btn {
        margin: 0 0 0 0;
    }
    .one-process,
    .product {
        max-width: 100vw;
    }
    .one-process .img-fluid,
    .product .img-fluid {
        max-width: 130%;
        height: auto;
        margin: 0 auto;
        margin-left: -15%;
    }
    .product .air,
    .one-process .tectnology,
    .one-process .journey,
    .one-process .content,
    .product .tour,
    .product .activity,
    .product .car,
    .product .hotel,
    .product .journypro {
        width: 22.513vw !important;
        height: 21.513vw !important;
    }
    #hero .hero-left-block h1 {
        text-align: left;
        font-size: 22px;
    }
    .pink-btn .text-left {
        text-align: center !important;
    }
    .footer-logo img {
        height: auto;
    }
    section {
        padding: 0px;
    }
    .min-block-height {
        min-height: 275px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    #hero h2.new-qte br,
    .lan-ne-con-1 br,
    .new-land br {
        display: none;
    }
    .nCONNECT {
        background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_67_dyDk0iHAe.png") no-repeat top left;
        background-size: contain;
        padding: 0;
    }
    .nCONNECT h3 {
        font-weight: 700;
        font-size: 43px;
        line-height: 55px;
        color: #d40080;
    }
    .nCOLLABORATE {
        background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_68_YjGlvquDhT.png") no-repeat top right;
        background-size: contain;
        padding: 0;
    }
    .nCOLLABORATE h3 {
        font-weight: 700;
        font-size: 43px;
        line-height: 55px;
        color: #83c131;
    }
    .nSEARCH {
        background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_69_2pqD_k1uVa.png") no-repeat top left;
        background-size: contain;
        padding: 0;
    }
    .nSEARCH h3 {
        font-weight: 700;
        font-size: 43px;
        line-height: 55px;
        color: #0ab6b0;
    }
    .nBOOK {
        background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_70_TPpeP9ZrBp.png") no-repeat top right;
        background-size: contain;
        padding: 0;
    }
    .nBOOK h3 {
        font-weight: 700;
        font-size: 43px;
        line-height: 55px;
        color: #0287cd;
    }
    .nMANAGE {
        background: url("https://ik.imagekit.io/snowstormtech/sstmarketing/Asset_71_N6CFFoHqfJ.png") no-repeat top left;
        background-size: contain;
        padding: 0;
    }
    .nMANAGE h3 {
        font-weight: 700;
        font-size: 43px;
        line-height: 55px;
        color: #f18000;
    }
    .nCONNECT p,
    .nCOLLABORATE p,
    .nSEARCH p,
    .nBOOK p,
    .nMANAGE p {
        font-weight: 400;
        font-size: 22px;
        line-height: 35px;
    }
    .nCONNECT img,
    .nCOLLABORATE img,
    .nSEARCH img,
    .nBOOK img,
    .nMANAGE img {
        max-width: 100%;
    }
    .nCONNECT .text-right,
    .nCOLLABORATE .text-right,
    .nSEARCH .text-right,
    .nBOOK .text-right,
    .nMANAGE .text-right {
        text-align: right !important;
    }
    .nCONNECT .text-left,
    .nCOLLABORATE .text-left,
    .nSEARCH .text-left,
    .nBOOK .text-left,
    .nMANAGE .text-left {
        text-align: left !important;
    }
}

@media only screen and (min-device-width: 2000px) {
    p {
        font-size: 25px;
    }
    #hero h2 {
        font-size: 25px;
    }
    #hero h1,
    .section-title h2 {
        font-size: 58px;
        line-height: 100px;
        font-weight: 1000;
    }
    .btn-get-touch,
    .sidenav a,
    .copyright,
    .contact label,
    .form-control,
    .nav-menu a {
        font-size: 22px;
    }
    .subtext {
        font-size: 45px;
    }
    .footer-logo img {
        height: 120px;
    }
    .h3,
    h3,
    .team-new.to .info-box h3 {
        font-size: 32px;
    }
    .h5,
    h5 {
        font-size: 27px;
    }
    #hero .btn-get-started,
    .btn-get-started,
    .get-started-btn,
    .get-started-btn:visited {
        font-size: 25px;
        padding: 15px 50px;
        border-radius: 100px;
    }
    .t-green {
        font-size: 45px;
    }
    footer.contact ul li a {
        line-height: 60px;
        font-size: 25px;
    }
    #header {
        padding: 15px 0;
    }
    #header .logo img {
        max-height: 120px;
    }
    .nav-menu a {
        padding: 0 25px;
    }
    .nav-menu a {
        font-size: 28px;
    }
    .container {
        max-width: 75%;
    }
    .back-to-top i {
        font-size: 50px;
        width: 5rem;
        height: 5rem;
        border-radius: 1rem;
    }
    #hero.about {
        min-height: 80vh!important;
    }
    #hero {
        padding-top: 167px;
    }
    #hero.join,
    #hero.partner,
    #hero.programme {
        min-height: 750px!important;
    }
    ul.tlist li {
        /* background: url(https://ik.imagekit.io/snowstormtech/sstmarketing/Above-and-Beyond/tick_LpKElz0Pz.png) no-repeat left 11px; */
        font-size: 25px;
        background-position: 0px 10px;
    }
}
.thankyou_contact {    
    background-color: #23b573 !important;
    border-color: #23b573 !important;
}
.details_first.first_segment .registration-step-section {
    width: 100%;
    padding: 0;
    margin: 0;
}
.details_first.first_segment .registration-step-section ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.details_first.first_segment .registration-step-section ul li {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    margin: 0;
}
.details_first.first_segment .registration-step-section ul li .icon-block {
    width: 16rem;
    height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
}
.details_first.first_segment .registration-step-section ul li .icon-block .icon-box {
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin: 0 0 0.6rem;
}
.details_first.first_segment .registration-step-section ul li .icon-block p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5rem;
    padding: 0;
    margin: 0;
    text-align: center;
    min-height: 3rem;
}
.details_first.first_segment .registration-step-section ul li .connected-line {
    width: 13rem;
    height: 0.2rem;
    background: #c7c7c7;
    padding: 0;
    position: absolute;
    left: -6.5rem;
    top: -1.7rem;
}
.details_first.first_segment .registration-step-section ul li .connected-line.line-green {
    background: #39c577;
}
.details_first.first_segment {
    font-size: 1.4rem;
    line-height: 2rem;
}
.details_first.first_segment h3 {
    font-size: 2.2rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: #000000;
}
.details_first.first_segment .tankyou-txt {
    font-size: 1.6rem;
    line-height: 2rem;
    padding: 0 6rem;
}
@media (max-width: 767px){
    .details_first.first_segment .registration-step-section ul {    
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
     flex-direction: column;
   }
   .details_first.first_segment .registration-step-section ul li {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        padding: 0;
        margin: 0;
    }   
  .details_first.first_segment .registration-step-section ul li .icon-block {
        width: 100%;
        height: 5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        position: relative;
    }
   .details_first.first_segment .registration-step-section ul li .icon-block .icon-box {
     padding: 0;
     margin: 0 1rem 0 0;
   }
 
   .details_first.first_segment .registration-step-section ul li .connected-line {
    width: 0.1rem;
    height: 2.5rem;
    background: #c7c7c7;
    padding: 0;
    position: absolute;
    left: 1.5rem;
    top: -1.5rem;
    }
   .details_first.first_segment .registration-step-section ul li:after {
     display: none;
   }
   .details_first.first_segment .registration-step-section ul li .icon-block p{
      min-height: inherit;
   }
   .details_first.first_segment .registration-step-section ul li:first-child:after {
     background: #4cb558;
   }
   .details_first.first_segment .registration-step-section ul li:last-child:after{
      display:none;
   }
   .details_first.first_segment h3 {
        font-size: 2rem;
    }
 }
.thankyou-last{
    margin-bottom: 5rem;
}
.details_first.first_segment.box-wraper {
    border: 0.1rem solid #dedede;
    border-radius: 0.5rem;
    padding: 3rem 0 0;
    box-shadow: 0px 0px 10px 0px #d1d1d1;
}
