/**
Styles here are written to overite default template styles.
**/

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

@layer properties;
@font-face {
  font-family: "Cocomat Pro";
  src: url("../../custom_assets/fonts/cocomat-pro/CocomatPro-ExtraLight.woff2")
    format("woff2");
  font-weight: 100;
  font-style: light;
}
@font-face {
  font-family: "Cocomat Pro";
  src: url("../../custom_assets/fonts/cocomat-pro/CocomatPro-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cocomat Pro";
  src: url("../../custom_assets/fonts/cocomat-pro/CocomatPro-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: "Cocomat Pro";
  src: url("../../custom_assets/fonts/cocomat-pro/CocomatPro-Black.woff2")
    format("woff2");
  font-weight: 900;
  font-style: black;
}
:root {
  --heading-color: #080b3c;
  --body-color: #080b3c;
  --primary-color: #080b3c;
  --secondary-color: #8aca8b;
  --tertiary-color: #5fa8dc;
  --amber-color: #f7cb46;
  --white-color: #ffffff;
  --gray-color: #414141;
  --light-color: #e6e6e6;
  --dark-bg: #080b3c;
  --blue-bg: #080b3c;
  --light-bg: #fafafa;
  --white-bg: #fff;
  --font-default: "Cocomat Pro", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

body {
  font-family: var(--font-default);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}

blockquote {
  font-family: var(--font-default);
}
.post-item .post-title {
  font-family: var(--font-default);
}

#comment-btn,
#zubuz-account-btn,
#zubuz-submit-btn,
.zubuz-default-btn {
  font-family: var(--font-default);
  border-radius: 999px;
}

#comment-btn:before,
#zubuz-account-btn:before,
#zubuz-submit-btn:before,
.zubuz-default-btn:before {
  -webkit-transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1),
    -webkit-transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
}

#comment-btn:after,
#zubuz-account-btn:after,
#zubuz-submit-btn:after,
.zubuz-default-btn:after {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
  transition: transform 0.2s cubic-bezier(0.1, 0, 0.3, 1),
    -webkit-transform 0.2s cubic-bezier(0.1, 0, 0.3, 1);
}
#comment-btn:hover:after,
#zubuz-account-btn:hover:after,
#zubuz-submit-btn:hover:after,
.zubuz-default-btn:hover:after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 50ms;
  transition-duration: 50ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.zubuz-pricing-price .zubuz-price {
  font-family: var(--font-default);
}

.number {
  font-family: var(--font-default);
}

.zubuz-copywright {
  font-family: var(--font-secondary);
  p {
    font-size: 12px;
  }
}

/* @media (max-width: 479px) {
  .zubuz-icon-list ul li {
    display: block !important;
  }
} */

.contact-us-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  row-gap: 50px;
  /* > div:nth-child(1) {
  } */
  > div:nth-child(2) {
    padding-block: 24px;
  }
}

.contact-us-details {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
}

.contact-us-details-item {
  display: flex;
  justify-content: start;
  gap: 0.8rem;
}

.pricing-card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.zubuz-pricing-wrap {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  border: transparent;
  background-color: #ebf5eb;
}

@media (min-width: 991px) {
  .pricing-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    column-gap: 20px;
    .zubuz-pricing-wrap {
      max-width: 350px;
    }
  }
  .contact-us-container {
    max-width: 1200px;
    /* padding-inline: 62px; */
    display: grid;
    grid-template-columns: 6fr 5fr;
    > div:nth-child(1) {
      padding-inline-end: 0 !important;
    }
    > div:nth-child(2) {
      padding-inline-start: 12px !important;
    }
  }
}
@media (min-width: 1200px) {
  .contact-us-container {
    padding-inline: 30px;
  }
}
@media (min-width: 1400px) {
  .contact-us-container {
    padding-inline: 0;
    max-width: 1300px;
  }
}

.zubuz-main-form textarea {
  border-radius: 12px;
}

.zubuz-header-btn {
  padding-inline: 1.5rem !important;
  font-weight: semibold;
  text-overflow: clip;
}

.zubuz-iconbox-icon {
  width: 50px;
  height: 50px;
  display: flex;
  flex-shrink: 0;
  margin-bottom: 0px;
  border-radius: 60px;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
}

.zubuz-iconbox-wrap-left .zubuz-iconbox-icon {
  margin-right: 0px !important;
}

.iconbox-left-border {
  column-gap: 1.4rem;
}

.blue-icon {
  color: var(--gray-color);
}
.social-box-blue li a {
  background-color: var(--tertiary-color);
}
.zubuz-social-icon a:hover {
  background-color: var(--secondary-color) !important;
  .dark-icon {
    color: var(--primary-color) !important;
  }
  .blue-icon {
    color: white;
  }
}

.invisible {
  display: none;
}

.navbar {
  padding-inline: 0 !important;
}
.tertiary-footer-color {
  a,
  p {
    color: var(--tertiary-color) !important;
  }
}

@media (min-width: 1200px) {
  .container-xl-rounded {
    border-radius: 20px;
    overflow: hidden;
  }
}
@media (min-width: 991px) {
  .container-sm-rounded {
    border-radius: 20px;
    overflow: hidden;
  }
}

.services-txt-div {
  height: 100%;
  width: 100%;
  order: 1;
  padding-block-start: 48px;
}

.services-img-div {
  order: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

.services-img-container {
  max-height: 400px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 16px;
  img {
    min-height: 75%;
    min-width: 90%;
    object-fit: cover;
    object-position: 20% 0%;
    border-radius: 16px;
  }
}

@media (min-width: 991px) {
  .services-section {
    display: grid;
    grid-template-columns: 5fr 4fr;
    column-gap: 30px;
  }
  .services-txt-div {
    padding-block-start: 0;
    padding-inline-end: 8px;
    .zubuz-iconbox-wrap-left {
      padding-inline-end: 42px;
    }
  }
  .services-img-container {
    height: 100%;
    width: 100%;
    max-height: 100%;
  }
  .services-img-container > img {
    min-height: 75%;
    min-width: 90%;
    object-fit: cover;
    object-position: 80% 0%;
  }
  .services-floating-card {
    bottom: 12%;
  }
}

@media (max-width: 991px) {
  .services-img-container {
    overflow: hidden;
  }
  .services-floating-card {
    bottom: 5%;
  }
}

@media (max-width: 1200px) {
  .container-xl {
    padding-inline: 50px;
  }
}

@media (max-width: 767px) {
  .container-xl {
    padding-inline: 20px;
  }
}

@media (max-width: 479px) {
  .container-xl {
    padding-inline: 18px;
  }
  .services-img-container {
    max-height: 200px;
  }
}

.container-fluid {
  padding-inline: 0;
}

/* SWITCH SLIDER AND CHECKED BELOW CHOOSES BETWEEN DEMO AND LIVE LOGIN ON LOGIN SCREEN*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--primary-color);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--secondary-color);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/**/

/***** Handling navbar */

.navbar-nav {
  flex-grow: 1;
  justify-content: center;
  column-gap: 16px;
}

.nav-link {
  color: var(--primary-color) !important;
}
.nav-link:hover {
  color: var(--gray-color) !important;
}

@media (max-width: 1199px) {
  .navbar-nav {
    column-gap: 8px !important;
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  /* Lg breakpoint in Bootstrap */
  .navbar-nav-main {
    display: none !important;
  }

  .navbar-toggler {
    display: block;
    border: none;
  }
}

@media (max-width: 575px) {
  /* Sm breakpoint in Bootstrap */
  .navbar-buttons {
    display: none !important;
  }
}

.accordion-body * {
  color: var(--primary-color) !important;
  padding-inline: 14px;
  padding-block: 6px;
}

.accordion-body *:hover {
  background-color: var(--light-color);
}

.accordion-body {
  padding: 0 !important;
}

.dropdown-item:hover {
  cursor: pointer;
}

.dropdown-menu {
  animation: 0.5s slideup;
}
.drop-down-pointer-tip {
  height: 10px;
  width: 10px;
  top: -5px;
  left: 20px;
  background-color: inherit;
  position: absolute;
  border-left: 1px solid var(--light-color);
  border-top: 1px solid var(--light-color);
  transform: rotate(45deg);
}

@keyframes slideup {
  from {
    transform: translateY(20%);
  }
  to {
    transform: translateY(0);
  }
}

.-rotate-180 {
  animation: 0.5s -spin180 ease-in-out forwards;
}

.rotate-180 {
  animation: 0.5s spin180 ease-in-out forwards;
}

@keyframes -spin180 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}

@keyframes spin180 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

/* FONT SIZES */

.h1,
h1 {
  z-index: 0;
  font-size: 90px;
  letter-spacing: -2px;
  line-height: 1.04em;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 1600px) {
  .h1,
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1400px) {
  .h1,
  h1 {
    font-size: 62px;
  }
}
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 479px) {
  .h1,
  h1 {
    font-size: 40px;
  }
}
.h2,
h2 {
  font-size: 60px;
  line-height: 1.05em;
  letter-spacing: -0.1px;
}
@media (max-width: 1400px) {
  .h2,
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 479px) {
  .h2,
  h2 {
    font-size: 36px;
  }
}
.h3,
h3 {
  font-size: 25px;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .h3,
  h3 {
    line-height: 1.2em;
  }
}
@media (max-width: 479px) {
  .h3,
  h3 {
    font-size: 22px;
  }
}
.h4,
h4 {
  font-size: 20px;
  line-height: 24px;
}
.h5,
h5 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 20px;
}
@media (max-width: 767px) {
  p {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

/* modifying forms & input fields */
.zubuz-account-wrap {
  background-color: var(--light-bg);
  border: 1px solid var(--primary-color);
}
.zubuz-account-field input {
  border: 1px solid #c4c4c4 !important;
  padding: 10px 16px !important;
  height: fit-content;
}
