@font-face {
  font-family: Poppins;
  font-weight: 100;
  src: url("./fonts/Poppins-Thin.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 200;
  src: url("./fonts/Poppins-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 300;
  src: url("./fonts/Poppins-Light.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 400;
  src: url("./fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 500;
  src: url("./fonts/Poppins-Medium.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 600;
  src: url("./fonts/Poppins-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 700;
  src: url("./fonts/Poppins-Bold.ttf") format("truetype");
}

@font-face {
  font-family: Poppins;
  font-weight: 800;
  src: url("./fonts/Poppins-ExtraBold.ttf") format("truetype");
}

:root{
    --theme-font-family: "Poppins";
    --fa-brand:"Font Awesome 6 Brands";
    --fa-icon:"Font Awesome 6 Free";
    --font-size-1:40px;
    --font-size-2:30px;
    --font-size-3:27px;
    --font-size-4:25px;
    --font-size-5:23px;
    --font-size-6:20px;
    --font-size-7:18px;
    --font-size-t:16px;
    --font-size-s:14px;
    --row-gap:100px;
    --side-gap:100px;
    --inner-row-gap:35px;
    --inner-side-gap:35px;
    --inner-large-row-gap:50px;
    --inner-large-side-gap:50px;
    --map-height:400px;
    --white-color:#FFFFFF;
    --black-color:#000000;
    --theme-color:#E52635;
    --transition-effect:all 0.3s ease-in-out;
    --transition-out-effect:all 0.3s ease-out;
    --transition-in-effect:all 0.3s ease-in;
    --gsap-effect:all 0.5s ease-out;
    --border-radius: 30px;
}

@media only screen and (max-width:767.98px) {
    :root{
        --font-size-1:30px;
        --font-size-2:27px;
        --font-size-3:25px;
        --font-size-4:23px;
        --font-size-5:21px;
        --font-size-6:19px;
        --font-size-7:18px;
        --row-gap:70px;
        --side-gap:15px;
        --inner-row-gap:25px;
        --inner-side-gap:15px;
        --inner-large-row-gap:35px;
        --inner-large-side-gap:15px;
        --map-height:300px;
        --border-radius: 15px;
    }
}


/*Customized widget - Floating Buttons (HTML)*/
.floating-button{
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 80px;
    right: 19px;
    font-size: 20px;
    background-color: #4F6ACA;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.floating-button *{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger{
    background-color: #4F6ACA;
    /* animation: 2.5s wiggle ease infinite; */
    /* animation-delay: 1s; */
    width: auto;
    min-width:50px;
}

.floating-button:not(.float-btn-trigger){
    opacity: 0;
}

.floating-button.float-btn-trigger .icon-trigger{
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    animation: 2.5s wiggle ease infinite;
    animation-delay: 1s;
    position: relative;
}

.floating-button.float-btn-trigger .chat-with-us {
    padding-inline: 0 0;
    font-size: 16px;
    text-transform: capitalize;
    overflow: hidden;
    text-indent:-100px;
    transform: scale(0);
    transform-origin: 100% 50%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.floating-button.float-btn-trigger .chat-with-us.pop {
    padding-inline: 15px 0;
    text-indent:0;
    transform: scale(1);
}

.floating-button.float-btn-trigger #open-float{
    opacity: 1;
}
.floating-button.float-btn-trigger #close-float{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(0deg);
    opacity: 0;
}

.floating-button.floating-button_mail{background-color: rgba(0, 114, 198, 1);}
.floating-button.floating-button_phone{background-color: rgba(220, 16, 16, 1);}
.floating-button.floating-button_whatsapp{background-color: rgba(37, 211, 102, 1);}

/*when toogle*/
.floating-button.float-btn-trigger.toogle .icon-trigger{
    animation: none;
}

.floating-button.toogle:not(.float-btn-trigger){
    opacity: 1;
}

.floating-button.float-btn-trigger.toogle #open-float{
    opacity: 0;
}
.floating-button.float-btn-trigger.toogle #close-float{
    opacity: 1;
    transform: translate(-50%,-50%) rotate(180deg);
}

.floating-button.floating-button_mail.toogle{bottom:140px;}
.floating-button_phone.toogle{bottom: 200px;}
.floating-button_whatsapp.toogle{bottom:260px;}

/*animation for trigger*/
@keyframes wiggle {
  0% {
    transform: scale(1),rotate(0);
  }
  9.375% {
    transform: scale(1.1) rotate(0);
  }
  18.75% {
    transform: scale(1.1) rotate(-3deg);
  }
  28.125% {
    transform: scale(1.1) rotate(20deg);
  }
  37.5% {
    transform: scale(1.1) rotate(-15deg);
  }
  46.875% {
    transform: scale(1.1) rotate(5deg);
  }
  56.25% {
    transform: scale(1.1) rotate(-1deg);
  }
  65.625% {
    transform: scale(1.1) rotate(0);
  }
  75% {
    transform: scale(1) rotate(0);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

/*when mobile only*/
@media only screen and (max-width: 767.98px) {
    .floating-button{
        bottom:10px;
        right: 15px;
    }

    .floating-button.floating-button_mail.toogle{bottom:70px;}
    .floating-button_phone.toogle{bottom: 130px;}
    .floating-button_whatsapp.toogle{bottom:190px;}
    
    #side-contact {
        position: fixed;
        background: #fff;
        width: 100%;
        height: 70px;
        bottom: 0;
        right: -100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        z-index: 999;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        /*padding-right: 70px;*/
    }
    
    #side-contact.toogle {
        right: 0;
    }
    
    #side-contact a.floating-button:not(.float-btn-trigger) {
        position: initial;
        opacity:1;
    }

    .floating-button.float-btn-trigger .chat-with-us.pop {
        padding-inline: 15px 0;
        text-indent:0;
        transform: scale(1);
        animation: none;
    }

    .floating-button.float-btn-trigger.toogle .chat-with-us.pop {
        padding-inline: 0 0;
        text-indent:-100px;
        transform: scale(0);
    }
    
}

/*container width*/
@media only screen and (min-width: 768px) {

    #header [data-row]>.ct-container,
    #footer [data-row]>.ct-container {
        width: auto;
        margin-left: 100px;
        margin-right: 100px;
       
    }

    #main > .ct-container,
    body.single #main > [class*="ct-container"],
    body.archive #main > [class*="ct-container"] {
        width: calc(100% - (100px *2));
      }
    #main .ct-container-full {
        padding-left: calc(100px + 15px);
        padding-right: calc(100px + 15px);
    }

}

.row-gap-m {
  margin-top: var(--gap) !important;
  margin-bottom: calc(var(--gap) - 35px) !important;
}

.row-gap-mt {
  margin-top: var(--gap) !important;
}

.row-gap-mb {
  margin-bottom: calc(var(--gap) - 35px) !important;
}

/*add padding to vc_column-inner - with background color*/
.inner-fill-padding.vc_col-has-fill > div {
  --padding: 35px 15px 0;
  padding: var(--padding) !important;
}

.vc_row.wpb_row.vc_inner.vc_row-has-fill {
  margin-left: 0;
  margin-right: 0;
}

/*full width row with no padding*/
.row-full-rp.vc_row-no-padding > div,
.row-full-lp.vc_row-no-padding > div {
  padding-left: 15px;
  padding-right: 15px;
}

/*row full width + no padding + column apply bg color*/
[data-vc-stretch-content*="true"][data-vc-full-width*="true"].vc_row-no-padding
  > .vc_col-has-fill
  > div {
  padding: 50px 15px 15px;
}

@media only screen and (min-width: 768px) {
  .inner-fill-padding.vc_col-has-fill > div {
    --padding: 35px 30px 0;
  }

  /*full width row + no padding*/
  .row-full-rp.vc_row-no-padding > div:last-child {
    padding-right: var(--gap);
  }
  .row-full-lp.vc_row-no-padding > div:first-child {
    padding-left: var(--gap);
  }

  /*row full width + no padding + column apply bg color*/
  [data-vc-stretch-content*="true"][data-vc-full-width*="true"].vc_row-no-padding
    > .wpb_column.vc_col-has-fill
    > div {
    padding-left: 50px;
    padding-right: 50px;
  }
  [data-vc-stretch-content*="true"][data-vc-full-width*="true"].vc_row-no-padding
    > .wpb_column.vc_col-has-fill:first-child
    > div {
    /*padding-left: var(--gap);*/
  }
  [data-vc-stretch-content*="true"][data-vc-full-width*="true"].vc_row-no-padding
    > .wpb_column.vc_col-has-fill:last-child
    > div {
    padding-right: var(--gap);
  }
}

/* margin-top ----------------------------------------------------------------*/
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 1px !important;
}
.mt-2 {
  margin-top: 2px !important;
}
.mt-3 {
  margin-top: 3px !important;
}
.mt-4 {
  margin-top: 4px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mt-6 {
  margin-top: 6px !important;
}
.mt-7 {
  margin-top: 7px !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mt-9 {
  margin-top: 9px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-45 {
  margin-top: 45px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-55 {
  margin-top: 55px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mt-70 {
  margin-top: 70px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.mt-85 {
  margin-top: 85px !important;
}
.mt-90 {
  margin-top: 90px !important;
}
.mt-95 {
  margin-top: 95px !important;
}
.mt-100 {
  margin-top: 100px !important;
}

/* margin-bottom--------------------------------------------------------------*/
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 1px !important;
}
.mb-2 {
  margin-bottom: 2px !important;
}
.mb-3 {
  margin-bottom: 3px !important;
}
.mb-4 {
  margin-bottom: 4px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.mb-6 {
  margin-bottom: 6px !important;
}
.mb-7 {
  margin-bottom: 7px !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.mb-9 {
  margin-bottom: 9px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-45 {
  margin-bottom: 45px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-55 {
  margin-bottom: 55px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mb-85 {
  margin-bottom: 85px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-95 {
  margin-bottom: 95px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}

/* margin-left--------------------------------------------------------------*/
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 1px !important;
}
.ml-2 {
  margin-left: 2px !important;
}
.ml-3 {
  margin-left: 3px !important;
}
.ml-4 {
  margin-left: 4px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.ml-6 {
  margin-left: 6px !important;
}
.ml-7 {
  margin-left: 7px !important;
}
.ml-8 {
  margin-left: 8px !important;
}
.ml-9 {
  margin-left: 9px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.ml-45 {
  margin-left: 45px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.ml-55 {
  margin-left: 55px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.ml-70 {
  margin-left: 70px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.ml-80 {
  margin-left: 80px !important;
}
.ml-85 {
  margin-left: 85px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.ml-95 {
  margin-left: 95px !important;
}
.ml-100 {
  margin-left: 100px !important;
}

/* margin-right--------------------------------------------------------------*/
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 1px !important;
}
.mr-2 {
  margin-right: 2px !important;
}
.mr-3 {
  margin-right: 3px !important;
}
.mr-4 {
  margin-right: 4px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mr-6 {
  margin-right: 6px !important;
}
.mr-7 {
  margin-right: 7px !important;
}
.mr-8 {
  margin-right: 8px !important;
}
.mr-9 {
  margin-right: 9px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-45 {
  margin-right: 45px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mr-55 {
  margin-right: 55px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mr-70 {
  margin-right: 70px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mr-80 {
  margin-right: 80px !important;
}
.mr-85 {
  margin-right: 85px !important;
}
.mr-90 {
  margin-right: 90px !important;
}
.mr-95 {
  margin-right: 95px !important;
}
.mr-100 {
  margin-right: 100px !important;
}

/* padding - all ------------------------------------------------------------*/
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 1px !important;
}
.p-2 {
  padding: 2px !important;
}
.p-3 {
  padding: 3px !important;
}
.p-4 {
  padding: 4px !important;
}
.p-5 {
  padding: 5px !important;
}
.p-6 {
  padding: 6px !important;
}
.p-7 {
  padding: 7px !important;
}
.p-8 {
  padding: 8px !important;
}
.p-9 {
  padding: 9px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-15 {
  padding: 15px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.p-50 {
  padding: 50px !important;
}
.p-55 {
  padding: 55px !important;
}
.p-60 {
  padding: 60px !important;
}
.p-65 {
  padding: 65px !important;
}
.p-70 {
  padding: 70px !important;
}
.p-75 {
  padding: 75px !important;
}
.p-80 {
  padding: 80px !important;
}
.p-85 {
  padding: 85px !important;
}
.p-90 {
  padding: 90px !important;
}
.p-95 {
  padding: 95px !important;
}
.p-100 {
  padding: 100px !important;
}

/* padding-top ---------------------------------------------------------------*/
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 1px !important;
}
.pt-2 {
  padding-top: 2px !important;
}
.pt-3 {
  padding-top: 3px !important;
}
.pt-4 {
  padding-top: 4px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pt-6 {
  padding-top: 6px !important;
}
.pt-7 {
  padding-top: 7px !important;
}
.pt-8 {
  padding-top: 8px !important;
}
.pt-9 {
  padding-top: 9px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pt-65 {
  padding-top: 65px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pt-75 {
  padding-top: 75px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pt-85 {
  padding-top: 85px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pt-95 {
  padding-top: 95px !important;
}
.pt-100 {
  padding-top: 100px !important;
}

/* padding-bottom ------------------------------------------------------------*/
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 1px !important;
}
.pb-2 {
  padding-bottom: 2px !important;
}
.pb-3 {
  padding-bottom: 3px !important;
}
.pb-4 {
  padding-bottom: 4px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pb-6 {
  padding-bottom: 6px !important;
}
.pb-7 {
  padding-bottom: 7px !important;
}
.pb-8 {
  padding-bottom: 8px !important;
}
.pb-9 {
  padding-bottom: 9px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pb-65 {
  padding-bottom: 65px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pb-75 {
  padding-bottom: 75px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pb-85 {
  padding-bottom: 85px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pb-95 {
  padding-bottom: 95px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}

/* padding-left ------------------------------------------------------------*/
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 1px !important;
}
.pl-2 {
  padding-left: 2px !important;
}
.pl-3 {
  padding-left: 3px !important;
}
.pl-4 {
  padding-left: 4px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pl-6 {
  padding-left: 6px !important;
}
.pl-7 {
  padding-left: 7px !important;
}
.pl-8 {
  padding-left: 8px !important;
}
.pl-9 {
  padding-left: 9px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pl-65 {
  padding-left: 65px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pl-75 {
  padding-left: 75px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pl-85 {
  padding-left: 85px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pl-95 {
  padding-left: 95px !important;
}
.pl-100 {
  padding-left: 100px !important;
}

/* padding-right ------------------------------------------------------------*/
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 1px !important;
}
.pr-2 {
  padding-right: 2px !important;
}
.pr-3 {
  padding-right: 3px !important;
}
.pr-4 {
  padding-right: 4px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.pr-6 {
  padding-right: 6px !important;
}
.pr-7 {
  padding-right: 7px !important;
}
.pr-8 {
  padding-right: 8px !important;
}
.pr-9 {
  padding-right: 9px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.pr-65 {
  padding-right: 65px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.pr-75 {
  padding-right: 75px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.pr-85 {
  padding-right: 85px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.pr-95 {
  padding-right: 95px !important;
}
.pr-100 {
  padding-right: 100px !important;
}

/*mobile padding and margin*/
@media only screen and (max-width: 767.98px) {
  .mb-65 {
    margin-bottom: 35px !important;
  }
  .mb-75,
  .mb-80,
  .mb-85,
  .mb-90,
  .mb-95,
  .mb-100 {
    margin-bottom: 70px !important;
  }
  .mt-65 {
    margin-top: 35px !important;
  }
  .mt-75,
  .mt-80,
  .mt-85,
  .mt-90,
  .mt-95,
  .mt-100 {
    margin-top: 70px !important;
  }
  .mr-20,
  .mr-25,
  .mr-30,
  .mr-35,
  .mr-40,
  .mr-45,
  .mr-50,
  .mr-55,
  .mr-60,
  .mr-65,
  .mr-70,
  .mr-75,
  .mr-80,
  .mr-85,
  .mr-90,
  .mr-95,
  .mr-100 {
    margin-right: 15px !important;
  }
  .ml-20,
  .ml-25,
  .ml-30,
  .ml-35,
  .ml-40,
  .ml-45,
  .ml-50,
  .ml-55,
  .ml-60,
  .ml-65,
  .ml-70,
  .ml-75,
  .ml-80,
  .ml-85,
  .ml-90,
  .ml-95,
  .ml-100 {
    margin-left: 15px !important;
  }
  .pb-65 {
    padding-bottom: 35px !important;
  }
  .pb-75,
  .pb-80,
  .pb-85,
  .pb-90,
  .pb-95,
  .pb-100 {
    padding-bottom: 70px !important;
  }
  .pt-65 {
    padding-top: 35px !important;
  }
  .pt-75,
  .pt-80,
  .pt-85,
  .pt-90,
  .pt-95,
  .pt-100 {
    padding-top: 70px !important;
  }
  
  .pr-45,
  .pr-50,
  .pr-55,
  .pr-60,
  .pr-65,
  .pr-70,
  .pr-75,
  .pr-80,
  .pr-85,
  .pr-90,
  .pr-95,
  .pr-100 {
    padding-right: 15px !important;
  }
  .pr-20,
  .pr-25,
  .pr-30,
  .pr-35,
  .pr-40,
  .pl-60 {
      padding-right: 0 !important;
  }
  
  
  .pl-45,
  .pl-50,
  .pl-55,
  .pl-65,
  .pl-70,
  .pl-75,
  .pl-80,
  .pl-85,
  .pl-90,
  .pl-95,
  .pl-100 {
    padding-left: 15px !important;
  }
  
  .pl-20,
  .pl-25,
  .pl-30,
  .pl-35,
  .pl-40,
  .pl-60 {
      padding-left: 0 !important;
  }

  /*apply on mobile only*/
  /*margin-top*/
  .mobile-mt-0 {
    margin-top: 0 !important;
  }
  .mobile-mt-1 {
    margin-top: 1px !important;
  }
  .mobile-mt-2 {
    margin-top: 2px !important;
  }
  .mobile-mt-3 {
    margin-top: 3px !important;
  }
  .mobile-mt-4 {
    margin-top: 4px !important;
  }
  .mobile-mt-5 {
    margin-top: 5px !important;
  }
  .mobile-mt-6 {
    margin-top: 6px !important;
  }
  .mobile-mt-7 {
    margin-top: 7px !important;
  }
  .mobile-mt-8 {
    margin-top: 8px !important;
  }
  .mobile-mt-9 {
    margin-top: 9px !important;
  }
  .mobile-mt-10 {
    margin-top: 10px !important;
  }
  .mobile-mt-15 {
    margin-top: 15px !important;
  }
  .mobile-mt-20 {
    margin-top: 20px !important;
  }
  .mobile-mt-25 {
    margin-top: 25px !important;
  }
  .mobile-mt-30 {
    margin-top: 30px !important;
  }
  .mobile-mt-35 {
    margin-top: 35px !important;
  }
  .mobile-mt-40 {
    margin-top: 40px !important;
  }
  .mobile-mt-45 {
    margin-top: 45px !important;
  }
  .mobile-mt-50 {
    margin-top: 50px !important;
  }
  .mobile-mt-55 {
    margin-top: 55px !important;
  }
  .mobile-mt-60 {
    margin-top: 60px !important;
  }
  .mobile-mt-65 {
    margin-top: 65px !important;
  }
  .mobile-mt-70 {
    margin-top: 70px !important;
  }

  /*margin-bottom*/
  .mobile-mb-0 {
    margin-bottom: 0 !important;
  }
  .mobile-mb-1 {
    margin-bottom: 1px !important;
  }
  .mobile-mb-2 {
    margin-bottom: 2px !important;
  }
  .mobile-mb-3 {
    margin-bottom: 3px !important;
  }
  .mobile-mb-4 {
    margin-bottom: 4px !important;
  }
  .mobile-mb-5 {
    margin-bottom: 5px !important;
  }
  .mobile-mb-6 {
    margin-bottom: 6px !important;
  }
  .mobile-mb-7 {
    margin-bottom: 7px !important;
  }
  .mobile-mb-8 {
    margin-bottom: 8px !important;
  }
  .mobile-mb-9 {
    margin-bottom: 9px !important;
  }
  .mobile-mb-10 {
    margin-bottom: 10px !important;
  }
  .mobile-mb-15 {
    margin-bottom: 15px !important;
  }
  .mobile-mb-20 {
    margin-bottom: 20px !important;
  }
  .mobile-mb-25 {
    margin-bottom: 25px !important;
  }
  .mobile-mb-30 {
    margin-bottom: 30px !important;
  }
  .mobile-mb-35 {
    margin-bottom: 35px !important;
  }
  .mobile-mb-40 {
    margin-bottom: 40px !important;
  }
  .mobile-mb-45 {
    margin-bottom: 45px !important;
  }
  .mobile-mb-50 {
    margin-bottom: 50px !important;
  }
  .mobile-mb-55 {
    margin-bottom: 55px !important;
  }
  .mobile-mb-60 {
    margin-bottom: 60px !important;
  }
  .mobile-mb-65 {
    margin-bottom: 65px !important;
  }
  .mobile-mb-70 {
    margin-bottom: 70px !important;
  }

  /*margin-left*/
  .mobile-ml {
    margin-left: 15px !important;
  }

  /*margin-right*/
  .mobile-mr {
    margin-right: 15px !important;
  }

  /*padding-all*/
  .mobile-p-0 {
    padding: 0 !important;
  }
  .mobile-p-1 {
    padding: 1px !important;
  }
  .mobile-p-2 {
    padding: 2px !important;
  }
  .mobile-p-3 {
    padding: 3px !important;
  }
  .mobile-p-4 {
    padding: 4px !important;
  }
  .mobile-p-5 {
    padding: 5px !important;
  }
  .mobile-p-6 {
    padding: 6px !important;
  }
  .mobile-p-7 {
    padding: 7px !important;
  }
  .mobile-p-8 {
    padding: 8px !important;
  }
  .mobile-p-9 {
    padding: 9px !important;
  }
  .mobile-p-10 {
    padding: 10px !important;
  }
  .mobile-p-15 {
    padding: 15px !important;
  }
  .mobile-p-20 {
    padding: 20px !important;
  }
  .mobile-p-25 {
    padding: 25px !important;
  }
  .mobile-p-30 {
    padding: 30px !important;
  }
  .mobile-p-35 {
    padding: 35px !important;
  }
  .mobile-p-40 {
    padding: 40px !important;
  }
  .mobile-p-45 {
    padding: 45px !important;
  }
  .mobile-p-50 {
    padding: 50px !important;
  }
  .mobile-p-55 {
    padding: 55px !important;
  }
  .mobile-p-60 {
    padding: 60px !important;
  }
  .mobile-p-65 {
    padding: 65px !important;
  }
  .mobile-p-70 {
    padding: 70px !important;
  }

  /*padding-top*/
  .mobile-pt-0 {
    padding-top: 0 !important;
  }
  .mobile-pt-1 {
    padding-top: 1px !important;
  }
  .mobile-pt-2 {
    padding-top: 2px !important;
  }
  .mobile-pt-3 {
    padding-top: 3px !important;
  }
  .mobile-pt-4 {
    padding-top: 4px !important;
  }
  .mobile-pt-5 {
    padding-top: 5px !important;
  }
  .mobile-pt-6 {
    padding-top: 6px !important;
  }
  .mobile-pt-7 {
    padding-top: 7px !important;
  }
  .mobile-pt-8 {
    padding-top: 8px !important;
  }
  .mobile-pt-9 {
    padding-top: 9px !important;
  }
  .mobile-pt-10 {
    padding-top: 10px !important;
  }
  .mobile-pt-15 {
    padding-top: 15px !important;
  }
  .mobile-pt-20 {
    padding-top: 20px !important;
  }
  .mobile-pt-25 {
    padding-top: 25px !important;
  }
  .mobile-pt-30 {
    padding-top: 30px !important;
  }
  .mobile-pt-35 {
    padding-top: 35px !important;
  }
  .mobile-pt-40 {
    padding-top: 40px !important;
  }
  .mobile-pt-45 {
    padding-top: 45px !important;
  }
  .mobile-pt-50 {
    padding-top: 50px !important;
  }
  .mobile-pt-55 {
    padding-top: 55px !important;
  }
  .mobile-pt-60 {
    padding-top: 60px !important;
  }
  .mobile-pt-65 {
    padding-top: 65px !important;
  }
  .mobile-pt-70 {
    padding-top: 70px !important;
  }

  /*padding-bottom*/
  .mobile-pb-0 {
    padding-bottom: 0 !important;
  }
  .mobile-pb-1 {
    padding-bottom: 1px !important;
  }
  .mobile-pb-2 {
    padding-bottom: 2px !important;
  }
  .mobile-pb-3 {
    padding-bottom: 3px !important;
  }
  .mobile-pb-4 {
    padding-bottom: 4px !important;
  }
  .mobile-pb-5 {
    padding-bottom: 5px !important;
  }
  .mobile-pb-6 {
    padding-bottom: 6px !important;
  }
  .mobile-pb-7 {
    padding-bottom: 7px !important;
  }
  .mobile-pb-8 {
    padding-bottom: 8px !important;
  }
  .mobile-pb-9 {
    padding-bottom: 9px !important;
  }
  .mobile-pb-10 {
    padding-bottom: 10px !important;
  }
  .mobile-pb-15 {
    padding-bottom: 15px !important;
  }
  .mobile-pb-20 {
    padding-bottom: 20px !important;
  }
  .mobile-pb-25 {
    padding-bottom: 25px !important;
  }
  .mobile-pb-30 {
    padding-bottom: 30px !important;
  }
  .mobile-pb-35 {
    padding-bottom: 35px !important;
  }
  .mobile-pb-40 {
    padding-bottom: 40px !important;
  }
  .mobile-pb-45 {
    padding-bottom: 45px !important;
  }
  .mobile-pb-50 {
    padding-bottom: 50px !important;
  }
  .mobile-pb-55 {
    padding-bottom: 55px !important;
  }
  .mobile-pb-60 {
    padding-bottom: 60px !important;
  }
  .mobile-pb-65 {
    padding-bottom: 65px !important;
  }
  .mobile-pb-70 {
    padding-bottom: 70px !important;
  }

  /*padding-left*/
  .mobile-pl-15 {
    padding-left: 15px !important;
  }

  /*padding-right*/
  .mobile-pr-15 {
    padding-right: 15px !important;
  }
}

/*adjust width / column gap -for desktop and tablet*/
@media only screen and (min-width: 768px) {
  .width-85 {
    width: 85% !important;
  }
  .width-80 {
    width: 80% !important;
  }
  .width-75 {
    width: 75% !important;
  }
  .width-70 {
    width: 70% !important;
  }
  .width-65 {
    width: 65% !important;
  }
  .width-60 {
    width: 60% !important;
  }
  .width-55 {
    width: 55% !important;
  }
  .width-50 {
    width: 50% !important;
  }
  .width-45 {
    width: 45% !important;
  }
  .width-40 {
    width: 40% !important;
  }

  .margin-auto {
    margin-left: auto;
    margin-right: auto;
  }
  .col-gap-10 > .wpb_column:not(:last-child) {
    padding-right: 10px;
  }
  .col-gap-10 > .wpb_column:not(:first-child) {
    padding-left: 10px;
  }

  .col-gap-15 > .wpb_column:not(:last-child) {
    padding-right: 15px;
  }
  .col-gap-15 > .wpb_column:not(:first-child) {
    padding-left: 15px;
  }

  .col-gap-20 > .wpb_column:not(:last-child) {
    padding-right: 20px;
  }
  .col-gap-20 > .wpb_column:not(:first-child) {
    padding-left: 20px;
  }

  .col-gap-25 > .wpb_column:not(:last-child) {
    padding-right: 25px;
  }
  .col-gap-25 > .wpb_column:not(:first-child) {
    padding-left: 25px;
  }

  .col-gap-30 > .wpb_column:not(:last-child) {
    padding-right: 30px;
  }
  .col-gap-30 > .wpb_column:not(:first-child) {
    padding-left: 30px;
  }
}

/*adjust column width for different screen*/
@media only screen and (max-width: 991px) {
  .col-lg-4 > .wpb_column {
    width: calc(100% / 3);
  }
  .col-lg-6 > .wpb_column {
    width: 50%;
  }
  .col-lg-12 > .wpb_column {
    width: 100%;
  }
  .col-lg-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 767.98px) {
  .col-md-6 > .wpb_column {
    width: 50%;
  }
  .col-md-12 > .wpb_column {
    width: 100%;
  }
  /*reverse column*/
  .col-md-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}


#header [data-row]>.ct-container {
    position: relative;
}
/*#header [data-row]>.ct-container::before {*/
/*    content: '';*/
/*    height: 99999px;*/
/*    width: 1px;*/
/*    background-color: red;*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/

/*#header [data-row]>.ct-container::after {*/
/*    content: '';*/
/*    height: 99999px;*/
/*    width: 1px;*/
/*    background-color: red;*/
/*    position: absolute;*/
/*    right: 0;*/
/*}*/

#footer [data-row] > .ct-container {
    padding-bottom:15px;
}


.red {
    color: #E52635 !important;
    font-weight:600 !important;
}

.white {
    color: #FFFFFF;
    font-weight:600 !important;
}
.black {
    color: #000000;
    font-weight:500 !important;
}

.fit-content {
    width:fit-content !important;
}

.min-wid-200 > .vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-round.vc_btn3-style-custom,
.min-wid-200 > .vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-round.vc_btn3-style-outline-custom{
    min-width: 200px;
}

.whatsapp-us-btn > .vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-round.vc_btn3-style-custom {
    padding-left: 40px;
    background-image: none !important;
}

/*.whatsapp-us-btn > .vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-round.vc_btn3-style-custom::before {*/
/*  content: "\f232"; */
/*  position: absolute;*/
/*  top: 50%;*/
/*  transform:translateY(-53%);*/
/*  left: 30px; */
/*  font-size: 20px;*/
/*  font-family:"font awesome 6 brands";*/
/*  font-weight:900;*/
/*}*/



.close-btn > .pum-close.popmake-close {
    box-shadow:none;
    text-shadow:none;
    background-color:none;
    color:#000000;
}

.dsc-text{
    color:#000000;
    font-weight:400;
}

.font-weight-300 {
    font-weight:300 !important;
}

.font-weight-400 {
    font-weight:400 !important;
}


.font-weight-500 {
    font-weight:500 !important;
}


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


.font-weight-700 {
    font-weight:700 !important;
}

.hero-section.is-width-constrained{
    display:none;
}

.of-sc {
    max-height: 400px;
    overflow-y: scroll;
    scrollbar-width: none !important;
}

.car-btm-right{
    position: absolute;
    bottom: -15%;
    right: -12%;
    width:50%;
}


.scale-icon {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.scale-icon > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row  > .wpb_column > .vc_column-inner > .wpb_wrapper > p {
    font-size:25px;
}

.pt-00 > .wpb_column.vc_column_container.vc_col-sm-12 > .vc_column-inner {
    padding:0px !important;
}

.clip-row {
    max-width: 700px;
    margin: auto;
}


.icon-size img{
    max-height: 75px;
    min-height:75px;
    width:auto;
    max-width:100px;
    object-fit:contain;
    align-items: center;
    justify-content: center;
}

.border-r-25 {
    border-radius:25px;
}




.dot-border-1 > .wpb_column.vc_column_container:not(:last-child){
    border-right: 1px dashed  #fff;
}

.dot-border-2 > .wpb_column.vc_column_container{
    border-bottom: 1px dashed  #fff;
}


.dot-border-b-2 > .vc_tta-tabs-container{
    border-bottom: 1px solid #CECECE;
}

.dot-border-r-2  >  .vc_tta-tabs-container > .vc_tta-tabs-list > .vc_tta-tab:not(:last-child){
    border-right: 1px solid  #CECECE;
}

.number-row .number-p .wpb_single_image img {
    max-height: 70px;
    width: auto;
}

@media only screen and (min-width:768px) {
    .number-row {
        position:relative;
    }
    .number-row .number-p {
        position:absolute;
        right:-85px;
        width:fit-content;
        top:50%;
        transform:translateY(-50%)
    }

    #Promotions > .wpb_column > .vc_column-inner {
        padding-left:100px;
        padding-top:100px;
    }
    .sr7-bullets.hermes_copy82.sr7-ndh.sr7-nphc.sr7-npvb{
        bottom:60px !important;
        transform:translate(-50%) !important;
    }    
    .t-size-18{
        font-size:18px;
    }
}

/*Stop animation on mobile*/
@media only screen and (max-width: 767.98px) {
  body .wpb_animate_when_almost_visible {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation:none;
}
}

@media only screen and (max-width: 767.98px) {
    
    #footer [data-row] > .ct-container [data-column] > .ct-widget > img {
        width:auto;
        height:60px !important;
    }
    
    #footer [data-row] > .ct-container [data-column] > .widget_text > .textwidget  > h6 {
        font-size:20px !important;
    }
    
    .dot-border-1 > .wpb_column.vc_column_container {
        border-right: none !important;

    }
    .dot-border-1 > .wpb_column.vc_column_container:not(:last-child) {
        border-bottom:1px dashed  #fff;
    }
    .number-p {
        width:25%;
    }
    .number-row{
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 20px;
    }
    .number-row .number-p .wpb_single_image img {
        max-height: 80px;
    }
    .of-sc{
        max-height:400px;
    }
    
    .custom-tab > .vc_tta-panels-container > .vc_tta-panels > .vc_active > .vc_tta-panel-heading > .vc_tta-panel-title > a {
        color:#E52635 !important;
    }
    
    
    .custom-tab > .vc_tta-panels-container > .vc_tta-panels > .vc_tta-panel > .vc_tta-panel-heading {
        background-color: transparent !important;
    }
    
     .custom-tab > .vc_tta-panels-container > .vc_tta-panels > .vc_tta-panel > .vc_tta-panel-heading > .vc_tta-panel-title > a {
        color: #888888;
        text-align:left;
        font-weight:400;
     }
     
     
    .dot-border-b-2 > .vc_tta-panels-container > .vc_tta-panels > .vc_tta-panel > .vc_tta-panel-heading {
    border-bottom: 1px solid #CECECE;
    }

    
    .shape-left:before,
    .shape-right:before{
        display:none !important;
    }
    #header .ct-container,
    #footer>div>.ct-container {
        width: calc(100% - 30px);
    }

    .wpb_wrapper > .h2,
    .wpb_wrapper > .h3{
        font-size:27px;
    }
    
    #Promotions {
        flex-direction: column-reverse;
    }
    
    .x2-gap {
        
    }
    
    .sr7-bullets.hermes_copy82.sr7-ndh.sr7-nphc.sr7-npvb{
        bottom:40px !important;
        transform:translate(-50%) !important;
    }
    
    #Features:before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        position: absolute;
        display: block;
        opacity:30%;
        inset: 0;
    }
    
    .scale-icon {
            background-color: rgb(0 0 0 / 90%) !important;
    }
    
}

@media only screen and (max-width: 479.98px){
    .car-btm-right{
        position: absolute;
        bottom: -70px;
        right: -15px;
    width:60%;
    }
    
    .of-sc {
        margin-bottom:70px;
    }
    
}

.car-height{
    min-height:400px
}

.no-margin > .wpb_column > .vc_column-inner > .wpb_wrapper > .vc_row  {
    margin-left:0;
    margin-right:0;
}

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

.z--1 {
    z-index: -1 !important;
}

.text-p{
    min-height:87px;
}

/*.number-p{*/
/*    position:absolute;*/
/*    right: -9%;*/
/*}*/

.shape-left,
.shape-right{
    position:relative;
}

.shape-left:before {
    content: '';
	width: 200px;
	height: 100%;
	transform: skew(-20deg);
    background-color: #E52635;
    position: absolute;
    left: 15%;
    top:0%;
    display:block;
}


.shape-right:before {
    content: '';
	width: 200px;
	height: 100%;
	transform: skew(-20deg);
    background-color: #E52635;
    position: absolute;
    right: 15%;
    top:0%;
    display:block;
    z-index:1;
}

.lift > .vc_row > .wpb_column {
    z-index:9;
}

.custom-tab > .vc_tta-tabs-container > .vc_tta-tabs-list > .vc_tta-tab {
    width:50%;
}

.custom-tab > .vc_tta-tabs-container > .vc_tta-tabs-list > .vc_tta-tab> a{
    background-color: transparent !important;
    color: #888888;
    text-align:left;
}

.custom-tab > .vc_tta-tabs-container > .vc_tta-tabs-list > .vc_tta-tab> a:hover {
        background-color: transparent !important;
}

.custom-tab > .vc_tta-tabs-container > .vc_tta-tabs-list > .vc_tta-tab.vc_active> a{
    background-color: transparent !important;
    color: #E52635 !important;
}

.menu-main-menu-container > .widget-menu {
    display:flex;
}

.menu-main-menu-container > .widget-menu > li:not(:last-child){
    margin-right:10px;
}

.menu-main-menu-container > .widget-menu > li:not(:first-child):before{
    content: '|';
    margin-right:10px;
}

.menu-main-menu-container > .widget-menu > .menu-item  > a:hover{
    color:#000000;
}

.header-menu-1.menu-container > .menu > .menu-item.menu-item-type-custom > a {
    color:#000000;
}

.ct-footer [data-column] > .widget_text,
.ct-footer [data-column] > .ct-widget{
    margin-top:20px !important;
}

.bg {
    color: #FFFFFF;
    font-size: 20px;
    background-color: #000000;
    padding: 7px;
    margin: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.bg.fa-brands.fa-facebook-f {
    padding-left:11.25px;
    padding-right:11.25px;
}

.bg.fa-brands.fa-instagram,
.bg.fa-brands.fa-tiktok{
    padding-left:8.75px;
    padding-right:8.75px;
}

.bg.fa-brands.fa-x-twitter{
    padding-left:7.5px;
    padding-right:7.5px;
}

.bg.fa-brands.fa-youtube{
    padding-left:6.25px;
    padding-right:6.25px;
}

.scale-icon > div > div > div {
    margin: 15px;
}

.all-btn > .vc_general.vc_btn3 {
    border-width:1.3px;
    line-height:1;
    padding:10px 35px;
    display:block;
    background-image:none;
    font-size:14px;
}

.justify-text {text-align: justify !important;}
.justify-text > .wpb_wrapper > ul > {
    text-align: justify !important;
    
}

.wpb_wrapper > ul{
    padding-left:20px;
}


/*contact form*/
.form  {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 15px;
}

.form > div {
    margin-bottom: 15px;
}

/*.form #msg, .form #recaptcha {*/
/*    grid-column: 1/4;*/
/*}*/


.form input {
    width: 100%;
    height: 50px !important; 
    border: none !important;
    border-bottom: 1px solid #000 !important;
    background-color: transparent !important;
    font-weight: 400;
    color: #000;
    border-radius: 0 !important;
}

.form textarea {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    background-color: transparent !important;
    font-weight: 400;
    color: #000;
    height: 100px;
    border-radius: 0 !important;
}

.form select {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

#send {
    display: flex;
    position: relative;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
#send input {
    font-family: var(--fontFamily);
    background-color: #EB2A29;
    min-height: auto;
    padding: 7px 35px;
    border-radius: 25px;
}

#send .wpcf7-spinner {
    position: absolute;
    right: -65px;
    top: 5px;
}

.number-gap > .vc_column-inner > .wpb_wrapper > .vc_row > .number-p > .vc_column-inner > .wpb_wrapper > .wpb_single_image  {
    margin-bottom:10px;
    margin-top:10px;
}

.wpb_wrapper > ul > li:not(:last-child){
    margin-bottom:15px;
}
    
.car-button {
    display:flex;
    flex-wrap:wrap;
}

@media only screen and (max-width:767.98px) {
    .mobile-swap {
        display: flex;
        flex-direction: column-reverse;
    }
}

.custom-tab-row .vc_btn3-container {
    margin-right:30px;
}

.custom-tab-row .vc_tta-tabs-container {
    margin-left:50% !important;
}

.promo-subtitle {
    max-width:880px;
    margin-inline: auto;
}

.row-gap {
    padding-top:var(--row-gap) !important;
    padding-bottom:calc(var(--row-gap) - 35px) !important;
}

.row-gap-equal {
    padding-top:var(--row-gap) !important;
    padding-bottom:var(--row-gap) !important;
}

.row-gap-t {
    padding-top:var(--row-gap) !important;
}

.row-gap-b {
    padding-bottom:calc(var(--row-gap) - 35px) !important;
}

.row-gap-b-equal {
    padding-bottom:var(--row-gap) !important;
}

.promo-notes {
    font-size:14px;
}

.promo-notes p {
    margin-bottom:0;
}

.promo-notes ol {
    color:#6D6868;
}

.promo-notes strong {
    font-weight:600;
    color:#3F3F3F;
}

.promo-price-box > .wpb_column {
    width:fit-content;
}

.promo-price-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin-inline:0 !important;
    column-gap:5px;
}

/*.promo-price-box > .wpb_column:first-child .promo-price {*/
/*    text-align:right !important;*/
/*}*/

.promo-price-box > .wpb_column > .vc_column-inner {
    padding-inline:0 !important;
}

.promo-price {
    font-size:25px;
    color:var(--theme-color);
    font-weight:700;
    text-align:center !important;
    margin-bottom:0;
}

.promo-price-detail {
    font-size:14px;
    color:#717171;
    text-align:center !important;
    margin-bottom:5px;
}

.promo-year {
    color:var(--theme-color);
    font-weight:500;
    margin-bottom:15px;
}

.promo-title {
    font-size:20px;
    color:#272727;
    font-weight:700;
    margin-bottom:0;
}

.promo-box .all-btn {
    margin-bottom:35px;
}

.promo-box .all-btn > .vc_general.vc_btn3{
    margin-inline:auto !Important;
    width:fit-content;
}

.promo-img {
    padding-inline: 15px;
    padding-block: 35px;
    background-color: #EDEDEF;
    border-radius: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-box > .wpb_column > .vc_column-inner > .wpb_wrapper {
    display:flex;
    flex-direction:column;
    height:100%;
}

@media only screen and (max-width:1470.98px) {
    .promo-box > .wpb_column {
        width:50%;
    }
}

@media only screen and (max-width:767.98px) {
    .promo-box > .wpb_column {
        width:100%;
    }
}

.full-w-img,
.full-w-img .vc_figure,
.full-w-img .vc_single_image-wrapper,
.full-w-img img{
    width:100%;
}

.slick-dots {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #D9D9D9;
    padding:0 15px;
    width:100%;
}

.slick-dots button {
    font-size:0 !important;
}

.slick-dots li {
    list-style-type: none;
    position:relative;
    background-color:#D9D9D9;
    height:5px;
    width:100%;
    transition:var(--transition-effect);
}

.slick-dots li.slick-active {
    background-color:#E52635;
}

/*.slick-dots li:after {*/
/*    content:'';*/
/*    background-color:#D9D9D9;*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    font-size:7px;*/
/*    font-weight:900;*/
/*    color:#D9D9D9;*/
/*    cursor:pointer;*/
/*    height:5px;*/
/*    width:100%;*/
/*}*/

/*.slick-dots li:hover:after,*/
/*.slick-dots .slick-active:after {*/
/*    color:var(--theme-color);*/
/*}*/

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

.rebate-small-text {
  animation: float 3s ease-in-out infinite;
}