/* FONT */

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url(../fonts/OpenSans-Italic.ttf);
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    src: url(../fonts/OpenSans-Regular.ttf);
}



@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&display=swap');

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}


/* BASE CSS */

body {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #000;
}

.main-header {
    height: 80px;
    background-color: #ffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    color: white;
}

.mobile-menu {
    display: none;
}

.mobile-menu svg {
    color: #ffffff;
    width: 24px;
}

.navbar-brand img {
    /* width: 105px; */

}

.navbar {
    --bs-navbar-padding-y: 0px;
}

.menu-link {
    margin-left: 20px;
    display: inline-flex;
    position: relative;
    align-items: center;
    font-size: 24px;
    list-style: 36px;
}

.menu-link:hover {
    transition: .5s ease-in;
    /* color: #005ea7; */
}

.menu-link svg {
    margin-right: 5px;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding: 16px;
}

.navbar-nav .nav-item a span {
    display: none;
}

.banner {
    /* position: relative;
    top: 90px; */
    margin-top: 80px;
    background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
}

.banner .container {
    display: flex;
    width: 100%;
    align-items: center;
}

.mobile-banner {
    display: none;
}

.banner-img {
    background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
    background-size: cover;
    height: 90vh;
    display: flex;
}

.banner-img img {
    max-height: 100%;
    max-width: 100%;
}

.banner-content {
    text-align: left;
    width: 42%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
}

.banner-content .section-title {
    font-size: 64px;
    color: #0076CE;
    line-height: 90px;
    font-weight: 900;
    font-style: italic;
}

.banner-content h2 {
    font-size: 38px;
    color: #444;
    line-height: 57px;
    margin-left: 5px;
}

.banner-content h3 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 300;
    color: #444;
    margin-left: 5px;
}

.Desktop_Banner {
    width: 58%;
}

.section-padding {
    /* padding-top: 25px; */
    /* margin-bottom: 60px; */
}

.form-section {
    padding-top: 25px;
}

.mobileview {
    display: none;
}

.section-title {
    font-size: 40px;
    color: #000;
    line-height: 60px;
    font-weight: 300;
}

.section-subtitle {
    font-size: 24px;
    color: #000;
    font-weight: 300;
    margin: 25px 0;
}

.form-section p {
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #6E6E6E;
}

.form-section p input {
    margin-right: 5px;
}

.field-button-container {
    text-align: right;
    margin-top: 35px;
}

.field {
    width: 100%;
    padding: 14px 12px;
    color: #6E6E6E;
    border: solid 1.5px #6E6E6E;
    font-weight: normal;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border-radius: 2px;
}

.field:focus {
    border-color: #6E6E6E;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 0px rgba(0, 0, 0, .075), 0 0 4px #6E6E6E;
    box-shadow: inset 0 1px 0px rgba(0, 0, 0, .075), 0 0 4px #6E6E6E;
}

.outline-button-dark {
    padding: 14px 10px;
    width: 100%;
    color: #005641;
    border: solid 1.5px #005641;
    max-width: 180px;
    background-color: transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.outline-button-dark:hover {
    color: #ffffff;
    background-color: #005641;
}

.outline-button-dark-blue:hover {
    color: #ffffff;
    background-color: #2c0c5b;
}

.outline-button-white {
    width: 100%;
    color: #444;
    border: solid 1.5px #444;
    padding: 15px 30px;
    max-width: 180px;
    background-color: transparent;
    margin-top: 15px;
    margin-left: 5px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mob {
    display: none;
}

.outline-button-white:hover {
    color: #ffffff;
    background-color: #2f2b2b;
}

.threeSec_wrap {
    background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
}

.threeSec_wrap .threetop {
    /* padding: 70px 0; */
}

.threeSec_wrap .threetop .bigimg img {
    width: 90%;
    max-width: 600px;
}

.threeSec_wrap .threetop ul {
    margin: 0;
    padding: 0;
}

.threeSec_wrap .threetop ul li {
    list-style-type: none;
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.threeSec_wrap .threetop ul li:last-child {
    margin-bottom: 0px;
}

.threeSec_wrap .threetop ul li .contenthree {
    width: calc(100% - 80px);
}

.threeSec_wrap .threetop ul li .contenthree h6 {
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
}

.threeSec_wrap .threetop ul li .contenthree p {
    font-weight: 300;
    font-size: 24px;
    color: #000000;
}

.threeSec_wrap .threetop ul li .contenthree p span {
    font-weight: 300;
    font-size: 20px;
    display: block;
}

.threeSec_wrap .threetop ul li .iconbox {
    width: 40px;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.threeSec_wrap .threetop ul li .contenthree.w-100 {
    width: 100%;
}

.threeSec_wrap .threetop h5 {
    font-size: 40px;
    color: #444;
    margin-bottom: 30px;
    font-weight: 300;
}

.slide-content {
    position: absolute;
    z-index: 8;
    height: 100%;
    top: 20%;
    left: 60%;
}

.slide-content-buttons {
    position: relative;
    left: 45%;
    top: 10%;

}

.tab-content .slide-content-buttons {
    position: relative;
    left: 9%;
    top: -29%;
}

.slide-content-buttons .brochure-link {
    display: flex;
    height: 50px;
}

.brochure-link svg {
    height: 24px;
}

.slide-control {
    position: absolute;
    bottom: 80%;
    left: auto;
    right: 5%;
    z-index: 7;
}

.slide-control svg {
    width: 32px;
    color: #dbdbdb;
    height: auto;
}

.carousel-control-prev {
    left: 60%;
    width: 24px;
}

.carousel-control-next {
    left: 65%;
    width: 24px;
}

/* .bg-image-details{
    background-image: url(../images/dark-white-bg.png);
    background-size: cover;
  } */
/*.bg-image-tab {
    background-image: url(../images/tab-image-one.png);
    z-index: 7;
    background-size: cover;
    justify-content: center;
}*/

.brochure-link {
    text-decoration: none;
    color: #222222;
}

.slide-content-tab {
    position: absolute;
    z-index: 7;
    height: 100%;
    width: 100%;
    top: 0;
    background-image: url(../assets/images/dark-white-bg.png);
}

.tab-link {
    font-size: 24px;
    width: 100%;
    /* background-color: transparent !important; */
    color: #ffffff;
}

.tab-link.active {
    background-color: #481DAA !important;
}

.tab-content>.active {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
}

.tab-content .section-title {
    color: #dbdbdb;
}

.tab-content p {
    color: #dbdbdb;
}


.offer-title {
    color: #444;
    font-size: 40px;
    padding-bottom: 35px;
    font-weight: 300;
}

.offer-bg {
    display: flex;
    background-color: #ffff;
}


.offer-bg .row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: 75%;
}

.offer-subtitle {
    font-size: 26px;
    text-align: center;
    color: #444;
    margin-top: 20px;
    font-weight: 300;
}

.offer-item {
    display: flex;
    flex-flow: column;
    width: 250px;
    height: auto;
    margin: 0px 10px;
    padding: 10x;
}

.text-white {
    color: #ffffff;
    text-align: center;
    padding-top: 30px;
}

.video-section {
    max-height: auto;
    background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
}

.video-section iframe {
    width: 100%;
    min-height: 80vh;
    height: auto;
    vertical-align: middle;
}

.video-section video {
    vertical-align: middle;
}

.footer {
    background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
}

.footer-links {
    display: flex;
    flex-flow: row;
    font-size: 12px;
    line-height: 17px;
    color: #444;
    padding-left: 0px;
    margin-bottom: 36px;
}

.footer-social {
    display: flex;
    flex-flow: row;
    font-size: 12px;
    color: #444;
    padding-left: 0px;
    align-items: center;
    justify-content: flex-end;
}

.footer-social a {
    margin-left: 30px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.footer-social a:hover svg path {
    fill: #0076CE;
}

.footer-links li {
    list-style-type: none;
}

.footer-links li a {
    color: #444;
    text-decoration: none;
    padding-left: 0px;
    font-size: 12px;
    line-height: 30px;
}

.footer-links .list-separator {
    font-size: 18px;
    padding: 0 10px;
}

.footer-links li a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.Terms_wrp {
    padding: 48px 0;
}

.Terms_wrp p {
    font-size: 32px;
    line-height: 48px;
    color: #444;
    font-weight: 300;
}

.Terms_wrp ul {
    padding: 0;
    padding-left: 0px;
}

.Terms_wrp ul li {
    font-size: 20px;
    line-height: 30px;
    color: #444;
    list-style: none;
    font-weight: 3000;
}

.Terms_wrp ul li a {
    color: #444;
}

.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffff;
    margin-bottom: 50px;
    padding: 15px;
}

.footer_bottom p {
    width: calc(100% - 268px);
    margin: 0;
}

.footer_bottom img {
    max-width: 218px;
    height: auto;
    margin-left: 40px;
}

.footer-icon {
    padding-left: 30px;
}

.footer-icon svg {
    height: 30px;
    width: 100%;
}

.footer-logo {
    /* padding: 130px 0; */
    /* width: 384px; */
    margin: auto;
    display: flex;
}

.footer-text {
    color: #000;
}

.footer-subtext {
    font-size: 12px;
    font-weight: 300;
}

.mt-20 {
    margin-top: 20px
}
.mt-24 {
    margin-top: 26px
}

.color-bg-dark {
    color: #dbdbdb;
}

.button-outline-grey {
    border: solid 1px #DBDBDB;
    color: #DBDBDB;
    background-color: transparent;
    height: 64px;
    width: 100%;
    padding: 10px;
    max-width: 180px;
}

.button-outline-grey:hover {
    background-color: #DBDBDB;
    color: #101010;
    transition: ease-in-out .25s;
}

.button-outline-grey a {
    color: #DBDBDB;
    text-decoration: none;
    background: transparent;
}

.button-outline-grey:hover a {
    color: #101010;
    transition: ease-in-out .25s;
}

#register {
    scroll-margin-top: 120px;
}

#myTab button {
    font-size: 22px;
    padding: 16px 30px;
}

.offer-item-div-content{
    padding-bottom: 100px;
}

 .line2-offer{
        margin-left: -20px;
      
        gap: 80px;

    }

/* **********Media queries ************* */

@media only screen and (max-width: 1500px) {
    .slide-content-buttons .brochure-link {
        display: flex;
        height: 50px;
        justify-content: flex-start;
        align-items: center;
    }
}

@media only screen and (max-width: 1024px) {
    .slide-content-buttons {
        position: relative;
        left: 4%;
        top: 3%;
    }

    .button-outline-grey {
        width: 100px;
        max-width: auto;
    }

}


@media only screen and (max-width: 992px) {
    .mb-15 {
        margin-bottom: 15px;
    }

    .slide-content {
        position: static;
        z-index: 8;
        padding: 30px 8px;
        background-color: #101010;
        color: #ffffff;
    }

    .slide-content-buttons {
        position: relative;
        left: 0;
        top: 10%;
    }

    .slide-content-buttons .brochure-link {
        display: flex;
        height: 50px;
        justify-content: center;
        align-items: center;
    }

    .slide-content-tab {
        position: static;
        z-index: 7;
        height: 100%;
        width: 100%;
        top: 0;
        background-image: url(../assets/images/dark-white-bg.png);
        /* height: 144px; */
        background-color: #101010;
    }

    .form-section p {
        width: 100%;
    }

    .tab-content {
        padding: 30px;
        min-height: 300px;
    }

    .tab-content .slide-content-buttons {
        position: relative;
        left: 0;
        top: -18%;
        /* bottom: 67%; */
    }

    .feature-bg-mob {
        display: none;
    }

    .banner-content .section-title {
        font-size: 48px;
        line-height: 58px;
    }

    .banner-content h3 {
        font-size: 16px;
        width: 40vw;
        line-height: 1.6;
    }

    .button-outline-grey {
        width: 100%;
        max-width: initial;
    }

}

@media only screen and (max-width: 768px) {

    .desktop {
        display: none;
    }

    .mob {
        display: block;
        width: 90px;
    }

    .mb-15 {
        margin-bottom: 15px;
    }

    .banner-content .section-title {
        font-size: 40px;
        line-height: 50px;
    }

    .banner-content h3 {
        font-size: 16px;
        width: 45vw;
        line-height: 1.6;
    }

    .navbar-nav .nav-item a span {
        display: block;
        font-size: 16px;
        line-height: 24px;
    }

    .navbar-nav .nav-item a font,
    .navbar-nav .nav-item:first-child {
        display: none;
    }

    .navbar-brand img {
        width: 55px;
    }

    .navbar-nav {
        padding: 0px;
    }

    .navbar {
        padding: 7px 15px !important;
    }

    .main-header {
        height: 60px;
    }


    body {
        font-size: 16px;
    }

    .section-title {
        font-size: 30px;
        text-align: center;
        padding: 15px 0px;
    }

    .threeSec_wrap .threetop h5 {
        font-size: 32px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 16px;
        font-weight: 300;
    }

    .field {
        /*height: 42px;*/
    }


    .banner-content {
        width: 350px;
        margin: 0 auto;
    }

    .mobile-menu {
        display: flex;
        background-color: #222222;
    }

    .mobile-menu .navbar-brand {
        margin: 0;
        margin-left: 12%;
    }

    .mobile-menu .navbar-nav {
        flex-direction: column;
    }

    .banner {
        /* display: none; */
    }

    .mobile-banner {
        display: flex;
        flex-flow: column;
        margin-top: 60px;
        background: linear-gradient(116.82deg, rgba(198, 198, 198, 0.59) 0%, rgba(238, 238, 238, 0.6) 100%);
        padding: 0 0 40px 0;
    }

    .banner-content {
        padding: 30px;
    }

    .banner-content .section-title {
        width: 100%;
    }

    .banner-contentb {
        text-align: right;
    }

    .banner-contentb h3 {
        font-size: 20px;
        width: 100%;
        line-height: 30px;
        color: #444;
        margin-bottom: 20px;
        margin-top: 30px;
        text-align: left;
    }


    .section-padding {
        /* margin-bottom: 30px; */
        /* margin-top: 30px;
        padding: 20px; */
    }

    .field-button-container {
        display: flex;
        justify-content: flex-end;
        margin-top: 5px;
    }

    .field-button {
        max-width: 80px;
    }

    .outline-button-white {
        /*height: 42px;*/
        padding: 12px 25px;
        /*width: 138px;*/

    }

    .slide-content {
        padding: 30px;
    }

    .slide-content-tab {
        position: static;
        background-color: #222222;
        background-image: none;
        width: auto;
    }

    .carousel-control-next {
        left: 80%;

    }

    .carousel-control-prev {
        left: 66%;
    }

    .brochure-link {
        color: #ffffff;
        margin-bottom: 15px;
    }

    .button-outline-grey {
        margin-bottom: 15px;
    }

    .feature-bg-mob {
        display: none;
    }

    .tab-link {
        font-size: 20px;
        width: 100%;
        background-color: transparent !important;
        color: #ffffff;
    }

    .tab-content {
        /* background-color: #101010; */
        /* color: #ffffff; */
        position: static;
        z-index: 8;
        /* padding: 30px; */
    }

    .bg-image-tab {
        margin-right: 0px !important;
    }

    .slide-content-buttons {
        position: static;
        padding-top: 30px;
    }

    .tab-content .slide-content-buttons {
        position: static;
        display: none;
    }


    .offer-item {
        display: flex;
        flex-flow: column;
        max-width: 200px;
        height: auto;
        margin-top: 20px;
        
    }

    .offer-subtitle {
        font-size: 12px;
        line-height: 18px;
        text-align: center;
    }

    .offer-bg {
        padding: 3px;
        height: 100%;
    }

    .text-white {
        padding-top: 15px;
    }

    .video-section {
        /* max-height: 220px;*/
    }

    .video-section iframe {
        width: 100%;
        min-height: 36vh;
        height: 100%;
    }

    .footer-logo {
        /* padding: 100px 0; */
        width: 100%;
        margin: auto;
    }

    .footer-links {
        white-space: wrap;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-left: 0;
        margin: 0;
    }

    .footer-links li {
        font-size: 16px;
        padding-bottom: 15px;
        display: flex;
        justify-content: center;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-text li {
        white-space: wrap;
    }

    .footer-social {
        display: flex;
        flex-flow: row;
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
        padding-bottom: 40px;
        justify-content: center;
    }

    .footer-social svg {
        height: 32px;
        width: auto;
    }

    .footer-social a {
        margin: 0 22px;
    }

    .footer-icon {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-links li a {
        font-size: 10px;
        line-height: 15px;
    }

    .footer_bottom {
        flex-wrap: wrap;
        background: transparent;
    }

    .footer_bottom p {
        width: 100%;
        padding-bottom: 30px;
    }

    .footer_bottom img {
        margin: 0;
    }

    .list-separator {
        line-height: 15px;
    }

    .banner-content h2 {
        font-size: 24px;
        text-align: center;
        line-height: 36px;
    }

    .threeSec_wrap .threetop {
        padding: 40px 0 0px 0;
    }

    .threeSec_wrap .threetop ul li .contenthree h6 {
        font-size: 18px;
        line-height: 27px;
    }

    .threeSec_wrap .threetop ul li .contenthree p {
        font-size: 16px;
        padding-bottom: 0px;
    }

    .threeSec_wrap .threetop ul li .contenthree p span {
        font-size: 14px;
    }

    .threeSec_wrap .threetop ul li .iconbox {
        width: 30px;
        margin-right: 20px;
    }

    .threeSec_wrap .threetop ul li .iconbox svg {
        height: 28px;
    }

    .threeSec_wrap .threetop .row .col-md-12:last-child {
        margin-top: 20px;
    }

    .mobileview {
        display: block;
    }

    .dsktopview {
        display: none;
    }

    .Terms_wrp p {
        font-size: 22px;
        line-height: 33px;
        color: #444;
        /* padding-bottom: 5px; */
    }

    .Terms_wrp ul li {
        font-size: 12px;
        line-height: 18px;
        color: #444;
        list-style: none;
    }




    .navbar-brand img {
        width: 90px;
    }

    .d-flex.justify-content-between {
        flex-direction: column-reverse;
    }

      .even-model.justify-content-between {
        flex-direction: column;
    }

    .offer-bg  .d-flex.justify-content-between {
        flex-direction: column;
    }

    .offer-item-div{
        align-items: center;
    }

    .line2-offer{
        border-top: solid 1px rgb(192, 192, 192);
        margin: 50px 0;
        flex-direction: column;
        margin-top: 10px; 
        padding-top: 20px;
        gap: 20px;
    }

    .offer-item-div-content{
        padding: 0;
    }

    .offer-item-div-content p{
       font-size: 18px;
    }

}

@media only screen and (max-width: 599px) {
    .section-padding {
        /* padding: 24px 3px 0 3px; */
    }

    .offer-item {
        max-width: 50%;
    }

    .offer-item img {
        max-width: 200px;
        margin: 0 auto;
    }

        #myTab button {
        font-size: 16px;
        padding: 8px;
    }
}


a {
    cursor: pointer;
}

.accordion-button {
    background-color: #212121 !important;
    color: #fff !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.footer-div {
    background: #7E7E7E;
}

.footer-content {
    font-size: 12px;
    padding: 10px 50px;
}

.footer-content:nth-child(1) {
    background-color: #eef5f3;
}

.footer-content:nth-child(2) {
    background-color: #d7e9e3;
}

.footerwrap .footerLogo img {
    width: 71px;
    min-width: 192px;
}

.footerwrap .footerLogo {
    background: #ddd;
    width: 235px;
    padding: 3px 10px 0 23px;
    display: inline-flex;
    align-items: center;
    line-height: 0;
    position: relative;
    font-size: 0;
}

@media screen and (max-width: 767px) {
    .footerwrap .footerLogo {
        width: 235px;
    }

    .footerwrap .footerLogo img {
        min-width: 192px;
    }

}

@media screen and (min-width: 767px) and (max-width: 1250px) {
    .footerwrap .footerLogo {
        width: 365px;
    }

    .footerwrap .footerLogo img {
        min-width: 288px;
    }
}

ul li {
    list-style-type: none;
}


.dell-footer {
    display: flex;
    background: #7E7E7E;
}

.dell-footer .footer-menu {
    display: flex;
    justify-content: space-between;
    width: 70%;
    align-items: center;
    height: 67px;
}

.dell-footer .footer-menu li a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 300;
}

.dell-footer .footer-logo {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding-right: 26px;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .dell-footer {
        flex-direction: column;
    }

    .dell-footer .footer-menu {
        display: flex;
        justify-content: start;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }

    .dell-footer .footer-menu li {
        width: 92%;
        padding: 8px 10px;
        border-bottom: 1px solid #fff;
        margin: auto;
    }

    .dell-footer .footer-menu li a {
        text-decoration: none;
    }

    .dell-footer .footer-logo {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        align-items: center;
        padding: 20px 10px;
    }

}


.threetop {
    background-color: #ffff;
}

.offer-item {
    display: flex;
    align-items: center;
}

.offer-item img {
    width: 150px;
}

.offer-item p {
    font-size: 18px;
}


#myTab {
    justify-content: center;
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translate(-50%);

}

#myTab .nav-item {
    width: fit-content;
}

.threeSec_wrap .threetop ul li {
    font-size: 24px;
    font-weight: 300;
}



#myTab button {
    font-weight: 500;
    color: #636363;
    border: none;
}

#myTab button:hover {
    background: #F5F6F7;
    border-radius: 0px;
}

#myTab button.active {
    color: #0672CB;
}

.nav-link {
    position: relative;
}

.nav-item {
    margin-bottom: 0 !important;
}

#myTab .nav-link.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #0672CB;
    border-bottom: 1px solid #0672CB;
    position: absolute;
    left: 0;
    bottom: 0;

}

.tab-pane {
    padding-top: 65px;
}

.first-half {
    justify-content: center;
    display: flex;
    align-items: center;
}

.banner-img1 img {
    width: 100%;
}

.slick-next::before {
    color: #fff;
    opacity: 1;
}


#video-inspiron {
    display: none;
}

.blue {
    display: none;
}

.first-half li:before {
    content: "·";
    font-size: 90px;
    vertical-align: middle;
    line-height: 20px;
    top: 10px;
    position: relative;
}

/* .main-header, .dell-footer{
background-color: #005641;
color: #fff;
} */



.main-header small {
    color: #0972cb;
}

.slick-next:before {
    content: url(../images/icons/right.svg) !important;
}

.slick-prev:before {
    content: url(../images/icons/left.svg) !important;

}

.slick-next.slick-arrow {
    display: none;
}