@import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");

html {
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--text-font);
  font-weight: 500;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: var(--title-font);
  line-height: normal;
}

h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--text-font);
  color: var(--black);
}

h1,
.h1,
h2,
.h2,
.title {
  font-size: var(--title-font-size);
  line-height: 45px;
  font-weight: 600;
}

.subtitle {
  font-family: var(--subtitle-font);
  font-size: var(--subtitle-font-size);
  font-weight: 500;
  line-height: normal;
}

.para,
p {
  font-family: var(--text-font);
  font-size: var(--text-font-size);
  line-height: 25px;
  font-weight: 500;
}

.para strong,
p strong {
  font-weight: 600;
  color: var(--dark);
}

.para a,
p a {
  color: var(--orange);
  transition: 0.2s;
}

.para a:hover,
p a:hover {
  color: var(--red);
  transition: 0.2s;
}

.sec-padding {
  padding: 80px 0;
}

.sec-heading {
  margin-bottom: 60px;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.navbar {
  padding: 15px 0;
}

.mobile-sidebar {
  z-index: 1024;
}

.customBtn {
  padding: 12px 25px;
  background-color: var(--orange);
  border-radius: 40px !important;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.customBtn:hover {
  transition: 0.3s;
  background-color: var(--yellow);
  color: var(--black);
}

.borderBtn {
  border-radius: 0 !important;
  background-color: transparent;
  color: var(--blue);
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 700;
  border: 1px dashed #acacac;
}

.borderBtn:hover {
  color: var(--white);
  transition: 0.3s;
  background-color: var(--blue);
}

.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element select {
  background-color: var(--yellow);
  color: var(--black);
  border: 0;
  padding: 8px 10px;
  margin: 0;
  width: 152px;
  font-family: var(--text-font);
  font-weight: 700;
  font-size: 14px;
}

.language-translate {
  width: 152px;
}

.whatsapp {
  position: fixed;
  right: 30px;
  bottom: 80px;
  cursor: pointer;
  z-index: 99999999;
}

.whatsapp.phone {
  position: fixed;
  left: 30px;
  right: auto;
  bottom: 30px;
  height: 40px;
}

.whatsapp.phone svg {
  width: 40px;
  height: 40px;
}

.whatsapp.phone::before {
  border-color: #4d94bc;
}

.whatsapp::before {
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  border: 15px solid #119c8d;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@keyframes pulse-border {
  0% {
    padding: 10px;
    opacity: 0.75;
  }

  75% {
    padding: 20px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.ctc-analytics {
  animation: shake-animation 1s linear infinite !important;
}

@keyframes shake-animation {
  0% {
    transform: rotate(0);
  }

  25% {
    transform: rotate(0);
  }

  35% {
    transform: rotate(-0.3deg);
  }

  45% {
    transform: rotate(4deg);
  }

  55% {
    transform: rotate(-0.3deg);
  }

  65% {
    transform: rotate(4deg);
  }

  75% {
    transform: rotate(0);
  }

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


.progress-wrap {
  position: fixed;
  right: 25px;
  bottom: 10px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  background-color: var(--white);
  border-radius: 100%;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  opacity: 0;
  background-color: var(--orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--orange);
  stroke-width: 6;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap span svg path {
  fill: var(--orange);
}

.progress-wrap span svg {
  width: 20px;
  display: flex;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footerItem .list-item span {
    display: inline-block;
    font-size: 19px;
    color: var(--orange);
}

.owl-dots {
  margin-left: 10px;
  margin-right: 10px;
}


/* Start of Root */

:root {
  --orange: rgb(249, 121, 4);
  --dark: #333;
  --yellow: rgb(255, 204, 0);
  --blue: #184472;
  --black: #000;
  --white: #fff;
  --red: rgb(206, 4, 4);
  --title-font: "Playfair Display";
  --text-font: "Nunito";
  --subtitle-font: "PT Serif", serif;
  --text-font-size: 17px;
  --title-font-size: 35px;
  --subtitle-font-size: 18px;
  --light-bg: #faf8f5;
  --default-bgcolor: #F5F5F5;
}

/* End of Root */