@font-face {
  font-family: "ProximaNovRegular";
  src: url(../fonts/proximanova-regular.ttf);
}
@font-face {
  font-family: "ProximaNovaBold";
  src: url(../fonts/Proxima-Nova-Bold.otf);
}
@font-face {
  font-family: "ProximaNovaMedium";
  src: url(../fonts/Proxima-Nova-Medium.otf);
}
:root{
    --primary-color:#2263AC;
    --secondary-color:#E73A51;
    --blue-dark:#002856;
    --text-color:#000;
    --text-font-size:16px;
    --text-line-height:24px;
    --text-dark:#000;
}
*{
    box-sizing: border-box;
    word-wrap: break-word;
}
body{
    margin: 0;
    font-size: var(--text-font-size);
    line-height: var(--text-line-height);
    color: var(--text-color);
    font-family: 'ProximaNovRegular', sans-serif;
    overflow-x: hidden;
}
img{
    max-width: 100%;
}
h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    font-family: "ProximaNovaBold";
}
h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    color: #2263ac;
    font-family: "ProximaNovaBold";
}
h3{
    font-size:22px;
    line-height: 32px;
    font-family: "ProximaNovaBold";
}
h6{
    font-size: 18px;
    line-height: 100%;
    font-family: "ProximaNovaBold";
}
section {
    padding: 40px 0;
}
a{
    text-decoration: none;
    display: inline-block;
    color: var(--primary-color);
}
b, strong, .fw-bold{
    color: #2263ac;
    font-family: "ProximaNovaBold";
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.text-secondary{
    color: var(--secondary-color) !important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.bg-secondary{
    background-color: var(--secondary-color) !important;
}
.text-color{
    color: var(--text-color);
}
.bg-blue-dark{
    background-color: var(--blue-dark);
}
.f-10{
    font-size: 10px;
}
.f-12{
    font-size: 12px;
}
.f-16{
    font-size: 16px;
}
.f-14{
    font-size: 14px;
}
.f-24{
    font-size: 20px;
}
.f-24{
    font-size: 24px;
}
.f-18{
    font-size: 18px;
}
.lh-120{
    line-height: 120%;
}
.f-22{
    font-size: 22px;
}
.f-20 {
    font-size: 20px;
}
.lh-32{
    line-height: 32px;
}
.lh-height{
    line-height: 24px;
}
.fw-300 {
    font-weight: 300 !important;
}
.fw-500 {
    font-family: ProximaNovaMedium !important;
}
.fw-700{
    font-family: ProximaNovaBold;
}
.text-italic{
    font-style: italic;
}
.btn {
    border-radius: 5px;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    border-color: #2263ac;
    padding: 8px 40px;
    font-family: ProximaNovaBold;
    font-size: 20px;
}
.form-control {
    padding: 10px 15px;
    border: 1px solid #AFAFAF;
    box-shadow: none !important;
}
.btn:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color);
    color: #fff !important;
}
.header-blue-col::before {
    position: absolute;
    top: 0;
    right: 40px;
    width: 10000%;
    height: 75px;
    background: #2263ac;
    content: "";
    border-bottom-right-radius: 8px;
}
.header-blue-col::after {
    position: absolute;
    top: 0;
    right: -10px;
    width: 100px;
    height: 75px;
    background: #2263ac;
    content: "";
    border-bottom-right-radius: 8px;
    transform: skew(-30deg);
}
.logo {
    width: 180px;
    margin-bottom: -40px;
    background-color: #fff;
    padding: 0 10px;
    transition: .3s
}
.sticky .logo {
    margin-bottom: 0;
    width: 117px;
}
.sticky {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 9999999;
}
td {
    background: #F1C7D0 !important;
    padding: 10px 25px !important;
    border: 3px solid #fff !important;
}
.banner {
    background-image: url(../img/banner-bg.jpg);
    background-size: cover;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-position: left;
}
.bg-light-pink {
    background-color: #FCC8CF;
}
.bg-red-gradient {
    background: linear-gradient(180deg, #9F2838 0%, #E73950 100%);
}
.bg-blue-gradient {
    background: linear-gradient(180deg, #0C3C6C 0%, #11579C 100%);
}
.footer {
    background: linear-gradient(180deg, #9F2838 0%, #E73950 100%);
}
.banner-form-box {
    max-width: 360px;
    margin: 20px auto 0;
    position: relative;
    z-index: 9999;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
}
.form-close {
    background-color: #fff;
    z-index: 1000000000000000;
    border-radius: 50%;
    width: 31px;
    height: 31px;
    cursor: pointer;
    color: black;
    position: absolute;
    top: -40px;
    font-size: 18px;
    right: 50%;
    text-align: center;
    align-items: center;
    display: inline-block;
    left: 50%;
    line-height: 35px;
    transform: translateX(-50%);
    min-width: 31px;
}
.z-index-2{
    z-index: 2;
}
.video-thumbnail-wrapper {
    max-height: 480px;
    overflow: hidden;
    overflow-y: auto;
    border: none;
}
.video-thumbnail-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}
.video-thumbnail-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.video-thumbnail-wrapper::-webkit-scrollbar {
    width: 6px;
}
.nexus-video-play img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    min-width: 90px;
}
.sticky-whats-app {
    position: fixed;
    bottom: 25px;
    right: 25px;
}
.fa-star {
    color: #ffdf00;
}
i.fa-brands.fa-facebook-f, .google-review {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    font-size: 26px;
    transition: .3s;
    color: #2263ac;
}
.btn-fixed {
    position: fixed;
    left: 15px;
    bottom: 30px;
    box-shadow: 0 1px 3px #fff;
    padding: 8px 20px;
    opacity: 0;
    transition: .3s;
    visibility: hidden;
}
.btn-active{
    opacity: 1;
    visibility: visible;
}
.header {
  position: sticky;
  top: 0;
  padding: 10px 16px;
  background: #555;
  color: #f1f1f1;
}
@media screen and (min-width:992px){
    .f-lg-33{
        font-size: 33px;
    }
    .f-lg-40 {
        font-size: 40px;
    }
    .lh-lh-50{
        line-height: 50px;
    }
    .header-call-icon {
        width: 330px;
    }
    .f-lg-20{
        font-size: 20px;
    }
    .f-lg-28{
        font-size: 28px;
    }
}
@media screen and (max-width:991.98px){
    .tab-pane{
        display: block !important;
        opacity: 1 !important;
    }
    .tab-content {
        display: flex;
        overflow-x: scroll;
    }
    .tab-content .tab-pane{
        min-width: 80%;
    }
    .tab-content::-webkit-scrollbar  {
        opacity: 0;
    }
}
@media screen and (max-width:767px){
    .tab-content .tab-pane:last-child {
        padding-right: 0;
    }
    .tab-content .tab-pane {
        padding-left: 0;
        padding-right: 20px;
    }
    :root{
        --text-font-size:18px;
        --text-line-height:28px;
    }
    body{
        font-size: var(--text-font-size);
        line-height: var(--text-line-height);
    }
    section {
        padding: 20px 0;
    }
    h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .f-sm-22 {
        font-size: 22px;
    }
    .f-sm-20{
        font-size: 20px;
    }
    .banner {
        min-height: 170px;
        background-color: #fff;
        background-size: 100% 190px;
        background-repeat: no-repeat;
        background-position: top;
    }
    h1 {
        font-size: 20px;
        line-height: 28px;
    }
    .btn {
        padding: 8px 30px;
        font-size: 18px;
    }
    iframe{
        height: 200px;
    }
    .bg-red-gradient img, .bg-blue-gradient img {
        width: 30px;
    }
    .bg-red-gradient p, .bg-blue-gradient p{
        font-size: 16px;
        line-height: 120%;
    }
    td {
        padding: 5px 15px !important;
    }
    .logo {
        width: 140px;
        margin-bottom: -20px;
        margin-left: auto;
    }
    .header-blue-col::before {
        right: 15px;
        height: 100%;
    }
    .header-blue-col::after {
        right: -10px;
        width: 50px;
        height: 100%;
    }
    .f-sm-15 {
        font-size: 15px;
    }
    .lh-sm-2{
        line-height: 120%;
    }
    .sticky-whats-app {
        bottom: 15px;
        right: 15px;
        width: 60px;
    }
    i.fa-brands.fa-facebook-f, .google-review{
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .sticky .logo {
        width: 95px;
    }
}