@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import '../css/lib/bootstrap-grid.min.css';
html {
  font-size: 10px;
}

@media (max-width: 1550px) {
  html {
    font-size: 7px;
  }
}
@keyframes animName {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-r {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes pulse {
  0%, 100% {
    fill-opacity: 1;
  }
  50% {
    fill-opacity: 0.5;
  }
}
@keyframes launch {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}
@keyframes shake1 {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-2px);
  }
  75% {
    transform: translateY(2px);
  }
}
@keyframes small-big {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.btn2 {
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 6rem;
  padding: 0 3rem;
  position: relative;
  text-decoration: none;
}
.btn2-group {
  display: flex;
  align-items: center;
}
.btn2-group .btn2 + .btn2 {
  margin-left: 3rem;
}
.btn2-primary {
  background-color: #D64544;
  color: #fff;
  overflow: hidden;
  transition: color 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.15s;
  will-change: clip-path, color;
}
.btn2-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4A8DB1;
  -webkit-clip-path: circle(0% at 50% 50%);
          clip-path: circle(0% at 50% 50%);
  transition: -webkit-clip-path 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: clip-path 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: clip-path 1.2s cubic-bezier(0.33, 1, 0.68, 1), -webkit-clip-path 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: -1;
  border-radius: inherit;
  transform: translateZ(0);
}
.btn2-primary:hover::after {
  -webkit-clip-path: circle(150% at 50% 50%) !important;
          clip-path: circle(150% at 50% 50%) !important;
}
.btn2-secondary {
  background-color: #EFD858;
  color: #000;
}
.btn2-secondary:hover {
  background-color: #D64544;
  color: #fff;
}
.btn2-white {
  background-color: #fff;
  color: #161414;
}
.btn2-link {
  border-bottom: 1px solid #161414;
  border-radius: 0;
  line-height: inherit;
  color: #161414;
  font-size: 2rem;
  font-weight: 600;
  padding: 0 4rem 0.4rem 0;
  position: relative;
}
.btn2-link::after {
  content: "";
  position: absolute;
  background: url(../images/icon/arrow-right.svg) 0 0 no-repeat;
  background-size: 100%;
  height: 2.4rem;
  left: auto;
  right: 0;
  top: 0.2rem;
  width: 2.5rem;
}
.btn2-link:hover {
  color: #D64544;
  border-color: #D64544;
}
.btn2-link:hover::after {
  background: url(../images/icon/arrow-right-hover.svg) 0 0 no-repeat;
  background-size: 100%;
}

.section {
  position: relative;
  padding: 16rem 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .section {
    padding: 10rem 0;
  }
}
.section .container {
  position: relative;
  z-index: 10;
}
.section1 {
  padding: 8rem 0 16rem;
}
@media (max-width: 991px) {
  .section1 {
    padding: 5rem 0 9rem;
  }
}
.section2 {
  padding: 16rem 0 8rem;
}
@media (max-width: 991px) {
  .section2 {
    padding: 9rem 0 5rem;
  }
}
.section3 {
  padding: 8rem 0;
}
@media (max-width: 991px) {
  .section3 {
    padding: 5rem 0;
  }
}
.section4 {
  padding: 8rem 0 0;
}
@media (max-width: 991px) {
  .section4 {
    padding: 5rem 0 0;
  }
}
.section5 {
  padding: 16rem 0 3rem;
}
@media (max-width: 991px) {
  .section5 {
    padding: 9rem 0 2rem;
  }
}
.section6 {
  padding: 3rem 0 8rem;
}
@media (max-width: 991px) {
  .section6 {
    padding: 2rem 0 5rem;
  }
}
.section7 {
  padding: 16rem 0 0;
}
@media (max-width: 991px) {
  .section7 {
    padding: 9rem 0 0;
  }
}
.section-empty {
  padding: 0 0 8rem;
}
@media (max-width: 991px) {
  .section-empty {
    padding: 0 0 5rem;
  }
}

.card2 {
  background-color: #fff;
  border-radius: 10px;
  margin: 1.2rem 0;
  padding: 3rem;
}
.card2-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  height: 7.8rem;
  position: relative;
  width: 7.8rem;
  z-index: 1;
}
.card2-icon::after {
  content: "";
  position: absolute;
  animation: spin-r infinite 0.5s;
  background: linear-gradient(90deg, rgb(218, 33, 37) 33%, rgb(138, 36, 38) 100%);
  border-radius: 100%;
  inset: 0;
  height: 5.6rem;
  margin: auto;
  width: 5.6rem;
  z-index: -1;
}
.card2-icon-round {
  animation: small-big 2s infinite;
  background-color: #4A8DB1;
  border-radius: 100%;
  height: 7.8rem;
  width: 7.8rem;
  position: absolute;
  z-index: -1;
}

body,
html {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

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

body {
  font-size: 2.4rem;
  line-height: 1.55;
  background-color: #fff;
  color: #777;
  padding: 170px 0 0;
  overflow-x: hidden !important;
}
body.is-active {
  position: relative;
  overflow: hidden;
}
body.is-active::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  z-index: 5;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.card {
  background-color: transparent;
  border: none;
  padding: 0;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

p + p {
  margin-top: 1.8rem;
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

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

.inner-page {
  padding: 12.8rem 0 0;
}
.inner-page .header-row {
  max-width: 100%;
  padding: 3rem 0;
}

.w-100 {
  width: 100%;
}

.position-unset {
  position: unset;
}
.position-sticky {
  position: sticky;
}

.m-0 {
  margin: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}

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

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%;
  z-index: 5;
}

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

.c-pointer {
  cursor: pointer;
}

.d-flex {
  display: flex;
}

@media (min-width: 1200px) {
  .container {
    width: 1500px;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1550px) {
  .container {
    width: 160rem;
  }
}
@media (min-width: 1650px) {
  .container {
    max-width: 170rem;
  }
}
@media (max-width: 991px) {
  body {
    padding: 90px 0 0;
  }
  .section-transform {
    padding: 5rem 0 10rem;
  }
  .section-transform .form {
    margin-top: 5rem;
  }
  .section-transform .form {
    border-radius: 2rem;
    padding: 3rem;
  }
  .section-dummy {
    padding: 10rem 0 5rem;
  }
  .section-dummy .dummy {
    border-radius: 2rem;
  }
  .d-none-991 {
    display: none !important;
  }
  .d-block-991 {
    display: block !important;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .row .col-md-12 + .col-md-12 {
    margin-top: 3.5rem;
  }
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .d-none-767 {
    display: none;
  }
  .d-block-767 {
    display: block;
  }
}
.main-title {
  margin-bottom: 6rem;
}
.main-title2 {
  margin-bottom: 2rem;
}
.main-title span {
  color: #4A8DB1;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-title h2 {
  color: #161414;
  font-size: 5rem;
  line-height: 1.3;
  margin-top: 2rem;
}

.section-cta .inner {
  align-items: center;
  border-radius: 20px;
  background-color: #4A8DB1;
  padding: 5.4rem 6rem;
  display: flex;
}
.section-cta .left {
  color: #fff;
  padding-right: 4rem;
  width: calc(100% - 60rem);
}
.section-cta .left h4 {
  font-size: 5.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.section-cta .left p {
  font-weight: 400;
}
.section-cta .right {
  width: 60rem;
}
.section-cta .right .img-box {
  border-radius: 20px;
  height: 26rem;
  overflow: hidden;
  width: 100%;
}
.section-cta .right .img-box img {
  transition: all ease-in 0.2s;
}
.section-cta .right .img-box:hover img {
  transform: scale(1.1);
}
.section-cta .right .img-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-cta .right .btn2 {
  text-align: center;
  width: 49%;
}
.section-cta .right .btn2-group {
  justify-content: space-between;
  margin-top: 1rem;
}
.section-cta .right .btn2-group .btn2 + .btn2 {
  margin: 0;
}
.section-contact .img-box {
  border-radius: 20px;
  height: 69rem;
  min-height: 100%;
  overflow: hidden;
  width: 100%;
}
.section-contact .img-box img {
  transition: all ease-in 0.2s;
}
.section-contact .img-box:hover img {
  transform: scale(1.1);
}
.section-contact .img-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-contact .form {
  background-color: #EBF8FF;
  border-radius: 20px;
  padding: 4rem;
}
.section-contact .form-data {
  margin-top: 4rem;
}
.section-contact .form-group {
  border-bottom: 1px solid rgba(22, 20, 20, 0.2);
  display: flex;
  padding-bottom: 1.6rem;
  margin-bottom: 4rem;
}
.section-contact .form-icon {
  align-items: center;
  background-color: #EFD858;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  height: 6rem;
  width: 6rem;
}
.section-contact .form-icon img {
  max-width: 100%;
}
.section-contact .form-filed {
  padding-left: 2rem;
  width: calc(100% - 6rem);
}
.section-contact .form-label {
  color: #161414;
  display: block;
  font-size: 1.8rem;
}
.section-contact .form-control {
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  min-height: inherit;
}
.section-contact .form-control:focus {
  border: none;
  outline: none;
}
.section-service {
  background-color: #EBF8FF;
}
.section-service .main-title {
  margin-bottom: 4.8rem;
}
.section-service .card-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
}
.section-service .card-col {
  background-color: #fff;
  border-radius: 20px;
  margin: 1.2rem;
  position: relative;
  padding: 1rem;
  width: calc(25% - 2.4rem);
}
.section-service .card-col:hover .card-img img {
  transform: scale(1.1);
}
.section-service .card-col:hover .card-caption .right .arrow {
  background-color: #D64544;
  border-color: #D64544;
}
.section-service .card-col:hover .card-caption .right .arrow svg {
  transform: rotate(45deg);
}
.section-service .card-col:hover .card-caption .right .arrow path {
  stroke: #fff;
}
.section-service .card-img {
  border-radius: 16px;
  height: 23rem;
  overflow: hidden;
  width: 100%;
}
.section-service .card-img img {
  transition: all ease-in 0.2s;
}
.section-service .card-img:hover img {
  transform: scale(1.1);
}
.section-service .card-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-service .card-caption {
  align-items: center;
  display: flex;
  padding: 2.4rem 1.8rem;
}
.section-service .card-caption .left {
  padding-right: 2rem;
  width: calc(100% - 5rem);
}
.section-service .card-caption .left h4 {
  color: #161414;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.section-service .card-caption .left p {
  color: #777;
  font-size: 1.8rem;
  margin-top: 1rem;
}
.section-service .card-caption .right .arrow {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100%;
  display: block;
  height: 5rem;
  width: 5rem;
}
.section-service .card-caption .right .arrow svg {
  transition: ease-in all 0.2s;
}
.section-service .view-more {
  margin-top: 4.8rem;
}
.section-faq {
  background-color: #EBF8FF;
  padding: 10rem 0;
}
.section-faq .tab {
  display: none;
}
.section-faq .tab.active {
  display: block;
}
.section-faq .tab-links {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  justify-content: center;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}
.section-faq .tab-links li {
  margin: 0;
}
.section-faq .tab-links li a {
  background-color: #fff;
  border-radius: 30px;
  color: #000;
  display: block;
  padding: 1rem 3.2rem;
  text-decoration: none;
  border-bottom: none;
}
.section-faq .tab-content {
  padding: 15px;
}
.section-faq .tab-links li.active a,
.section-faq .tab-links li a:hover {
  background-color: #D64544;
  color: #fff;
}
.section-faq .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
.section-faq .accordion-header {
  cursor: pointer;
  color: #000;
  padding: 2rem 0;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  padding-right: 5rem;
}
.section-faq .accordion-header .icon {
  position: absolute;
  right: 20px;
  font-size: 18px;
}
.section-faq .accordion-body {
  display: none;
  padding: 2rem 0;
}
.section-why {
  background-color: #EBF8FF;
  padding: 10rem 0 9rem;
}
.section-why .title {
  margin-bottom: 5rem;
}
.section-why .title .text {
  color: #777;
}
.section-why .card-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.section-why .card-col {
  margin: 1.5rem;
  padding: 3rem;
  width: calc(33.3333333333% - 3rem);
}
.section-why .card-icon {
  height: 6rem;
  margin-bottom: 2.5rem;
  width: 6rem;
}
.section-why .card-icon img {
  max-width: 100%;
}
.section-why .card-text h4 {
  color: #000;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.section-why .card-text p {
  color: #777;
}

.inner-page-title {
  padding: 0 0 3rem;
}
.inner-page-title h1 {
  color: #4A8DB1;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 2rem;
  text-transform: uppercase;
  position: relative;
}
.inner-page-title h1::after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  height: 1px;
  left: 0;
  width: 100%;
}

.other-test {
  margin-top: 4rem;
}
.other-test h5 {
  background-color: #D64544;
  border-radius: 60px;
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.3;
  padding: 2rem 3rem;
  margin-bottom: 1.5rem;
}
.other-test p {
  color: #161414;
  font-weight: 600;
}

.sticky-icon {
  z-index: 1;
  position: fixed;
  top: 50%;
  right: 0%;
  width: 220px;
  display: flex;
  flex-direction: column;
  z-index: 55;
}

.sticky-icon a {
  transform: translate(160px, 0px);
  border-radius: 50px 0px 0px 50px;
  text-align: left;
  margin: 2px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  transition: all 0.8s;
}

.sticky-icon a:hover {
  color: #FFF;
  transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
  transform: rotate(360deg);
}

.phone {
  background-color: #D64544;
  color: #FFF;
}

.sticky-icon a i {
  background-color: #FFF;
  height: 40px;
  width: 40px;
  display: inline-block;
  color: #000;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.5s;
}
.sticky-icon a i img {
  max-width: 100%;
  position: relative;
  top: -4px;
}

.sticky-icon a i.fa-phone {
  background-color: #FFF;
  color: #FD1D1D;
}

.fa-arrow-circle-up {
  font-size: 30px;
}

#myBtn:hover {
  background-color: #555;
}

@media screen and (max-width: 1199px) {
  .section-service .card-col {
    width: calc(50% - 2.4rem);
  }
  .section-service .card-img {
    height: 40rem;
  }
}
@media screen and (max-width: 991px) {
  .main-title {
    margin-bottom: 4rem;
  }
  .main-title h2 {
    font-size: 4.8rem;
  }
  .section-cta .inner {
    flex-wrap: wrap;
    padding: 2.4rem;
  }
  .section-cta .inner .left {
    text-align: center;
    padding-right: 0;
    width: 100%;
  }
  .section-cta .inner .left h4 {
    font-size: 4rem;
  }
  .section-cta .inner .right {
    margin-top: 3rem;
    width: 100%;
  }
  .wpcf7-not-valid-tip{
    font-size: 14px !important;
  }
  .form-filed br{
    display: none !important;
  }
  .section-why .card-col {
    width: calc(50% - 3rem);
  }
  .section-faq .tab-links {
    justify-content: flex-start;
    padding-bottom: 2rem;
    white-space: nowrap;
    overflow-y: auto;
  }
  .inner-page-title {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 767px) {
  .sticky-icon {
    display: none;
  }
  .main-title {
    margin-bottom: 2.4rem;
  }
  .main-title h2 {
    font-size: 3.8rem;
  }
  .section-service .card-col {
    width: calc(100% - 2.4rem);
  }
  .section-why .card-col {
    padding: 2rem 0;
    text-align: center;
    width: calc(100% - 3rem);
  }
  .section-why .card-icon {
    margin: 0 auto 2rem;
  }
}
@media screen and (max-width: 574px) {
  .section-cta .right .btn2 {
    width: 100%;
  }
  .section-cta .right .btn2-group {
    flex-wrap: wrap;
    margin-top: 3rem;
  }
  .section-cta .right .btn2-group .btn2 + .btn2 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .section-contact .form-icon {
    display: none;
  }
  .section-contact .form-filed {
    padding-left: 0;
    width: 100%;
  }
}
.header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.15s;
  z-index: 60;
}
.header-row {
  background-color: #fff;
  padding: 3rem 0;
  transition: ease-out all 0.2s;
}
.header-row > a img {
  max-width: 150px;
}
.header.fixed {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  left: 0;
  position: fixed;
  top: 0;
}
.header.fixed .header-row {
  max-width: 100%;
}
.header ul {
  display: flex;
}
.header ul li {
  position: relative;
}
.header ul li + li {
  margin-left: 3rem;
}
.header ul li .nav-link {
  color: #555;
  font-size: 2rem;
  font-weight: 400;
  position: relative;
}
.header ul li .nav-link-height {
  color: #D64544;
  font-weight: 700;
  text-decoration: underline;
}
.header ul li .nav-link:hover {
  color: #4A8DB1;
}
.header ul li .btn2 {
  font-size: 2rem;
  font-weight: 700;
}
.header ul li a.active {
  color: #4A8DB1;
}

.header ul li a.btn2.active {
  color: #fff;
}

.header ul li a.active::before {
  opacity: 1;
}

.menu-icon {
  display: none;
}
.menu-icon label {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
}
.menu-icon label span {
  background-color: #4A8DB1;
  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);
}

.dropdown-item {
  color: #000;
  font-size: 1.8rem !important;
  line-height: 2.6rem;
  padding: 1rem 2.5rem;
}
.dropdown-item:hover {
  background-color: #4A8DB1;
  color: #fff;
}
.dropdown .dropdown-menu {
  border-radius: 5px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.2);
  border: none;
  background-color: #fff;
  display: none;
  min-width: 40rem;
  padding: 1rem 0;
  position: absolute;
}
.dropdown .dropdown-menu li a {
  display: block;
  padding: 1rem 2rem;
}
.dropdown .dropdown-menu li a:hover::before, .dropdown .dropdown-menu li a.active::before {
  display: none;
}
.dropdown .dropdown-menu li + li {
  margin-left: 0;
}

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

@media screen and (max-width: 1199px) {
  .header-row {
    margin: auto;
    border-radius: 0 0 30px 30px;
  }
  body{
    padding: 150px 0 0;
  }
}
@media screen and (min-width: 991px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .header-row > a img {
    max-width: 120px;
  }
}
@media (max-width: 991px) {
  .header {
    background-color: #fff;
    position: fixed;
    top: 0;
    padding: 10px 0;
    left: 0;
  }
  .header-row {
    border-radius: 0;
    position: relative;
    padding-left: 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .inner-page .header-row{
    padding: 0;
  }
  .header-row > a img {
    max-width: 180px;
  }
  .header-row .text-end .btn2 {
    margin-right: 8rem;
  }
  .header ul {
    background-color: #fff;
    bottom: 0;
    display: block;
    position: fixed;
    padding: 5rem;
    left: auto;
    right: 0;
    top: 88px;
    transform: translateX(100%);
    transition: transform 0.9s;
    width: 70%;
  }
  .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);
    height: 100vh;
    top: 137px;
  }
  .menu-icon {
    display: block;
    position: absolute;
    left: auto;
    right: -2rem;
    transform: scale(0.6);
  }
  .dropdown .dropdown-menu li + li {
    margin-top: 0;
  }
  .dropdown .dropdown-menu {
    box-shadow: none;
    display: block;
    height: inherit !important;
    min-width: inherit;
    position: inherit;
    transform: inherit !important;
    width: 100%;
    top: inherit;
    bottom: inherit;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
  .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: #444;
  font-size: 1.8rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
  min-height: 6rem;
  padding: 1.8rem 2rem;
  resize: none;
  width: 100%;
}
.form-control-textarea {
  min-height: 13.5rem;
}

.comman-text{
  margin-top: 3rem;
}
.comman-text ul{
  margin-top: 2.4rem;
}
.comman-text ul li + li{
  margin-top: 15px;
}

.comman-text ul li h4{
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.comman-text ul li a{
  color: #D64544;
  text-decoration: none;
}

.comman-text ul li a:hover{
  text-decoration: underline;
}

.h {
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}

.h1 {
  font-size: 5.4rem;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 4.5rem;
  }
}
.h2 {
  font-size: 4.6rem;
}
.h3 {
  font-size: 3.8rem;
}
.h3-1 {
  font-size: 3.6rem;
}
.h4 {
  font-size: 3rem;
}
.h4-1 {
  font-size: 2.8rem;
}
.h4-2 {
  font-size: 2.4rem;
}
.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 {
  background-color: #161414;
  padding: 10rem 0 3rem;
  position: relative;
}
.footer .about .logo {
  max-width: 150px;
}

.footer .about .logo img{
  max-width: 100%;
}

.footer .container {
  position: relative;
  z-index: 5;
}
.footer::after {
  content: "";
  position: absolute;
  background: url(../images/map.png) 0 0 no-repeat;
  background-size: auto;
  height: 100%;
  inset: 0;
  width: 100%;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -3rem;
  justify-content: space-between;
}
.footer-col {
  padding: 0 3rem;
}
.footer-col:nth-child(1) {
  width: 25%;
}
.footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
  max-width: 25rem;
  width: 18.75%;
}
.footer-col:nth-child(5) {
  max-width: 28rem;
}
.footer-col .about .logo {
  margin-bottom: 2rem;
}
.footer-col .about .text p {
  color: #fff;
  font-size: 1.8rem;
}
.footer-col .title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3.2rem;
}
.footer-col ul li {
  color: #fff;
  font-size: 1.8rem;
}
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-col ul li + li {
  margin-top: 2rem;
}
.footer-col ul.contact li {
  display: flex;
}
.footer-col ul.contact li span {
  height: 2.4rem;
  position: relative;
  top: 1px;
  width: 2.4rem;
}
.footer-col ul.contact li span img {
  max-width: 100%;
}
.footer-col ul.contact li p {
  padding-left: 1rem;
  width: calc(100% - 2.4rem);
}
.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 3rem;
  margin-top: 3rem;
}
.footer-bottom .left {
  color: #fff;
  font-size: 1.8rem;
}
.footer-bottom .right {
  align-items: center;
  display: flex;
}
.footer-bottom .right .icon + .icon {
  margin-left: 2rem;
}
.footer-bottom .right .icon-hover {
  display: none;
}
.footer-bottom .right .icon:hover .icon-n {
  display: none;
}
.footer-bottom .right .icon:hover .icon-hover {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 3rem;
  }
  .footer-col {
    margin: 2rem 0;
  }
  .footer-col:nth-child(1) {
    width: 100%;
  }
  .footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
    max-width: inherit;
    width: 50%;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-bottom .left {
    text-align: center;
    width: 100%;
  }
  .footer-bottom .right {
    margin-top: 3rem;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 690px) {
  .footer-col {
    margin: 2rem 0;
  }
  .footer-col:nth-child(2), .footer-col:nth-child(3), .footer-col:nth-child(4), .footer-col:nth-child(5) {
    max-width: inherit;
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */