/**
 *
 * * Global overides
 *
 */

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "proxima-nova";
    src: url("../fonts/Proxima-Nova-Regular.otf") format("opentype")
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.ttf") format("opentype")
}

@font-face {
    font-family: "ll-brown";
    src: url("../fonts/Brown-Bold.ttf") format("opentype")
}

body {
    /* font-family: "Karla", sans-serif; */
    font-family: "Open Sans", sans-serif;
    color: var(--gray-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: #f8f8f8;
}


/**
 *
 * * Colors
 *
 */

:root {
    --primary: #1ca9ea;
    --secondary: #e84151;
    --gray: #898e91;
    --gray-darkest: #212529;
    --white: #fff;
    --black: #000;
    --radiius: 16px;
    --cardBG: #f0f0f0;
    --yellow: #fdb90c;
    --red: #e84151;
    --green: #40bb82;
    --blue: #1d648b;
    --headingColor: #4e5266;
}


/**
 *
 ** Button
 *
 */

.btn {
    --bg: #e84151;
    --bgHover: #e52a3c;
    border-radius: 100px;
    font-weight: normal;
    padding: 12px 20px;
    font-weight: bold;
}

.btn-primary {
    background-color: var(--bg);
    border-color: var(--bg);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(:disabled):active,
.btn-primary:not(:disabled):not(:disabled):active:focus {
    background-color: var(--bgHover);
    border-color: var(--bgHover);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(var(--bg), 0.5);
    box-shadow: 0 0 0 0.2rem rgba(var(--bg), 0.5);
}

.btn-lg {
    padding: 18px 36px;
}

.btn-link {
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 24px;
    color: var(--primary);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.btn-link .material-icons {
    margin-left: 8px;
    text-decoration: none;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-link:hover {
    color: var(--secondary);
}

.btn-link:hover .material-icons {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
}

.btn-link:focus,
.btn-link:hover:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-link:focus .material-icons,
.btn-link:hover:focus .material-icons {
    text-decoration: none;
}


/*=============================================
=            navbar /header            =
=============================================*/

.navbar {
    /* background-color: #fff; */
}

.navbar-brand {
    left: 0;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar-brand img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 50px;
    width: 160px;
}

.navbar .nav-link {
    padding: 6px 16px;
}

.navbar .nav-item--shop .nav-link {
    border: 2px solid var(--white);
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--white) !important;
    text-align: center;
    /* background-color: white; */
}

.navbar .nav-item--shop .nav-link:hover,
.navbar .nav-item--shop .nav-link:focus {
    background-color: var(--secondary);
    color: white !important;
    border: 1px solid var(--secondary);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 16px;
        padding-left: 16px;
    }
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-item.dropdown:hover .dropdown-menu,
    .navbar-light .navbar-nav .nav-item.dropdown.show .dropdown-menu {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

.navbar-light .navbar-nav .dropdown-menu {
    border: none;
    padding: 0;
    margin-bottom: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .dropdown-menu {
        display: block;
        background-color: var(--primary);
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
        visibility: hidden;
    }
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-item {
    text-transform: capitalize;
    padding: 0.5rem 1.5rem;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-light .navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-light .navbar-nav .dropdown-menu .dropdown-item:active,
.navbar-light .navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: var(--primary);
    color: white;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .dropdown-menu .dropdown-item {
        color: white;
    }
    .navbar-light .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: #db1b2d;
    }
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-item:not(:last-child) {
        margin-right: 16px;
    }
}

.navbar-light .navbar-nav .nav-item>.nav-link {
    text-transform: capitalize;
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--white);
}

.navbar-light .navbar-nav .nav-item:hover .nav-link {
    color: var(--gray-darkest);
}

.navbar-light .navbar-nav .nav-item.show .nav-link {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    font-size: 18px;
}

.dropdown-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dropdown-toggle:after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    font-family: "Material Icons";
    content: "\e313";
    border: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: -14px;
}

.dropdown.show .dropdown-toggle:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.dropdown:hover .dropdown-toggle:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: var(--primary);
}


/*=============================================
=            hero             =
=============================================*/

.hero {
    height: 550px;
    padding-bottom: 160px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* min-height: var(--maxHeight); */
}

.hero[data-background] {
    /* background: url("https://source.unsplash.com/1080x1080/?technology") no-repeat
    center center; */
    background-size: cover;
}

.hero-illustration {
    -webkit-transform: translateY(55%) rotate(2deg) scale(1.2);
    transform: translateY(55%) rotate(2deg) scale(1.2);
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero>.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hero-content {
    min-height: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-title,
.hero-subtitle {
    color: var(--gray-darkest);
}

.hero-title {
    color: var(--primary);
    font-size: 40px;
    line-height: normal;
}

@media (min-width: 600px) {
    .hero-title {
        font-size: 32px;
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: normal;
    font-weight: 300;
    color: #898e91;
    font-weight: 400;
}

@media (min-width: 600px) {
    .hero-subtitle {
        font-size: 16px;
    }
}

.hero-excerpt {
    color: var(--secondary);
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    font-weight: 300;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .hero-excerpt {
        font-size: 14px;
    }
}


/*=============================================
=            section            =
=============================================*/

.section {
    position: relative;
    z-index: 1;
    padding: 40px 0;
}

@media (min-width: 992px) {
    .section {
        padding: 80px 0;
    }
}

.section[data-background] {
    background-color: var(--black);
}

.section[data-background] .section-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    -o-object-fit: cover;
    object-fit: cover;
}

.section[data-background] .section-bg-testimonial {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-header {
    max-width: 900px;
    margin: 0 auto;
    /* margin-bottom: 40px; */
    text-align: center;
}

.section--light {
    background-color: #fff;
}

@media (min-width: 600px) {
    .section-title {
        font-size: 42px;
    }
}

.section-title {
    position: relative;
    margin-bottom: 32px;
    color: var(--primary);
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 50%;
    height: 2px;
    background-color: var(--secondary);
}

.section-title.text-center:after {
    margin: 0 auto;
}

.section-package {
    margin: 40px 0px;
}


/**
   *
   * img
   *
   */

.img-fluid.img-rounded {
    border-radius: var(--radiius);
    margin-top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.img-fluid.img-rounded:hover {
    margin-top: -5px;
    -webkit-box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.3);
}

.img-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.img-package {
    min-height: 300px;
}


/*=============================================
=            card            =
=============================================*/

.card {
    --color: var(--gray-dark);
    --radius: 16px;
    border: none;
    border-radius: var(--radius) var(--radius) 16px 16px;
    overflow: hidden;
}

.card-package {
    --radiuspackage: 60px;
    border-radius: var(--radiuspackage) var(--radiuspackage) 16px 16px !important;
}

.card-thumbnail {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.card-thumbnail-alt {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.card-thumbnail:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='71' viewBox='0 0 1440 71' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H60C120 0 240 -7.93487e-07 360 2.96758C480 5.82422 600 11.9258 720 19.2199C840 26.625 960 35.5 1080 35.5C1200 35.5 1320 26.625 1380 22.1875L1440 17.75V71H1380C1320 71 1200 71 1080 71C960 71 840 71 720 71C600 71 480 71 360 71C240 71 120 71 60 71H0V0Z' fill='white'/%3E%3C/svg%3E%0A");
    content: "";
    height: 20px;
    background-size: cover;
}

.card--has-shadow {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card--has-shadow:hover {
    -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3) !important;
}

.card-body {
    padding: 24px;
}

.card .card--hovered:hover .card-title:after {
    width: 100%;
}

.card .card-title {
    font-weight: bold;
    position: relative;
    color: var(--headingColor);
    font-size: 1rem;
    height: 30px;
}

.card .card-title a {
    color: inherit;
    text-decoration: none;
}

.card .card-text {
    color: var(--color);
}

.card .icon .material-icons {
    font-size: 50px;
    color: var(--primary);
}


/* Package */

.card-package .card-title {
    margin-bottom: 32px;
}

.card-package .card-title:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 50%;
    height: 2px;
    background-color: var(--secondary);
}


/* Break Section */

.section--break h2,
.section--break a {
    font-size: 1.5rem;
}

.section--break .call-btn {
    text-align: right;
}

.section--break .know-more-btn {
    text-align: center;
}

.ihs-break {
    padding: 20px 80px;
    margin-top: -10px;
    margin-bottom: -10px;
}

.ihs-break a {
    font-size: 18px;
}

@media only screen and (max-width: 600px) {
    .ihs-break {
        padding: 40px 0px;
    }
    .ihs-break .row div:nth-child(1) {
        padding: 0px 10px;
    }
    .ihs-break .row div:nth-child(2),
    .ihs-break .row div:nth-child(3) {
        text-align: center;
        margin: 8px 0px;
    }
    /* .svg-curve {
    display: none;
  } */
}

.ihs-break h2 {
    font-weight: 600;
}

.ihs-break h1 {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.ihs-break a {
    padding: 20px 30px;
    /* font-size: 28px; */
}


/*=============================================
  =            section  products            =
  =============================================*/

.section--products {
    margin-bottom: 80px;
}

.section--products .price {
    font-size: 18px;
    color: var(--red);
    font-weight: bold;
}

.section--products .card {
    margin-bottom: 32px;
    /*min-height: 484px;*/
    min-height: 425px;
}


/*=============================================
=            testimonials            =
=============================================*/

.slick-carousel-item {
    padding: 10px;
    outline: none;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (min-width: 993px) {
    .slick-carousel-item {
        -webkit-transform: scale(1);
        transform: scale(1);
        padding: 20px;
    }
}

.slick-carousel-item .card {
    background-color: #f4f4f4;
}

.slick-carousel-item.slick-center {
    z-index: 100;
    position: relative;
}

@media (min-width: 993px) {
    .slick-carousel-item.slick-center {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.slick-carousel-item.slick-center .card {
    background-color: #fff;
}

.slick-carousel .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (min-width: 993px) {
    .slick-carousel .slick-track {
        padding-bottom: 50px;
    }
}

.slick-carousel .slick-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 50px;
}

@media (max-width: 992px) {
    .slick-carousel .slick-list {
        padding: 20px;
    }
}

@media (max-width: 768) {
    .slick-carousel .slick-list {
        padding: 0;
    }
}

.slick-dots {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.slick-dots li button {
    all: unset;
    margin: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    text-indent: -9999px;
}

.slick-dots li.slick-active button {
    background-color: white;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: white;
    background-color: var(--primary);
    line-height: 1;
    border-radius: var(--radiius);
    cursor: pointer;
}

.slick-arrow.slick-prev {
    left: -16px;
}

.slick-arrow.slick-next {
    left: auto;
    right: -16px;
}

.slick-arrow .material-icons {
    font-size: 48px;
    line-height: 1;
}

.card--testimonials {
    --offset: 100px;
    margin-top: 50px;
}

@media (min-width: 600px) {
    .card--testimonials {
        margin-top: var(--offset);
    }
}

.card--testimonials .avatar {
    /* margin-top: calc((var(--offset) * -1) + 20px); */
    position: relative;
}

.card--testimonials .avatar:after {
    content: "";
    position: absolute;
    top: 100%;
    width: 50px;
    height: 2px;
    background-color: var(--gray);
}

.card--testimonials blockquote {
    max-height: 200px;
    /* overflow-y: auto; */
}

.section-testimonial {
    margin-bottom: unset !important;
}

.testimonial blockquote p {
    font-size: 12px;
}


/*=============================================
=            dealers            =
=============================================*/

.dealers-caption {
    margin-top: 30px;
    margin-bottom: 30px;
}

.dealers-caption hr {
    width: 90%;
}


/*=============================================
=            avatar            =
=============================================*/

.avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
}

.avatar-image {
    border: 4px solid #ffffff;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    overflow: hidden;
    width: var(--offset);
    height: var(--offset);
}

.avatar-meta {
    margin-top: 16px;
}

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


/* Form */

.section--form {
    padding: 40px 0px;
}

.section--form h2 {
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section--form h2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 30%;
    height: 2px;
    background-color: var(--secondary);
    margin: 0 auto;
}

.section--form .section-header {
    margin-bottom: 50px;
}

.testimonial-footer {
    background: transparent;
    padding: 0;
    padding-top: 16px;
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}


/**
  *
  * * Form
  *
  */

.form-group>label {
    text-transform: capitalize;
    font-weight: 600;
}

.form-label {
    font-size: 18px;
    font-weight: 600;
}


/* Footer */

.footer-bg {
    background-color: var(--primary);
    padding: 60px 30px 40px 30px;
}

.footer-bg h3 {
    margin-bottom: 35px;
}

.footer-bg p {
    margin-left: 10px;
}

.footer-bg a {
    color: unset !important;
}

.footer-bg a:hover {
    text-decoration: none;
}

.footer-bg .footer-title {
    font-weight: bold;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-bg .footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 30%;
    height: 3px;
    background-color: var(--secondary);
    /* margin: 0 auto; */
    margin-left: 4px;
}

.footer {
    text-align: center;
    margin-top: 30px;
}

.footer .material-icons {
    color: var(--secondary);
}

.footer .footer-caption {
    position: relative;
    display: inline-block;
}

.footer .footer-caption:after {
    /*content: "";*/
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    width: 50%;
    height: 2px;
    background-color: var(--gray-dark);
    margin: 0 auto;
}

.footer div:nth-child(2) {
    margin-top: 16px;
}

.footer .footer-caption a:hover {
    text-decoration: none;
}

.footer .footer-caption .social-links-div span {
    padding: 0px 4px;
}

.footer .footer-caption .social-links-div {
    margin-bottom: 8px;
}