/* CodeLab Softwares 2022 */
:root {
  --blue: #3333ff;
  --blue-light: #dee9ff;
  --blue-dark: #09092a;
  --yellow-light: #ffff50;
  --yellow-dark: #ffcc00;
  --gold: #c79c00;
  --gray-light: #b9b9d6;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css');

/* Style swiper*/
body {
  position: relative;
  height: 100%;
}

.swiper {
  height: 200px;
}

.swiper-slide {
  text-align: center;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 150px;
  object-fit: cover;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #000000;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  color: var(--blue);
}

.btn-outline-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #000000;
  background-color: transparent;
}

.btn-animated:hover {
  animation: pulsate 1s ease-in-out;
}

@keyframes pulsate {
  0% {
    /* box-shadow: 0 0 25px var(--blue), 0 0 50px var(--blue-light); */
  }
}

/* Base structure */
html,
body {
  background-image: linear-gradient(#dee9ff, #ffffff);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
}

.bg-image {
  background-image: url('/assets/imgnew/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.cover-container {
  max-width: 55em;
}

.img-blog {
  border-radius: 20px !important;
  /* max-height: 150px !important; */
}

/* Header */
.nav-masthead .nav-link {
  padding: 0.25rem 0;
  color: #000000;
  background-color: transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: var(--blue);
  border-bottom-color: #fff;
  font-weight: 600;
}

/* Custom Color */

/* Custom Text */
.smaller {
  font-size: x-small;
}

.custom-text-primary {
  color: var(--blue);
}

.custom-text-muted {
  color: var(--gray-light);
}

/* Custom Nav */
.nav-pill {
  border-radius: 50px;
}

.btn-pill {
  border-radius: 50px;
}

/* Custom Background */
.bg-light-custom {
  background-color: var(--blue-light);
}

.bg-primary-dark-custom {
  background-color: var(--blue-dark);
}

.bg-primary-custom {
  background-color: var(--blue);
}

/* Item Circle */
.circle-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  padding: 5px;
  border-radius: 50%;
}

.btn-pill {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.rounded-border {
  border-radius: 24px !important;
  overflow: hidden;
}

/* Custom Card */
.card-1 {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.card-2 {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}

.card-3 {
  border-radius: 24px;
}

@media screen and (max-width: 600px) {
  .card-1 {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .card-2 {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .mobile {
    text-align: center !important;
  }
  .nomobile-menu {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 600px) {
  .mobile-menu {
    visibility: hidden !important;
  }
}

.custom-card {
  border-radius: 24px;
}

.card-blog-1 {
  border-left: 2px solid var(--blue);
}

/* Custom Form */
input {
  border-radius: 50px !important;
}

/* Button Whatsapp */
.btn-wpp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 5px;
  right: 15px;
  z-index: 999;
}

.btn-wpp-not {
  position: fixed;
  width: 16px;
  height: 16px;
  bottom: 45px;
  right: 15px;
  background-color: #b11f1f;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  z-index: 1000;
}
/* End Button Whatsapp */

.container {
  padding-left: 5vw !important;
  padding-right: 5vw !important;
}
