
/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --body-font: 'Poppins', sans-serif;
    --gray-color: #757783;
    --black-color: #000;
    --white-color: #fff;
    --primary-color: #2e3280;
    --secondary-color: #f1586c;
    --light-blue: #F7F8FD;
}


*{
    padding: 0;
    margin: 0;
}

html{
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    color: var(--color-gray);
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    overflow-x: hidden;
}


input::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* Edge */
    color: var(--gray-color);
    font-weight: 400;
  }
  
  input:-ms-input-placeholder, textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--gray-color);
    font-weight: 400;
  }
  
  input::placeholder, textarea::placeholder {
    color: var(--gray-color);
    font-weight: 400;
  }

  .select2-container--default .select2-selection--single .select2-selection__placeholder{
    color: var(--gray-color);
    font-weight: 400;
  }

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

body.locked {
    overflow: hidden;
}

.bg-lightblue {
    background-color: var(--light-blue);
}


a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-color);
    font-weight: 700;
    margin: 0;
}

p{
    color: var(--gray-color);
}

dl,
ol,
ul {
    margin-top: 0;
    padding: 0;
}

li{
    list-style: none;
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.bg-cover{
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
.bg-cover-50{
    background-position: 100% 60% !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}




.thm-btn, .main-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /* -webkit-appearance: none; */
    border: none;
    outline: none !important;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 50px 12px;
    border-radius: 8px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 1;
}

.thm-btn:after, .main-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--black-color);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.thm-btn:hover:after, .main-btn:hover:after {
    opacity: 1;
    transform: scaleY(1.0);
}

.thm-btn:hover {
    color: #fff;
}


.section-title {
    position: relative;
    display: block;
    /* margin-top: -7px; */
    margin-bottom: 35px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-title__title {
    font-size: 44px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.section-title .section_subtitle{
    position: relative;
    display: inline-block;
    color: var(--gray-color);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0px;
}


@media(max-width:768px){
    .section-title .section_subtitle{
        font-size: 14px !important;
    }
}



label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
}


input {
    width: 100%;
    outline: none;
    border: 1px solid #d1d2e1;
    border-radius: 5px;
    padding: 3px 20px;
    height: 56px;
    color: var(--primary-color) !important;
    border-color: #d1d2e1 !important;
    background-color: #f8f8f8;
    font-size: 15px;
    font-weight: 600;
    /* margin-bottom: 20px; */
}

textarea {
width: 100%;
            outline: none;
            border: 1px solid #d1d2e1;
            border-radius: 5px !important;
            padding: 3px 20px;
            min-height: 56px;
            color: var(--primary-color) !important;
            border-color: #f8f8f8 !important;
            background-color: #f8f8f8;
            font-size: 15px;
            font-weight: 600;
            /* margin-bottom: 20px; */
}




.custom-btn-size {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    /* -webkit-appearance: none; */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 50px 12px;
    border-radius: 8px;
    transition: all 0.3s linear;
    overflow: hidden;
    letter-spacing: 0.1em;
    z-index: 1;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-primary {
    --bs-btn-color: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg:var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--secondary-color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--secondary-color);
    --bs-gradient: none;
}


input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}




input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ababab;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ababab;
    -moz-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ababab;
    -ms-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #ababab;
    -ms-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  
input::placeholder,
textarea::placeholder {
    color: #ababab;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }


  
input:focus::-webkit-input-placeholder {
    color: var(--primary-color);
  }
  
input:focus::-moz-placeholder {
    color: var(--primary-color);
  }
  
input:focus:-ms-input-placeholder {
    color: var(--primary-color);
  }
textarea:focus::-webkit-input-placeholder {
    color: var(--primary-color);
  }
  
textarea:focus::-moz-placeholder {
    color: var(--primary-color);
  }
textarea:focus:-ms-input-placeholder {
    color: var(--primary-color);
  }
textarea:focus, input:focus {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: var(--white-color) !important;
  }


  
/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    z-index: 1;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(28, 30, 39, 0.5);
    z-index: -1;
}

.page-header__wrapper {
    position: relative;
    display: block;
    padding-top: 150px;
    z-index: 3;
}

.page-header__title {
    position: relative;
    display: block;
    padding-bottom: 97px;
}

.page-header__title h2 {
    font-size: 50px;
    color: #ffffff;
    line-height: 1em;
    font-weight: 700;
    text-transform: capitalize;
}

.page-header__menu {
    position: relative;
    display: block;
    float: right;
}

.page-header__menu-list {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 10px 30px 6px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 0;
}

.page-header__menu-list li {
    position: relative;
    float: left;
    color: var(--black-color);
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    margin-right: 25px;
}

.page-header__menu-list li::before {
    position: absolute;
    top: 7px;
    left: -12px;
    bottom: 7px;
    content: "";
    width: 1px;
    background: #e0e2e9;
    transform: rotate(25deg);
}

.page-header__menu-list li:first-child::before {
    display: none;
}

.page-header__menu-list li:last-child {
    margin-right: 0;
}

.page-header__menu-list li.active {
    color: var(--primary-color);
    font-weight: 600;
}

.page-header__menu-list li a {
    color: var(--black-color);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__menu-list li a:hover {
    color: var(--primary-color);
}




  
  .c-btn-phone {
    display: block;
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color) !important;
    font-size: 18px;
    z-index: 300;
    right: 20px;
    bottom: 125px;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-btn-phone,
.c-social-links ul {
    display: -ms-flexbox;
    /*display: flex;*/
    -ms-flex-align: center;
    align-items: center;
    padding-top: 3px;
}

.c-btn-phone::before {
    background: var(--primary-color);
    width: 55px;
    height: 55px;
    left: -5px;
    top: -5px;
}

.c-btn-phone::after,
.c-btn-phone::before {
    transition: all linear .2s 0s;
    position: absolute;
    display: block;
    content: '';
    border-radius: 50%;
    z-index: -1;
    animation: phonePulse 1.5s infinite;
}

@keyframes phonePulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes phonePulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}



.c-btn-whatsapp {
    display: block;
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    background: #00b833;
    color: var(--white-color) !important;
    font-size: 24px;
    z-index: 300;
    right: 20px;
    bottom: 185px;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-btn-whatsapp,
.c-social-links ul {
    display: -ms-flexbox;
    /*display: flex;*/
    -ms-flex-align: center;
    align-items: center;
    padding-top: 3px;
}

.c-btn-whatsapp::before {
    background: #00b833;
    width: 55px;
    height: 55px;
    left: -5px;
    top: -5px;
}

.c-btn-whatsapp::after,
.c-btn-whatsapp::before {
    transition: all linear .2s 0s;
    position: absolute;
    display: block;
    content: '';
    border-radius: 50%;
    z-index: -1;
    animation: whatsAppPulse 1.5s infinite;
}

@keyframes whatsAppPulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes whatsAppPulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}


.c-btn-mail {
    display: block;
    position: fixed;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white-color) !important;
    font-size: 24px;
    z-index: 300;
    right: 20px;
    bottom: 245px;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-btn-mail,
.c-social-links ul {
    display: -ms-flexbox;
    /*display: flex;*/
    -ms-flex-align: center;
    align-items: center;
    padding-top: 3px;
}

.c-btn-mail::before {
    background: var(--secondary-color);
    width: 55px;
    height: 55px;
    left: -5px;
    top: -5px;
}

.c-btn-mail::after,
.c-btn-mail::before {
    transition: all linear .2s 0s;
    position: absolute;
    display: block;
    content: '';
    border-radius: 50%;
    z-index: -1;
    animation: mailPulse 1.5s infinite;
}

@keyframes mailPulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}

@-webkit-keyframes mailPulse {
    0% {
        transform: scale(0);
        opacity: 1
    }

    to {
        transform: scale(1.5);
        opacity: 0
    }
}







  /***
=============================================
    Scroll To Top
=============================================
***/
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 99;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--black-color);
}

.scroll-to-top:hover i {
    color: #fff;
}








.swiper-pagination{
    text-align: center;
}
  .swiper-pagination .swiper-pagination-bullet{
    width: 14px;
    height: 10px;
    border: 0;
    border-radius: 5px;
    background: #eee !important;
    opacity: 1;
    position: relative;
    outline: none;
    margin-right: 20px;
    -webkit-transition: opacity .5s, background-color .5s, width .5s;
		    -o-transition: opacity .5s, background-color .5s, width .5s;
		    transition: opacity .5s, background-color .5s, width .5s;
		    -webkit-transition-delay: .5s, .5s, 0s;
		         -o-transition-delay: .5s, .5s, 0s;
		            transition-delay: .5s, .5s, 0s;
  }

  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    width: 30px;
    background: var(--secondary-color) !important;
    -webkit-transition-delay: 0s;
		         -o-transition-delay: 0s;
		            transition-delay: 0s;
  }
  
  
  
  .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .slick-dots button {
    display: block;
    width: 14px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 5px;
    background-color: var(--gray-color);
    text-indent: -9999px;
    -webkit-transition: opacity .5s, background-color .5s, width .5s;
		    -o-transition: opacity .5s, background-color .5s, width .5s;
		    transition: opacity .5s, background-color .5s, width .5s;
		    -webkit-transition-delay: .5s, .5s, 0s;
		         -o-transition-delay: .5s, .5s, 0s;
		            transition-delay: .5s, .5s, 0s;
  }

  .slick-dots li.slick-active button {
    width: 30px;
    background-color: var(--secondary-color);
    -webkit-transition-delay: 0s;
		         -o-transition-delay: 0s;
		            transition-delay: 0s;
  }
  
  div.error{
      color: red;
      font-size: 12px;
  }
  
  
  .select2-error{
      position: relative;
          display: flex;
    flex-direction: column-reverse;
  }
  
  /*.select2-error div.error{*/
  /*        position: absolute;*/
  /*  bottom: -25px;*/
  /*  left: 15px;*/
  /*}*/
  
  .select2-container{
      width: 100%;
  }
  
  input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}