@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    overflow-x: hidden;
}

p {
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #ee1b46;
}


/* Start Generic CSS */
.section {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 38px;
    font-weight: bold;
}

.btn-custom {
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    background-color: #e32350;
    border: 1px solid #e32350;
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: 0;
}
.btn-custom:hover {
    color: #ffffff;
    background-color: #2a3b8f;
    border-color: #2a3b8f;
}

.btn-custom-blue {
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    background-color: #2a3b8f;
    border: 1px solid #2a3b8f;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0;
	opacity: 1;
}
.btn-custom-blue:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #2a3b8f;
}
.tab-content .span-title {
    font-weight: 600;
    color: #ff1d6f;
}
/* End Generic CSS */

/* Start Navigation */
.ey-logo {
    max-width: 240px;
}
.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    color: #1A2C79;
    font-weight: 600;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:active {
    color: #ee1b46;
}
.navbar-light .navbar-nav .nav-link.active {
    color: #ee1b46;
}
.navbar-light .navbar-toggler {
  color: rgba(255, 255, 255,.9);
  border-color: rgba(0,0,0,0);
}
/* Dropdown */
.dropdown-menu {
    padding: 0;
    color: #ffffff;
    background-color: #ee1b46;
    border: 0px solid rgba(0, 0, 0, .15);
    border-radius: 0;
}

.dropdown-item {
    font-weight: 500;
    color: #fff;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    background-color: #1A2C79;
}

/* End Navigation */

/* Start Banner Section */
/*.banner-content {*/
/*    padding: 0 15%;*/
/*}*/
section.banner-section {
    margin-bottom: 80px;
}
.banner-title {
    margin-bottom: 20px;
}

.banner-title h1 {
    font-size: 42px;
    font-weight: bold;
}
/* End Banner Section */

/* Start Section One */
.section-one {
    background-color: #2a3b8f;
}

.section-description p.big {
    font-size: 24px;
    font-weight: 500;
}
/* End Section One */


/* Start Section Two */
.section-title h4 {
    font-weight: 600;
}
.section-two .section-img-content {
    padding-right: 5%;
}
.section-two .section-content {
    padding-left: 5%;
}
.section.section-two .section-description p {
    font-size: 16px;
}
/* End Section Two */


/* Start Section Three */
.section.section-three .container {
    opacity: 1;
    z-index: 2;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    min-height: 500px; 
    overflow: hidden;
}

.video-container video {
    /* Make video to at least 100% wide and tall */
    min-width: 100%; 
    min-height: 100%; 

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%,-50%);
} 

  
.overlay {
    background-color: #ff1d6f;
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 80px 0;
    box-sizing: border-box;
    z-index: 1;
}
/* End Section Three */

/* Start Section Three */
.card-custom-title h4,
.card-custom-title h5 {
    font-weight: 600;
}
/* End Section Three */


/* Start Features */
.section-features {
    padding-top: 80px;
    background: #fff8fb;
}
/* End Features */

/* Start Tabs One */  
section.tabs-one {
    background: #fff8fb;
    padding-bottom: 50px;
}
.act-tabs-two {
    padding-top: 80px;
}
section.tabs-one h3 {
    font-weight: bold;
    /* color: #2a3b8f; */
}
section.tabs-one .feat-high h6 {
    color: #2a3b8f;
    letter-spacing: 1.1px;
}
section.tabs-one ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
section.tabs-one ul li {
    padding: 0px 0px 16px 30px;
    position: relative;
    display: flex;
    align-items: center;
}
section.tabs-one .section-content ul li svg {
    color: #2a3b8f;
    position: absolute;
    left: 0;
}
section.tabs-one  h5 {
    font-weight: 600;
    margin-bottom: 15px;
}
section.tabs-one .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ff1d6f;
    background-color: #fff;
    border-color: transparent;
}
section.tabs-one .nav-tabs {
    border-bottom: transparent;
}
section.tabs-one li.nav-item {
    margin: 0 0 0 20px;
    flex: 1;
    background-color: #fff;
    border-radius: 0;
    padding: 12px 20px;
    font-size: 16px;
    color: #2a3b8f;
    text-align: left !important;
    transition: all ease-in-out .3
}
section.tabs-one li.nav-item:first-child {
    margin: 0;
}
section.tabs-one li.nav-item:hover {
    box-shadow: 0 12px 30px 0 rgba(0,0,0,.1);
}
section.tabs-one .nav-tabs .nav-link {
    border: 0px;
    font-weight: 600;
    padding: .5rem 0.75rem;
}
section.tabs-one .tab-pane {
    background: #fff;
    padding: 1rem 2rem;
}
section.tabs-one .nav-tabs .nav-item a svg {
    display: block;
    margin: 12px 0px;
}
section.tabs-one .nav-tabs .nav-item span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.2 !important;
    color: #6b7c8c;
}
/* End Tabs One */


/* Start Divider One */
.divider-one {
    background-color: #2a3b8f;
}
.divider-one a.btn-custom:hover {
    background: #fff;
    color: #2a3b8f;
}
/* End Divider One */

/* Start Divider Two */
/* .divider-two {
    background-color: #ff1d6f;
} */
.divider-two .container {
    opacity: 1;
    z-index: 2;
    position: relative;
}
/* End Divider Two */

/* Start Divider Three */
.divider-three {
    background-color: #2a3b8f;
}
.divider-three a.btn-custom:hover {
    background: #ffffff;
    color: #2a3b8f;
    border-color: #ffffff;
}
/* End Divider Three */

/* Start Section Five */
.section-five {
    /* background-color: #ff1d6f; */
    background: linear-gradient(rgba(255, 29, 111,.9), rgba(255, 29, 111,.9)), url("../images/CarCRMBG.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}
.section-five.five-two {
    /* background-color: #ff1d6f; */
    background: linear-gradient(rgba(255, 29, 111,.9), rgba(255, 29, 111,.9)), url("../images/CarCRMBG3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 120px 0;
}
.section-five p.big {
    font-size: 24px;
    font-weight: 500;
}
/* End Section Five */


/* Start Section Nine */
.section-nine {
    background: #2a3b8f;
}
.section-nine .description {
    height: 330px;
    padding-right: 24px;
    overflow-y: auto;
    position: absolute;
    color: #ffffff;
}
.section-nine .img-part {
    padding: 15px;
}
.section-nine .content-part {
    padding: 15px;
}
.section-nine  ul.icon-check {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.section-nine  ul.icon-check li {
    padding: 0px;
    position: relative;
    display: flex;
    align-items: center;
}
.section-nine ul.icon-check li svg {
    color: #ffffff;
    /* position: absolute; */
    left: 0;
    margin-right: 16px;
}
.owl-nav .owl-next, .owl-nav .owl-prev {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.owl-nav .owl-next {
    right: 0;
    display: flex;
    margin-right: -4%;
    font-size: 25px !important;
}
.owl-nav .owl-prev{
    left: 0;
    display: flex;
    margin-left: -4%;
    font-size: 25px !important;
}
button.owl-prev span, button.owl-next span {
    font-size: 90px;
    color: #ffffff;
}
.description::-webkit-scrollbar{width:8px}
.description::-webkit-scrollbar-thumb{background-color:rgba(237, 15, 84,.84);border-radius:10px;height:64px}
/* End Section Nine */


/* Start Section Ten */
.section-ten h3 {
    font-size: 1.75rem;
    font-weight: bold;
}
.section-ten ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.section-ten ul li {
    padding: 0px 0px 16px 30px;
    position: relative;
    display: flex;
    align-items: center;
}
.section-ten ul li svg {
    color: #2a3b8f;
    position: absolute;
    left: 0;
}
/* End Section Ten */

/* Start Section Eleven */
.section.section-eleven {
    padding: 0 0 80px;
}
.section-eleven h3 {
    font-size: 1.75rem;
    font-weight: bold;
}
.section-eleven ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.section-eleven ul li {
    padding: 0px 0px 16px 30px;
    position: relative;
    display: flex;
    align-items: center;
}
.section-eleven ul li svg {
    color: #2a3b8f;
    position: absolute;
    left: 0;
}
/* End Section Eleven */

/* Start Section Twelve */
.section.section-twelve {
    padding: 0 0 100px;
}
.section-twelve h3 {
    font-size: 1.75rem;
    font-weight: bold;
}
.section-twelve ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.section-twelve ul li {
    padding: 0px 0px 16px 30px;
    position: relative;
    display: flex;
    align-items: center;
}
.section-twelve ul li svg {
    color: #2a3b8f;
    position: absolute;
    left: 0;
}
/* End Section Twelve */

/* Start Section Accordion */
.section-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #ed0f54;
    font-weight: 600;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.section-accordion  .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.section-accordion .accordion-item {
    background-color: transparent;
    border: 0px solid rgba(0,0,0,.125);
    border-radius: 10px;
}
.section-accordion .accordion-item:first-of-type .accordion-button,
.section-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
}
.section-accordion .accordion-button {
    color: #ffffff;
    background-color: #2b3990;
    margin-bottom: 15px;
    border-radius: 10px;
    font-weight: 600;
}
.accordion-button::after {
    filter: invert(1) sepia(100%) grayscale(0);
}
/* End  Section Accordion */

/* Start Section Six */
section.section-six h6 {
    color: #2a3b8f;
    letter-spacing: 1.1px;
}
section.section-six h3 {
    font-weight: bold;
    /* color: #2a3b8f; */
}
section.section-six  .content-form {
    background: #ed0f54;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
}
.btnfrm button.btn-primary {
    background: #fff;
    border-color: #fff;
    color: #ed0f54;
    font-weight: 600;
}
.btnfrm button.btn-primary {
    color: #2a3b8f;

}
form.gitfrm input:focus,
.btnfrm button.btn-primary:focus {
    box-shadow: none;
}
form.gitfrm label {
    font-size: 14px;
}
d.submit {
    background-color: #fff;
    padding: 11px 36px 11px 36px;
    text-transform: capitalize;
    border-radius: 0px 0px 0px 0px;
    border: none;
    color: #ed0f54;
}
/* End Section Six */

/* Start Privacy Policy */
#privacy h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
/* End Privacy Policy */

/* Start Footer */
footer {
    padding: 80px 0 0;
    background: #192255;
    color: #fff;
}
.footer-logo.mb-4 img {
    max-width: 310px;
}
footer h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
footer p {
    font-size: 16px;
}
.cpy {
    border-top: 1px solid #ffffff24;
}
ul.social-links {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 32px;
    padding-left: 0;
    margin-left: 0;
}
ul.social-links ul li a:hover {
    color: #2a3b8f;
}
footer ul.contact-info {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
footer ul.contact-info li {
    padding: 0px 0px 16px 30px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
}
footer ul.contact-info li svg {
    color: #ff1d6f;
    position: absolute;
    left: 0;
    top: 5%;
    font-size: 27px;
}
/* End Footer */
  
/* Start Responsiveness */
@media only screen and (max-width: 480px) {

    .banner-content {
        padding: 15% 12%;
    }

    .section-one {
        padding: 80px 6%;
    }
    .section-title h2 {
        font-size: 32px;
    }

    .section-two .section-img-content {
        padding: 0px 6%;
    }
    .section-two .section-content {
        padding: 40px 6% 0;
    }


    .section-three .section-content {
        padding: 0 6%;
    }
    .section-three .section-description p.big {
        font-size: 20px;
        font-weight: 500;
    }
    .video-container video {
        top: 50%;
    }

    section.tabs-one {
        padding: 0 6%;
        padding-bottom: 40px;
    }
    section.tabs-one li.nav-item:first-child {
        margin-left: 0px;
        margin-bottom: 20px;
    }
    section.tabs-one li.nav-item {
        margin-left: 0px;
    }
    section.tabs-one li.nav-item {
        margin-bottom: 20px;
    }
    .tab-content img {
        margin-bottom: 40px;
    }
    
    .divider-one .section-content {
        padding: 0 6%;
    }
    .section-description p.big {
        font-size: 20px;
    }

    section.tabs-one.act-tabs-two {
        padding-top: 80px;
    }
    section.tabs-one .nav-tabs {
        display: block;
    }

    .divider-three .section-content {
        padding: 0 6%;
    }

    .section-five .section-content {
        padding: 0 6%;
    }
    
    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }
    
    .pad-eight-per {
        padding: 0px 8%;
    }
    
}
/* End Responsiveness */