@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
/*** all Mobile Screen (iphone 6,7,8) ***/
/*** mobile Landscape Size ***/
/*** medium devices (tablets, less than 992px) ***/
/*** iPad in landscape ***/
/**** smaller than desktop 1200 (devices and browsers) ***/
/*** laptop with MDPI (medium density per inch) resolution ***/
/*** laptop with HiDPI (High Dots Per Inch) resolution ***/
/*** WSXGA (Wide Super Extended Graphics Array) resolution ***/
body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
}
@media (max-width: 1679px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 1281px) {
  body {
    font-size: 13px;
  }
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  background-color: #1A517A;
  outline: none;
}

.round-btn {
  border-radius: 36px;
  color: #ffffff;
  font-size: 17px;
  line-height: 17px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 50px;
  padding: 5px 29px;
  max-width: 230px;
}
@media (max-width: 1679px) {
  .round-btn {
    font-size: 16px;
    line-height: 18px;
  }
}
.round-btn.green {
  background-color: #18BF8B;
}
.round-btn.yellow {
  background-color: #FFB533;
}
.round-btn .icon {
  margin-left: 20px;
}
.round-btn:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  bottom: 0;
  background-color: #0C3B4B;
  transition: all 0.6s;
  left: 0px;
}
.round-btn:hover {
  color: #ffffff;
}
.round-btn:hover:before {
  width: 100%;
}
.round-btn span {
  position: relative;
  z-index: 1;
}

.title {
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 52px;
  color: #1A517A;
}
@media (max-width: 1679px) {
  .title {
    font-size: 48px;
  }
}
@media (max-width: 1481px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 1281px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .title {
    font-size: 26px;
  }
}
.title .title-ico {
  position: relative;
}
.title .title-ico:after {
  width: 1.6em;
  height: 1.6em;
  content: "";
  background: url(../img/Leaf.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(55%, -55%);
}

.subtitle {
  font-size: 24px;
  color: #4F4F5B;
}
@media (max-width: 1679px) {
  .subtitle {
    font-size: 20px;
  }
}
@media (max-width: 1481px) {
  .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1281px) {
  .subtitle {
    font-size: 16px;
  }
}

.call-cta {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 86px;
  height: 86px;
  z-index: 9;
}
@media (max-width: 1679px) {
  .call-cta {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1281px) {
  .call-cta {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991px) {
  .call-cta {
    width: 50px;
    height: 50px;
    right: 0;
    bottom: 60px;
  }
}
.call-cta .call-act-btn {
  max-width: 100%;
}

.flash-msg {
  position: fixed;
  width: 100%;
  z-index: 99;
  margin: 0;
  top: 0;
}