@font-face {
    font-family: Gilroy;
    font-weight: 300;
    src: url('../fonts/Gilroy/Gilroy-Regular.ttf'); 
}
@font-face {
    font-family: Gilroy;
    font-weight: 500;
    src: url('../fonts/Gilroy/Gilroy-Medium.ttf'); 
}
@font-face {
    font-family: Gilroy;
    font-weight: 600;
    src: url('../fonts/Gilroy/Gilroy-Semi-Bold.ttf'); 
}
@font-face {
    font-family: Gilroy;
    font-weight: 700;
    src: url('../fonts/Gilroy/Gilroy-Bold.ttf'); 
}

:root{
    --main_col: #fd7688;
    --sub_col: #fff0f3;
    
    --underline: #fea2ad;
    
    --btn_col: #fd5480;
    --btn_col2: #fea2ad;
    --secBlack: #232323; /* Black */

    --main_bg: #fea2ad;
    --main_bg2: #fff0f3;
    --scroll_col: #ff809b;

    --input_border: #fea2ad;
    --input_bg: #f9f9f9;
    --bottom_bg: #f4f4f4;
}
body, html, input, textarea, select, h2, p, button{
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
}

@media (min-width: 768px){
    .wview{
        display: block;
    }
    .mview{
        display: none;
    }
}

/* Header navbar */
.theme-dark .navbar-ct{
    background: #000;
}
.theme-light .navbar-ct{
    background: #FFF;
}
.navbar-ct{
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}
.fadeInDown{
    animation-name: fadeInDown;
    animation-duration: 1.25s;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.navbar-ct .navbar-brand img{
    height: 50px;
}
.navbar-ct .navbar-toggler{
    color: var(--main_col);
    border: none;
}
.navbar-ct .navbar-toggler:focus{
    outline: 0;
    box-shadow: none;
}
.navbar-ct .navbar-nav .nav-link{
    padding: 15px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: var(--main_col);
}

/* Wrapper */
.wrapper{
    margin-top: 85px;
}
.theme-dark .ct-bg{
    background: var(--secBlack);
}
.theme-light .ct-bg{
    background: #f5f5f5;
}

/* Button Style */
.btn_main {
    display: inline-block;
    background: var(--main_bg);
    border: 1px solid var(--main_bg);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.btn_main:hover {
    background: var(--main_col);
}

.btn_main.reverse{
    color: var(--main_bg);
    background: white;
    border: 2px solid var(--main_bg);
}
.btn_main.reverse:hover{
    color: var(--main_col);
}

a{
  color: var(--main_col);
  font-weight: 600;
  text-decoration: none;
}
a:hover{
  font-weight: 700;
  text-decoration: underline;
}

.ct-img{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #e6e6e6; 
    border-radius: 10px;
    background: #e6e6e6;
}
::-webkit-scrollbar-thumb {
    background: var(--main_col); 
    border-radius: 10px;
    border-top: 2px solid #e6e6e6;
}
::-webkit-scrollbar-thumb:hover {
    /*background: var(--main_col); */
    background: linear-gradient(90deg,#FFF 0%, #FFF 45%, #FFF 100%);
}
/* End of Scrollbar */

/* Section */
.section{
  padding: 30px 0 15px;
}
.section .tdiv{
  padding: 0 30px;
  text-align: center;
}
.section .title{
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  text-align: left;
}
.section .subtitle{
  font-size: 24px;
  text-align: left;
  margin-bottom: 10px;
}
.section .title2{
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}
.section p{
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  text-align: left;
}
.section .title_line{
  font-size: 24px;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid var(--underline);
  display: inline-block;
  margin-bottom: 15px;
  text-align: left;
}
.section .np{
  padding: 0;
}

.theme-dark .section{
    background: var(--secBlack);
    color: #FFF;
}
.theme-light .section{
    background: #FFF;
    color: inherit;
}
.theme-dark .section .subtitle{
    color: #FFF;
}
.theme-light .section .subtitle{
    color: inherit;
}

.theme-light .section.pink{
  background: var(--main_bg2);
  color: inherit;
}

/* Gradient Card */
.ct-card {
  /*width: 280px;*/
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);*/
  position: relative;
  background: linear-gradient(to bottom, transparent 80%, var(--main_bg) 20%);
}

.ct-card .card-image {
  height: 75%;
  overflow: hidden;
  position: relative;
}

.ct-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ct-card .card-text {
  background: linear-gradient(to top, var(--main_bg) 75%, transparent);
  text-align: center;
  padding: 20px 15px 10px;
  position: relative;
  margin-top: -120px; /* pull up over image */
  padding-top: 80px;
  z-index: 2;
}

.ct-card .card-text h2 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.ct-card .card-text p {
  font-size: 14px;
  color: #222;
  margin: 10px 0 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.ct-card .arrow-more{
  padding-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.ct-card .arrow-more img{
    width: 20px;
    height: auto;
}

/* Slick List */
.serslick_div{
}
.serslick_div .div{
  padding: 0 15px;
  /*display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;*/
}
.serslick_div .ct-card{
  margin: 0 5px;
  position: relative;
}

.ss-prev, .ss-next{
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.ss-prev img, .ss-next img{
  width: 15px;
}
.ss-prev{
  left: -15px;
}
.ss-next{
  right: -15px;
}

/* Bottom Contact Button */
.btm_contact{
  position: fixed;
  bottom: 0;
  right: 30px;
}

.btm_contact .btn_main{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Dark/Light Theme Toggle */
.toggler{
    padding-left: 30px;
}
.toggler .switch {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 20px;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
 }
 
 /* Hide default HTML checkbox */
 .toggler .switch input {
   opacity: 0;
   width: 0;
   height: 0;
 }
 
 /* The slider */
 .toggler .slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: #ccc;
   -webkit-transition: 0.4s;
   transition: 0.4s;
 }
 
 .toggler .slider:before {
   position: absolute;
   content: "";
   height: 110%;
   width: 60%;
   left: 0px;
   bottom: 4px;
   top: 0;
   bottom: 0;
   margin: auto 0;
   -webkit-transition: 0.4s;
   transition: 0.4s;
   box-shadow: 0 0px 15px #2020203d;
   background: white url('../image/night.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: 75%;
 }
 
 .toggler input:checked + .slider {
   background-color: var(--main_col);
 }
 
 .toggler input:focus + .slider {
   box-shadow: 0 0 1px var(--main_col);
 }
 
 .toggler input:checked + .slider:before {
   -webkit-transform: translateX(70%);
   -ms-transform: translateX(70%);
   transform: translateX(70%);
   background: white url('../image/sunny.png');
   background-repeat: no-repeat;
   background-position: center;
   background-size: 65%;
 }
 
 /* Rounded sliders */
 .toggler .slider.round {
   border-radius: 50px;
 }
 
 .toggler .slider.round:before {
   border-radius: 50%;
 }

 /* Loding CSS */
/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.8;
    padding-right: 55px;
  }
  
  .divLoading b{
      display: none;
  }
  .divLoading.loading b{
      display: block;
  }
  /* Transparent Overlay */
  .loading:before {
      content: '';
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255,255,255,0.3);
      text-shadow: 0 -1px -1px #1f2f52;
      color: #FFF;
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -60px;
    margin-left: 25px;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: #ff6a67 1.5em 0 0 0, #ff6a67 1.1em 1.1em 0 0, #ff6a67 0 1.5em 0 0, #ff6a67 -1.1em 1.1em 0 0, #ff6a67 -1.5em 0 0 0, #ff6a67 -1.1em -1.1em 0 0, #ff6a67 0 -1.5em 0 0, #ff6a67 1.1em -1.1em 0 0;
    box-shadow: #ff6a67 1.5em 0 0 0, #ff6a67 1.1em 1.1em 0 0, #ff6a67 0 1.5em 0 0, #ff6a67 -1.1em 1.1em 0 0, #ff6a67 -1.5em 0 0 0, #ff6a67 -1.1em -1.1em 0 0, #ff6a67 0 -1.5em 0 0, #ff6a67 1.1em -1.1em 0 0;
    box-shadow: #ccc 1.5em 0 0 0, #ccc 1.1em 1.1em 0 0, #ccc 0 1.5em 0 0, #ccc -1.1em 1.1em 0 0, #ccc -1.5em 0 0 0, #ccc -1.1em -1.1em 0 0, #ccc 0 -1.5em 0 0, #ccc 1.1em -1.1em 0 0;
  }
  
  /* Animation */
  
  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  /* End of Loding CSS */

/* Global */
.ct-center{
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Fotorama PLugin */
.fotorama__thumb-border{
    border-color: var(--main_col) !important;
}

  /* Hide default arrows */
.fotorama__arr {
    background: none !important;
}

/* Custom Previous Arrow */
.fotorama__arr--prev {
    background: url('../image/arrow-left.png') no-repeat center !important;
    background-size: contain !important;
    width: 80px !important;
    height: 50px !important;
}

/* Custom Next Arrow */
.fotorama__arr--next {
    background: url('../image/arrow-right.png') no-repeat center !important;
    background-size: contain !important;
    width: 80px !important;
    height: 50px !important;
}

/* Social Media Share Button */
.share-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    padding: 10px;
}
.share-btn {
    padding: 10px 15px;
    border-radius: 5px;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.share-btn:hover {
    color: #a6a6a6;
}
/*.facebook { background: #3b5998; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.linkedin { background: #0077b5; }*/


/* Select2 */
.select2{
	width: 100% !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
	background: linear-gradient(90deg, #ff6a67 0%, #f02aae 100%);
	background: -moz-linear-gradient(90deg, #ff6a67 0%, #f02aae 100%);
	background: -ms-linear-gradient(90deg, #ff6a67 0%, #f02aae 100%);
	background: -webkit-linear-gradient(left, #ff6a67 0%, #f02aae 100%);
	color: #FFF;
}
	
#inquiry .select2-container--default .select2-selection--single{
	color: var(--main_bg);
	border: none;
	background: transparent;
	border: 2px solid var(--main_bg);
	outline: none;
  padding: .375rem 0;
}

#inquiry .select2-container--default .select2-selection--single .select2-selection__rendered{
	color: #000;
	font-size: 14px;
	font-weight: 400;
}	

.select2-container--default .select2-search--dropdown .select2-search__field:focus{
	outline: none;
	border: 1px solid #ff6a67;
}

/* Animation */
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(0) translate(0,0)
  }

  50% {
    -webkit-transform: rotate(0) translate(0,25px)
  }

  100% {
    -webkit-transform: rotate(0) translate(0,0)
  }
}

@keyframes sdb05 {
  0% {
    transform: rotate(0) translate(0,0)
  }

  50% {
    transform: rotate(0) translate(0,25px)
  }

  100% {
    transform: rotate(0) translate(0,0)
  }
}