@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import '../css/fonts.css';
@import '../css/lib/bootstrap-grid.min.css';
html {
  font-size: 10px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes small-big {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.02);
  }
}
@keyframes right-left {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.02);
  }
}
@keyframes flipInX {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes dance {
  100%, 0% {
    max-height: 100vh;
  }
  80% {
    max-height: 0px;
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.5;
  }
}
.section {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
}
.section .container {
  position: relative;
  z-index: 10;
}
.section-scrolling p {
  align-items: center;
  display: flex;
  justify-content: center;
}
.section-scrolling p img {
  border-radius: 5px;
  display: inline-block;
  margin: 0 1rem;
  max-width: 6rem;
}

@media (max-width: 1199px) {
  .section {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }
  .section-scrolling p {
    font-size: 1.8rem;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html {
  height: 100%;
}
html.is-active {
  overflow: hidden;
}

.w-100 {
  width: 100%;
}

body {
  background: #FCFCFC url(../images/body-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
  color: #222;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  position: relative;
}
body::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: url(../images/footer-bg.png) no-repeat;
  background-position: bottom center;
  background-size: contain;
  height: 830px;
  left: 0;
  width: 100%;
}
body.is-active {
  position: relative;
}
body.is-active::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  z-index: 5;
}

main {
  flex: 1 0 auto;
}

p {
  font-size: 2.3rem;
  line-height: 3.3rem;
}
p + p {
  margin-top: 1.6rem;
}

.row {
  margin-left: -1rem;
  margin-right: -1rem;
}
.row [class^=col-] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.row1 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.row1 [class^=col-] {
  padding-left: 2rem;
  padding-right: 2rem;
}
.row2 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.row2 [class^=col-] {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.row3 {
  margin-left: -4rem;
  margin-right: -4rem;
}
.row3 [class^=col-] {
  padding-left: 4rem;
  padding-right: 4rem;
}
.row4 {
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
.row4 [class^=col-] {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.full-box-link {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.position-unset {
  position: unset;
}

.c-title {
  margin-bottom: 4rem;
}
.c-title h2 {
  color: #111;
  font-size: 3.6rem;
  font-weight: 700;
}
.c-title p {
  color: #444;
  font-size: 2.2rem;
  line-height: 1.3;
  max-width: 61rem;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

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

.full-box-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

.c-pointer {
  cursor: pointer;
}

.date-icon {
  color: #9898FF;
  font-size: 2rem;
  position: absolute;
  top: 5.1rem;
  right: 4rem;
}

.d-flex {
  display: flex;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-0 {
  margin-bottom: 0 !important;
}

.d-none-n {
  display: none;
}

button.back-to-top {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  height: 0px;
  width: 0px;
  overflow: hidden;
  border-radius: 50px;
  color: transparent;
  clear: both;
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  display: block;
  border: none;
  right: 50px;
  bottom: 75px;
  font-size: 0px;
  outline: 0 !important;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
  outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
  content: "";
  display: block;
  border-bottom: solid 10px #9898FF;
  border-left: solid 10px transparent;
  line-height: 0;
  border-right: solid 10px transparent;
  height: 0;
  margin: 18px auto 0;
  width: 0;
  border-radius: 20px;
  visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
  visibility: visible;
}

button.back-to-top::after {
  border-bottom-color: #fff;
  position: relative;
  top: -24px;
}

button.back-to-top.show {
  display: block;
  background: #fff;
  color: #00ab6c;
  font-size: 25px;
  right: 25px;
  bottom: 50px;
  height: 50px;
  width: 50px;
  visibility: visible;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 767px) {
  .container-fluid {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media (max-width: 1199px) {
  .section .contact-info a {
    font-size: 2rem;
  }
  .section-inner-page-title {
    padding: 18rem 0 5rem;
  }
  .section-inner-page-title .inner-box {
    border-radius: 2rem;
    padding: 5rem;
  }
}
@media (max-width: 991px) {
  .section-transform {
    padding: 5rem 0 10rem;
  }
  .section-transform .form {
    margin-top: 5rem;
  }
  .section-transform .title .h {
    max-width: inherit;
  }
  .section-transform .form {
    border-radius: 2rem;
    padding: 3rem;
  }
  .section-dummy {
    padding: 10rem 0 5rem;
  }
  .section-dummy .dummy {
    border-radius: 2rem;
  }
  .form {
    padding: 3rem;
  }
  .form-control {
    border-radius: 1rem;
  }
  .contactdiv .col-12 + .col-12 {
    margin-top: 3rem;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .d-none-991 {
    display: none;
  }
  .d-block-991 {
    display: block;
  }
}
@media (max-width: 991px) {
  .c-title {
    margin-bottom: 3rem;
  }
  .c-title h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .section-dummy {
    padding: 5rem 0;
  }
  .section-dummy .dummy {
    padding: 3rem;
  }
  .section-dummy .dummy-row {
    flex-wrap: wrap;
    text-align: center;
  }
  .section-dummy .dummy-left {
    width: 100%;
  }
  .section-dummy .dummy-right {
    margin-top: 3rem;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.header {
  background-color: transparent;
  left: 0;
  position: absolute;
  padding: 4rem 0;
  right: 0;
  top: 0;
  transition: all 0.15s;
  z-index: 9;
}
.header-row > a img {
  max-width: 14rem;
}
.header-row > a b {
  color: #222;
  font-size: 1.6rem;
  font-weight: 600;
}
.header-row > a b span {
  color: #9898FF;
}
.header.fixed {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  position: fixed;
  top: 0;
}
.header.fixed a img {
  max-width: 12rem;
}
.header ul {
  display: flex;
}
.header ul li + li {
  margin-left: 5rem;
}
.header ul li .nav-link {
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
  position: relative;
}
.header ul li .nav-link:hover {
  color: #9898FF;
}
.header ul li .btn2 {
  font-size: 2.2rem;
  font-weight: 600;
}
.header ul li.active a {
  color: #9898FF;
}
.header ul li.active a::before {
  opacity: 1;
}

.menu-icon {
  display: none;
  z-index: 100;
}
.menu-icon label {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
}
.menu-icon label span {
  background-color: #9898FF;
  border-radius: 10px;
  height: 7px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.menu-icon label span:nth-of-type(1) {
  width: 50%;
}
.menu-icon label span:nth-of-type(2) {
  width: 100%;
}
.menu-icon label span:nth-of-type(3) {
  width: 75%;
}
.menu-icon input[type=checkbox] {
  display: none;
}
.menu-icon input[type=checkbox]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 0px);
}
.menu-icon input[type=checkbox]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}
.menu-icon input[type=checkbox]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px, -11px) rotatez(45deg);
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header-row > a img {
    max-width: 12rem;
  }
}
@media (max-width: 991px) {
  .header {
    background-color: transparent;
  }
  .header.fixed {
    background-color: rgba(152, 152, 255, 0.95);
  }
  .header.fixed ul {
    min-height: calc(100vh - 58px);
    top: 58px;
  }
  .header-row {
    border-radius: 0;
    padding: 0;
    position: relative;
  }
  .header-row > a img {
    max-width: 7rem;
  }
  .header-row .text-end .btn2 {
    margin-right: 8rem;
  }
  .header ul {
    background-color: #fff;
    bottom: 0;
    display: block;
    position: fixed;
    padding: 5rem;
    left: auto;
    height: 100vh;
    right: 0;
    transform: translateX(100%);
    transition: transform 0.9s;
    top: 0;
    width: 70%;
    z-index: 99;
  }
  .header ul li a {
    font-size: 3rem;
  }
  .header ul li a::before {
    display: none;
  }
  .header ul li + li {
    margin-left: 0;
    margin-top: 3.5rem;
  }
  .header.is-active ul {
    transform: translateX(0);
  }
  .inner-pages .header ul li .nav-link {
    color: #fff;
  }
  .menu-icon {
    display: block;
    position: absolute;
    left: auto;
    right: -2rem;
    transform: scale(0.6);
  }
}
@media (max-width: 767px) {
  .header ul {
    padding: 3rem;
  }
  .menu-icon {
    transform: scale(0.5);
  }
}
.form-group {
  margin-bottom: 2rem;
}
.form-control {
  border: 1px solid #444;
  border-radius: 10px;
  color: #222;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  min-height: 6rem;
  padding: 1.8rem 2rem;
  resize: none;
  width: 100%;
}
.form-control-textarea {
  min-height: 13.5rem;
}

.h1 {
  font-size: 5.4rem;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 4.5rem;
  }
}
.h2 {
  font-size: 4.6rem;
}
.h3 {
  font-size: 3.8rem;
}
.h4 {
  font-size: 3rem;
}
.h4-1 {
  font-size: 2.8rem;
}
.h4-2 {
  font-size: 2.5rem;
}
.h4-3 {
  font-size: 2.6rem;
}
.h5 {
  font-size: 2.4rem;
}
.h6 {
  font-size: 2rem;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

@media (max-width: 1199px) {
  .h2, h2 {
    font-size: 4rem;
  }
  .h4, h4 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .h2, h2 {
    font-size: 3.5rem;
  }
  .h4, h4 {
    font-size: 2.8rem;
  }
}
.footer {
  padding: 4rem 0 0;
  position: relative;
  z-index: 5;
}
.footer-top .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footer-top h6 {
  color: rgba(255, 255, 255, 0.4);
  font-family: "pp_editorial_newregular";
  font-style: italic;
  font-size: 8.2rem;
  font-weight: 400;
}
.footer-top .quick-link a {
  color: #555;
  font-size: 1.8rem;
  text-decoration: underline;
}
.footer-top .quick-link a:hover {
  text-decoration: none;
}
.footer-top .quick-link a + a {
  margin-left: 5rem;
}
.footer-bottom {
  background-color: rgba(255, 255, 255, 0.37);
  margin-top: 8rem;
  padding: 1rem 0;
}
.footer-bottom .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.footer-bottom .inner p {
  color: #777;
  font-size: 1.6rem;
  font-weight: 400;
}
.footer-bottom .inner p + p {
  margin: 0;
}

@media (max-width: 1199px) {
  .footer-top h6 {
    font-size: 6rem;
  }
}
@media (max-width: 991px) {
  .footer-top .inner {
    flex-wrap: wrap;
  }
  .footer-top .inner > div {
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
  }
  .footer-bottom .inner {
    flex-wrap: wrap;
  }
  .footer-bottom .inner p {
    text-align: center;
    width: 100%;
  }
  .footer-bottom .inner p + p {
    margin-top: 1.3rem;
  }
}
@media (max-width: 767px) {
  .footer-top h6 {
    color: #9898FF;
  }
  .footer-bottom {
    margin-top: 3rem;
  }
  .footer-bottom .inner p {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=common.css.map */