html,
body {
  font-size: 16px;
}
header {
  position: fixed;
  width: 100%;
  top: 0rem;
  left: 0rem;
  z-index: 10;
  background: #ffffff;
  transition: all linear .2s;
  transform: translateY(0%);
  box-shadow: 0rem 0rem 1.5rem rgba(207, 205, 205, 0.25);
}
header .sitebar-mobile {
  display: none;
}
header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 0rem;
}
header .header-left {
  display: flex;
  align-items: center;
}
header .logo .logo-mobile {
  display: none;
}
header .logo img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(59%) saturate(3088%) hue-rotate(180deg) brightness(101%) contrast(113%);
}
header .logo-info {
  font-size: 0.75rem;
  font-family: "Poppins-Regular";
  padding-left: 2.3125rem;
  color: #0172FF;
  transition: all linear .1s;
  letter-spacing: 0.15rem;
}
header .menu .menu-list {
  display: flex;
  list-style-type: none;
  padding-inline-start: 0rem;
  margin-bottom: 0rem;
}
header .menu .menu-list > .menu-item {
  font-family: "Poppins-Light";
  font-size: 1.375rem;
  padding: 0.875rem 1.9375rem 1.25rem 1.6875rem;
}
header .menu .menu-list > .menu-item > a {
  color: #0172FF;
  text-decoration: none;
  transition: all linear .1s;
  letter-spacing: 0.06875rem;
}
header .menu .menu-list > .menu-item:last-child {
  padding-right: 0rem;
}
header .menu .menu-list > .menu-item:not(:first-child) {
  margin-left: 1.5625rem;
}
header .menu .menu-list .menu-item-has-children {
  transition: all linear .15s;
  position: relative;
  border-top-left-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
}
header .menu .menu-list .menu-item-has-children:hover {
  background: #ffffff;
}
header .menu .menu-list .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
header .menu .menu-list .sub-menu {
  transition: all linear .15s;
  border-radius: 0.1875rem;
  border-top-left-radius: 0rem;
  position: absolute;
  top: 100%;
  left: 0rem;
  width: max-content;
  padding-inline-start: 0rem;
  padding: 1.6875rem 2.5625rem 0.5625rem 1.6875rem;
  list-style-type: none;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
header .menu .menu-list .sub-menu .menu-item {
  font-size: 1rem;
  font-family: "Poppins-Light";
  margin-bottom: 1.625rem;
}
header .menu .menu-list .sub-menu .menu-item:hover a {
  color: #0172FF;
}
header .menu .menu-list .sub-menu .menu-item:hover a::after {
  width: 100%;
}
header .menu .menu-list .sub-menu a {
  transition: all linear .15s;
  color: #161719;
  text-decoration: none;
  position: relative;
}
header .menu .menu-list .sub-menu a::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  width: 0rem;
  height: 0.0625rem;
  background: #0172FF;
  transition: all linear .15s;
}
header .menu-bar {
  display: none;
}
header.trans {
  background: none;
  box-shadow: none;
}
header.trans .header-wrap {
  padding: 1.4375rem 0rem;
}
header.trans .header-left {
  transform: none;
}
header.trans .logo a:hover img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(59%) saturate(3088%) hue-rotate(205deg) brightness(101%) contrast(113%);
  transition: filter linear .1s;
}
header.trans .logo img {
  filter: none;
}
header.trans .menu-list > .menu-item:hover > a {
  color: #0172FF;
}
header.trans .menu-list > .menu-item > a {
  color: #ffffff;
}
header.trans .logo-info {
  color: #ffffff;
}
header.slide-up {
  background: none;
  transform: translateY(-100%);
}
@media screen and (max-width: 90rem) {
  header .logo a {
    display: inline-block;
    width: 100%;
  }
  header .logo img {
    width: 100%;
  }
  header .menu .menu-list > .menu-item:not(:first-child ) {
    margin-left: 0rem;
  }
}
@media screen and (max-width: 80rem) {
  header .menu .menu-list > .menu-item {
    font-size: 1.25rem;
  }
  header .menu .menu-list .sub-menu .menu-item {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  header .logo .logo-deskop {
    display: none;
  }
  header .logo .logo-mobile {
    display: inline;
  }
  header .logo-info {
    display: none;
  }
  header .menu {
    display: none;
  }
  header .menu-bar {
    display: block;
    width: 2rem;
    cursor: pointer;
  }
  header .menu-bar span {
    display: block;
    height: 0.1875rem;
    border-radius: 0.1875rem;
    background: #0172FF;
  }
  header .span-1 {
    width: 1.4375rem;
    margin-left: auto;
    margin-bottom: 0.625rem;
  }
  header .span-2 {
    width: 100%;
  }
  header .sitebar-mobile {
    opacity: 0;
    display: block;
    position: fixed;
    top: 0rem;
    left: -100%;
    width: 100%;
    z-index: 20;
    height: 100vh;
    overflow-y: auto;
    background: #0A173A;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .sitebar-mobile .menu-container {
    padding: 2.1875rem 0.9375rem;
    text-align: right;
  }
  header .sitebar-mobile .toggle-menu {
    width: 1.6875rem;
    height: 1.3125rem;
    margin-left: auto;
    margin-bottom: 2.1875rem;
    cursor: pointer;
  }
  header .sitebar-mobile .toggle-menu span {
    width: 100%;
    height: 0.1875rem;
    backface-visibility: hidden;
    border-radius: 0.1875rem;
    position: relative;
    display: block;
    transition: all linear .1s;
  }
  header .sitebar-mobile .toggle-menu span::before,
  header .sitebar-mobile .toggle-menu span::after {
    content: "";
    position: absolute;
    left: 0rem;
    background: #0172FF;
    width: 100%;
    height: 0.1875rem;
    backface-visibility: hidden;
  }
  header .sitebar-mobile .toggle-menu span::before {
    top: 0.5625rem;
    transform: rotate(45deg);
  }
  header .sitebar-mobile .toggle-menu span::after {
    top: 1.125rem;
    transform: rotate(-45deg) translate(0.375rem, -0.4375rem);
  }
  header .sitebar-mobile .phone-contact {
    margin-bottom: 1.25rem;
  }
  header .sitebar-mobile .phone-contact a {
    font-size: 1.5rem;
    font-family: "Poppins-Bold";
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 0.0625rem;
    line-height: 1;
  }
  header .sitebar-mobile .phone-contact span {
    display: block;
    color: #acd0ed;
    font-size: 0.625rem;
    font-family: "Poppins-Regular";
    text-transform: uppercase;
  }
  header .sitebar-mobile .menu-mobile .menu-list {
    list-style-type: none;
    padding-inline-start: 0rem;
    margin-bottom: 0rem;
  }
  header .sitebar-mobile .menu-mobile .menu-list > .menu-item {
    font-size: 2.5rem;
    font-family: "Poppins-Bold";
  }
  header .sitebar-mobile .menu-mobile .menu-list > .menu-item > a {
    color: #ffffff;
    line-height: 5rem;
    text-decoration: none;
  }
  header .sitebar-mobile .menu-mobile .menu-list .sub-menu {
    border-right: 0.0625rem solid #0172FF;
    padding: 0rem 1rem;
    display: none;
  }
  header .sitebar-mobile .menu-mobile .menu-list .sub-menu .menu-item {
    font-size: 1rem;
    text-transform: uppercase;
    font-family: "Poppins-Regular";
  }
  header .sitebar-mobile .menu-mobile .menu-list .sub-menu .menu-item a {
    color: white;
    text-decoration: none;
    line-height: 2.5rem;
    letter-spacing: 0.0625rem;
  }
  header .sitebar-mobile .socials-menu {
    margin-top: 1.25rem;
  }
  header .sitebar-mobile .socials-list {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin-bottom: 1.25rem;
  }
  header .sitebar-mobile .socials-list li:not(:first-child) {
    margin-left: 1rem;
  }
  header .sitebar-mobile .socials-list a {
    width: 3.75rem;
    height: 3.75rem;
    background: #ffffff;
    -webkit-transition: all linear .25s;
    transition: all linear .25s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .sitebar-mobile .socials-list a:hover {
    background: #0172FF;
  }
  header .sitebar-mobile .socials-list a:hover i {
    filter: invert(100%) sepia(2%) saturate(8%) hue-rotate(325deg) brightness(102%) contrast(104%);
  }
  header .sitebar-mobile .socials-list i {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) saturate(100%) invert(29%) sepia(59%) saturate(3088%) hue-rotate(205deg) brightness(101%) contrast(113%);
  }
  header .sitebar-mobile .menu-copyright {
    margin-bottom: 1.25rem;
    font-size: 0.625rem;
    color: #9497a4;
    font-family: "Poppins-Regular";
  }
  header .sitebar-mobile .menu-copyright p {
    line-height: 1rem;
    margin-bottom: 0rem;
  }
  header .sitebar-mobile.open {
    left: 0%;
    opacity: 1;
  }
  header.trans .menu-bar span {
    background: #ffffff;
  }
}
@media screen and (max-width: 47.9375rem) {
  header .header-wrap {
    padding: 1.4375rem 1.125rem 0.8125rem 0.875rem;
  }
  header .logo img {
    max-width: 75%;
  }
}
* {
  padding: 0rem;
  margin: 0rem;
  box-sizing: border-box;
}
img {
  max-width: 100%;
}
.container {
  width: 100%;
  margin: 0rem auto;
  padding: 0rem 1.25rem;
}
.container-fluid {
  width: 100%;
  padding: 0rem;
}
.background {
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
}
.absolute {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 64rem) {
  .effect-scroll {
    visibility: hidden;
  }
}
@media screen and (max-width: 48rem) {
  .container {
    max-width: 100%;
    padding: 0rem 0.9375rem;
  }
}
@media screen and (min-width: 22.5rem) {
  .container {
    max-width: 100%;
  }
}
@media screen and (min-width: 36rem) {
  .container {
    max-width: 33.75rem;
  }
}
@media screen and (min-width: 48rem) {
  .container {
    max-width: 45rem;
  }
}
@media screen and (min-width: 62rem) {
  .container {
    max-width: 60rem;
  }
}
@media screen and (min-width: 75rem) {
  .container {
    max-width: 71.25rem;
  }
}
@media screen and (min-width: 80rem) {
  .container {
    max-width: 76.25rem;
  }
}
@media screen and (min-width: 90rem) {
  .container {
    max-width: 82.5rem;
  }
}
@media screen and (min-width: 100rem) {
  .container {
    max-width: 96.25rem;
  }
}
@media screen and (min-width: 108.75rem) {
  .container {
    max-width: 105rem;
  }
}
@media screen and (min-width: 125rem) {
  html,
  body {
    font-size: calc(16/1920 * 100vw);
  }
}
.btn-submit a {
  display: inline-block;
  height: 4.25rem;
  font-size: 1.125rem;
  font-family: "Poppins-SemiBold";
  color: #ffffff;
  background: #0172FF;
  text-decoration: none;
  border-radius: 4.25rem;
  line-height: 4.25rem;
  padding-left: 2.875rem;
  padding-right: 4.0625rem;
  position: relative;
  letter-spacing: 0.05625rem;
  border: 2px solid #0172FF;
  transition: all linear .2s;
}
.btn-submit a:hover {
  background: #ffffff;
  color: #0172FF;
}
.btn-submit a:hover::after {
  border-color: #0172FF;
}
.btn-submit a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.125rem;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.5625rem;
  height: 0.5625rem;
  border-bottom: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
}
@media screen and (max-width: 90rem) {
  .btn-submit a {
    height: 3.9375rem;
    line-height: 3.937575rem;
    border-radius: 3.9375rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  .btn-submit a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .btn-submit a {
    font-size: 0.875rem;
  }
}
.banner-home {
  color: #ffffff;
}
.banner-home .container-fluid {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.banner-home .wrap-background .image-parallax {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  top: 0rem;
  left: 0rem;
  bottom: 0rem;
  right: 0rem;
}
.banner-home .banner-content {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.banner-home .row {
  margin: 0rem;
  opacity: 0;
  transform: translateY(6.25rem);
  animation: contentTransform 1.5s forwards;
}
.banner-home .col-9 {
  padding: 0rem;
  padding-left: 6.6875rem;
}
.banner-home h1 {
  font-family: "Poppins-Bold";
  font-size: 10rem;
  line-height: 8.8125rem;
  padding-bottom: 1.125rem;
}
.banner-home h2 {
  font-family: "Poppins-Light";
  font-size: 2.1875rem;
  padding-bottom: 2.3125rem;
  padding-left: 0.5rem;
  letter-spacing: 0.055rem;
}
.banner-home .btn-submit a {
  background: #0a249d;
  border-color: #0a249d;
}
.banner-home .btn-submit a:hover {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.banner-home .btn-submit a:hover::after {
  border-color: #ffffff;
}
.banner-home .banner-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.73rem;
}
.banner-home .line {
  height: 4.5456rem;
  width: 0.0625rem;
  background: #ffffff;
}
.banner-home .round {
  width: 0.975rem;
  height: 0.975rem;
  border: 0.0625rem solid #ffffff;
  background: #161719;
  position: absolute;
  top: 20.62%;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scollMouse 3s infinite;
}
.mobile {
  display: none;
}
@keyframes scollMouse {
  0% {
    top: 20.62%;
  }
  50% {
    top: 57.92%;
  }
  100% {
    top: 20.62%;
  }
}
@keyframes contentTransform {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@media screen and (max-width: 90rem) {
  .banner-home .col-9 {
    padding-left: 6.25rem;
  }
  .banner-home h1 {
    font-size: 7.5rem;
    line-height: 6.875rem;
  }
  .banner-home h2 {
    font-size: 2rem;
    padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 80rem) {
  .banner-home .col-9 {
    padding-left: 6.25rem;
  }
  .banner-home h1 {
    font-size: 6.25rem;
    line-height: 6.25rem;
    margin-bottom: 0rem;
  }
  .banner-home h2 {
    font-size: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  .banner-home .col-9 {
    width: 100%;
    padding-left: 0rem;
    text-align: center;
  }
  .banner-home h1 {
    font-size: 4.375rem;
    line-height: 1.2;
    padding-bottom: 1.5rem;
  }
  .banner-home h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
}
@media screen and (max-width: 47.9375rem) {
  .banner-home .col-9 {
    width: 100%;
    padding-left: 0rem;
    text-align: center;
  }
  .banner-home h1 {
    font-size: 4.0625rem;
    line-height: 1;
    padding-bottom: 0.875rem;
  }
  .banner-home h2 {
    font-size: 1.125rem;
  }
  .banner-home .line {
    height: 3.0306rem;
  }
  .banner-home .round {
    width: 0.65rem;
    height: 0.65rem;
  }
  .banner-home .banner-down {
    bottom: 11.14%;
  }
}
.block-brands {
  background: #ffffff;
}
.block-brands .container {
  background: #ffffff;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.block-brands h3 {
  font-family: "Poppins-SemiBold";
  color: #0a249d;
  font-size: 3.125rem;
  text-align: center;
  padding: 2.1875rem 0rem;
}
.block-brands .col-image {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 64%;
}
.block-brands .col-title {
  padding-left: 6rem;
  margin-top: -0.25rem;
  width: 36%;
}
.block-brands .row-brand {
  padding: 2.1875rem 11.625rem;
}
.block-brands .row-brand .title {
  font-size: 4.375rem;
  font-family: "Poppins-Bold";
  text-align: left;
  line-height: 6.1875rem;
  padding-bottom: 1.125rem;
}
.block-brands .row-brand .title a {
  text-decoration: none;
  color: #DCDEE5;
}
.block-brands .row-brand .active a {
  color: rgba(1, 114, 255, 0.6);
}
.block-brands .row-brand .wrap-image {
  position: relative;
  padding-top: 69%;
}
.block-brands .row-brand .wrap-image .item-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-brands .row-brand .wrap-image .item-image img {
  width: 100%;
  height: 100%;
}
.block-brands .row-brand .wrap-image .item-image {
  opacity: 0;
  transition: opacity 0.5s;
}
.block-brands .row-brand .wrap-image .show {
  opacity: 1;
}
.block-brands .text-note {
  font-size: 1.25rem;
  font-family: "Poppins-Light";
  color: #2D3130;
  text-align: center;
  letter-spacing: 0.0625rem;
  padding: 1.25rem 0rem;
}
.block-brands .mobile {
  display: none;
}
@media screen and (max-width: 109.375rem) {
  .block-brands .row-brand {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
@media screen and (max-width: 90rem) {
  .block-brands .container {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .block-brands .col-title {
    padding-left: 2.75rem;
  }
  .block-brands .row-brand .title {
    font-size: 3.125rem;
    line-height: inherit;
    padding-bottom: 0.625rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  .block-brands .container {
    padding: 0px;
    padding-bottom: 1.75rem;
    padding-top: 1.75rem;
  }
  .block-brands .desktop {
    display: none;
  }
  .block-brands .mobile {
    display: block;
  }
  .block-brands h3 {
    font-size: 1.875rem;
    padding: 1.25rem 3.125rem;
    margin-bottom: 0rem;
  }
  .block-brands .row-brand {
    padding-bottom: 1.375rem;
    padding-top: 1.8125rem;
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .block-brands .row-brand .item {
    position: sticky;
    padding-top: 100%;
    top: 0rem;
    overflow: hidden;
    height: 100vh;
  }
  .block-brands .row-brand .item a {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
    height: 100%;
  }
  .block-brands .row-brand .img-parallax {
    position: absolute;
    top: 0;
    pointer-events: none;
    height: 100%;
    object-fit: cover;
  }
  .block-brands .row-brand .title {
    color: #ffffff;
    font-size: 3.125rem;
    position: absolute;
    top: 50%;
    left: 0rem;
    right: 0rem;
    transform: translateY(-50%);
    text-align: center;
  }
  .block-brands .text-note {
    padding: 0.75rem 0rem 1.25rem 0rem;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    max-width: 18.75rem;
    margin: auto;
  }
}
footer ul {
  list-style-type: none;
  margin: 0rem;
  padding: 0rem;
}
footer a {
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}
footer .container {
  max-width: 70rem;
  padding: 6.25rem 0.9375rem 5.75rem;
}
footer .row {
  margin: 0rem;
}
footer .row > * {
  padding: 0rem;
}
footer .row .col-auto:not(:last-child) {
  padding-right: 7.75rem;
}
footer .row .col-auto:last-child {
  flex: 1;
}
footer .col-auto:last-child h2 {
  text-align: center;
  padding-right: 4.0625rem;
}
footer .col-auto:last-child .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .col-auto:last-child .menu-item {
  width: auto;
  flex: 0 0 auto;
  padding-bottom: 0rem;
}
footer .col-auto:last-child .menu-item:first-child {
  padding-right: 6.5625rem;
}
footer .col-auto:last-child .menu-item:nth-child(2) {
  padding-right: 9.0625rem;
}
footer .col-auto:last-child .menu-item:last-child {
  padding-right: 0rem;
}
footer .col-auto:last-child .menu-item a {
  display: block;
}
footer .col-auto:last-child .menu-item a:not(:last-of-type) {
  padding-bottom: 2.1875rem;
}
footer h2 {
  margin: 0rem;
  padding: 0rem;
  font-family: "Poppins-Medium";
  font-size: 1.375rem;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.06875rem;
  padding-bottom: 2.8125rem;
}
footer .menu-item {
  font-family: "Poppins-ExtraLight";
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.05rem;
}
footer .menu-item:not(:last-of-type) {
  padding-bottom: 2.1875rem;
}
footer .menu-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer .bottom-footer {
  padding-top: 3.1875rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer .social-introduce {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
}
footer .social li {
  display: inline-block;
  padding-right: 0.5rem;
}
footer .social li:last-of-type {
  padding-right: 4rem;
}
footer .social a {
  width: 2.6875rem;
  height: 2.6875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
footer .social a:hover {
  background-color: #0172FF;
}
footer .social img {
  object-fit: contain;
  height: 0.903125rem;
}
footer .introduce {
  max-width: 10rem;
  font-family: "Poppins-Regular";
  font-size: 0.625rem;
  color: #9497A4;
}
footer .phone-number {
  display: inline-block;
  font-family: "Poppins-Medium";
  font-size: 1.375rem;
  color: #ffffff;
  letter-spacing: 0.06875rem;
  padding-right: 1.5625rem;
}
@media only screen and (max-width: 105rem) {
  footer .row {
    justify-content: space-between;
  }
  footer .row .col-auto:not(:last-child) {
    padding-right: 0rem;
  }
  footer .row .col-auto:last-child {
    max-width: 37.5rem;
  }
  footer .col-auto:last-child .menu {
    justify-content: space-between;
  }
  footer .col-auto:last-child .menu-item:not(:last-child) {
    padding-right: 0rem;
  }
  footer h2 {
    margin: 0rem;
    padding: 0rem;
    font-family: "Poppins-Medium";
    font-size: 1.375rem;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.06875rem;
    padding-bottom: 2.375rem;
  }
  footer .menu-item {
    font-family: "Poppins-ExtraLight";
    font-size: 1rem;
    line-height: 1;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.05rem;
  }
  footer .menu-item:not(:last-of-type) {
    padding-bottom: 2.5rem;
  }
  footer .menu-item a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
  footer .bottom-footer {
    padding-top: 3.1875rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  footer .social-introduce {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
  }
  footer .social li {
    display: inline-block;
    padding-right: 0.75rem;
  }
  footer .social li:last-of-type {
    padding-right: 3.5rem;
  }
  footer .social a {
    width: 2.6875rem;
    height: 2.6875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  footer .social a:hover {
    background-color: #0172FF;
  }
  footer .social i {
    font-size: 0.903125rem;
    color: #1c2330;
  }
  footer .introduce {
    max-width: 12.875rem;
    font-family: "Poppins-Regular";
    font-size: 0.625rem;
    color: #9497A4;
  }
  footer .phone-number {
    display: inline-block;
    font-family: "Poppins-Medium";
    font-size: 1.375rem;
    color: #ffffff;
  }
}
@media only screen and (max-width: 90rem) {
  footer .container {
    padding: 5rem 3.75rem 5rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  footer .container {
    padding: 4.4375rem 0.9375rem 3.75rem;
  }
  footer .menu-container {
    display: none;
  }
  footer .bottom-footer {
    flex-direction: column;
    justify-content: center;
    padding-top: 0rem;
  }
  footer .phone-number {
    order: 1;
    padding-bottom: 1rem;
    padding-right: 0rem;
  }
  footer .list-social {
    padding-bottom: 1.625rem;
  }
  footer .social-introduce {
    order: 2;
    flex-direction: column;
    justify-content: center;
  }
  footer .social li {
    padding-right: 0.5rem;
  }
  footer .social li:last-of-type {
    padding-right: 0rem;
  }
  footer .introduce {
    text-align: center;
  }
  footer .introduce span {
    display: block;
  }
}
.text-request {
  background: #ffffff;
}
.text-request .container-fluid {
  position: relative;
  padding-bottom: 41.66666667%;
  overflow: hidden;
}
.text-request .request-parallax {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.text-request .bg-img,
.text-request .overlay {
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
  right: 0;
  bottom: 0;
  position: absolute;
}
.text-request img.bg-img {
  object-fit: cover;
}
.text-request .overlay {
  background-color: #0a249d;
  opacity: 0.9;
}
.text-request .wrapper {
  width: 100%;
  max-width: 80rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  text-align: center;
  padding-top: 1.875rem;
}
.text-request h2 {
  font-family: "Poppins-Bold";
  font-size: 5rem;
  color: #ffffff;
}
.text-request .text {
  font-family: "Poppins-Regular";
  font-size: 2.125rem;
  color: #ffffff;
  letter-spacing: 0.0425rem;
  padding-bottom: 2.625rem;
}
.text-request .btn-submit a {
  border: 0.125rem solid #ffffff;
  background-color: transparent;
}
.text-request .btn-submit a:hover {
  border-color: #0172FF;
  background: #0172FF;
  color: #ffffff;
}
.text-request .btn-submit a:hover::after {
  border-color: #ffffff;
}
@media only screen and (max-width: 105rem) {
  .text-request h2 {
    font-size: 3.75rem;
  }
  .text-request .text {
    font-size: 1.875rem;
    letter-spacing: 0.0375rem;
    padding-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .text-request .container-fluid {
    padding-bottom: 110.43256997%;
  }
  .text-request h2 {
    font-size: 3.125rem;
  }
  .text-request .text {
    font-size: 1.5625rem;
    letter-spacing: 0.03125rem;
    padding-bottom: 1.875rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .text-request h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
    margin: 0rem;
  }
  .text-request .wrapper {
    padding-top: 0rem;
    padding-bottom: 0.5rem;
  }
  .text-request .text {
    font-family: "Poppins-Light";
    font-size: 1.125rem;
    letter-spacing: 0.0225rem;
    padding-bottom: 1.6875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 20.625rem;
    margin: 0rem auto;
  }
}
.text-noimg {
  background: #ffffff;
}
.text-noimg .container-fluid {
  padding-top: 3.375rem;
  padding-bottom: 10.375rem;
}
.text-noimg .wrapper {
  width: 100%;
  max-width: 80rem;
  margin: 0rem auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  text-align: center;
}
.text-noimg h2 {
  font-family: "Poppins-Bold";
  font-size: 5rem;
  color: #05CCFD;
}
.text-noimg .description {
  font-family: "Poppins-Light";
  font-size: 1.25rem;
  color: #2D3130;
  letter-spacing: 0.03125rem;
  padding-bottom: 3rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  max-width: 56.25rem;
  margin: 0rem auto;
}
.text-noimg .btn-submit a {
  letter-spacing: 0.05625rem;
}
@media only screen and (max-width: 105rem) {
  .text-noimg h2 {
    font-size: 3.75rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .text-noimg h2 {
    font-size: 3.125rem;
  }
  .text-noimg .description {
    font-size: 0.9375rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .text-noimg .container-fluid {
    padding-top: 3.3125rem;
    padding-bottom: 5.5rem;
  }
  .text-noimg .wrapper {
    max-width: 20rem;
  }
  .text-noimg h2 {
    margin-bottom: 0rem;
    font-size: 2.5rem;
    padding-bottom: 0.9375rem;
  }
  .text-noimg .description {
    font-size: 0.8125rem;
    letter-spacing: 0.020625rem;
    padding-bottom: 1.4375rem;
    line-height: 1.5rem;
  }
  .text-noimg .btn-submit a {
    height: 3.9375rem;
    line-height: 3.9375rem;
    letter-spacing: 0.04375rem;
    font-size: 0.875rem;
  }
}
.list-comments {
  background: #ffffff;
}
.list-comments .container-fluid {
  max-width: 120rem;
  padding-top: 9.375rem;
  padding-left: 2.875rem;
  padding-right: 2.875rem;
  padding-bottom: 3.125rem;
}
.list-comments .title-block {
  padding-bottom: 6.25rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.list-comments .title {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
}
.list-comments h2 {
  margin: 0rem;
  padding: 0rem;
  display: inline-block;
  font-family: "Poppins-Bold";
  font-size: 8rem;
  color: #2D3130;
  padding-left: 19.375rem;
  line-height: 1;
}
.list-comments .small-title {
  display: inline-block;
  font-family: "Poppins-Regular";
  font-size: 2.5rem;
  color: #2D3130;
  padding-left: 2.1875rem;
  padding-bottom: 1.875rem;
  letter-spacing: 0.125rem;
  line-height: 1;
}
.list-comments .ultilities {
  display: inline-block;
  padding-right: 9.375rem;
  padding-bottom: 2.65625rem;
}
.list-comments .ultilities a {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #161719;
}
.list-comments .ultilities a:hover span {
  transform: translateX(-0.3125rem);
}
.list-comments .ultilities a:hover img {
  transform: translateX(0.3125rem);
}
.list-comments .ultilities span {
  display: inline-block;
  font-size: 1rem;
  font-family: "Poppins-Light";
  padding-right: 0.4375rem;
  letter-spacing: 0.15rem;
  transition: transform linear .2s;
}
.list-comments .ultilities img {
  transition: transform linear .2s;
  width: 1.25rem;
}
.list-comments .comments {
  margin: -1.625rem -1.4375rem;
}
.list-comments .comment {
  padding: 1.625rem 1.4375rem;
  width: 33.33333333%;
}
.list-comments .comment:nth-child(3n+2) {
  margin-top: -2.8125rem;
}
.list-comments .comment:nth-child(3n+1) {
  margin-bottom: 2.8125rem;
}
.list-comments .content {
  position: relative;
  box-shadow: 0rem 0rem 1.5rem rgba(133, 143, 191, 0.07);
  border-radius: 0.8125rem;
  padding: 3.1875rem 2.625rem 3.625rem 4.25rem;
  transition: all 0.4s ease;
}
.list-comments .author {
  font-family: "Poppins-SemiBold";
  font-size: 1.4375rem;
  color: #161719;
  padding-bottom: 0.75rem;
}
.list-comments .star-review {
  list-style-type: none;
  margin: 0rem;
  padding: 0rem;
  padding-bottom: 2.734375rem;
}
.list-comments .star-review li {
  display: inline-block;
}
.list-comments .star-review li:not(:last-of-type) {
  padding-right: 0.5625rem;
}
.list-comments .star-review li img {
  width: 1.5rem;
  height: 1.4375rem;
}
.list-comments .description {
  font-family: "Poppins-Light";
  font-size: 0.875rem;
  letter-spacing: 0.0175rem;
  color: #2D3130;
  line-height: 1.875rem;
}
.list-comments .block-read {
  padding-top: 1.5625rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.list-comments .icon {
  width: 3.3125rem;
  height: 3.3125rem;
  border-radius: 50%;
  box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-comments .icon img {
  object-fit: contain;
  width: 2.179375rem;
}
.list-comments .text {
  flex: 1;
  padding-left: 0.8125rem;
  font-family: "Poppins-Regular";
  font-size: 0.9375rem;
}
.list-comments .text a {
  color: #2D3130;
  text-decoration: none;
}
@media only screen and (max-width: 105rem) {
  .list-comments .container-fluid {
    padding-top: 6rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .list-comments h2 {
    font-size: 6.25rem;
    padding-left: 6.25rem;
  }
  .list-comments .small-title {
    font-size: 2rem;
    padding-left: 2.5rem;
  }
  .list-comments .ultilities {
    padding-right: 3.75rem;
  }
  .list-comments .content {
    padding: 2.5rem 1.875rem 2.75rem 2.5rem;
  }
  .list-comments .star-review {
    padding-bottom: 2.5rem;
  }
  .list-comments .star-review li:not(:last-of-type) {
    padding-right: 0.5rem;
  }
  .list-comments .block-read {
    padding-top: 3.5rem;
  }
  .list-comments .text {
    padding-left: 0.75rem;
  }
}
@media only screen and (min-width: 64rem) {
  .list-comments .content:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0rem 0rem 1.5rem rgba(133, 143, 191, 0.25);
  }
}
@media only screen and (max-width: 90rem) {
  .list-comments .content:hover {
    transform: translateY(-0.5rem);
  }
}
@media only screen and (max-width: 63.9375rem) {
  .list-comments .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .list-comments .slick-list {
    padding: 0.5rem 20% 0.5rem 20%!important;
  }
  .list-comments .comments {
    background: rgba(133, 143, 191, 0.03);
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    margin: 0;
  }
  .list-comments .slick-slide {
    margin: 0rem 0.5rem;
  }
  .list-comments .title-block {
    justify-content: center;
  }
  .list-comments .title {
    flex-direction: column;
    align-items: center;
  }
  .list-comments h2 {
    padding-left: 0rem;
  }
  .list-comments .ultilities {
    display: none;
  }
  .list-comments .small-title {
    padding-left: 0rem;
    padding-top: 0.625rem;
  }
  .list-comments .author {
    text-align: center;
  }
  .list-comments .star-review {
    text-align: center;
  }
  .list-comments .description {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-comments .block-read {
    max-width: 12.5rem;
    margin: 0rem auto;
  }
  .list-comments .content {
    background: white;
  }
  .list-comments .comment:nth-child(3n+2) {
    margin-top: 0rem;
  }
  .list-comments .comment:nth-child(3n+1) {
    margin-bottom: 0rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .list-comments .container-fluid {
    padding-top: 2.625rem;
  }
  .list-comments .slick-list {
    padding: 0.5rem 3.9375rem 0.5rem 3.9375rem !important;
  }
  .list-comments .title-block {
    justify-content: center;
    padding-bottom: 0.4375rem;
  }
  .list-comments h2 {
    font-size: 4.375rem;
  }
  .list-comments .small-title {
    letter-spacing: 0.05625rem;
    font-size: 1.125rem;
  }
  .list-comments .comment {
    padding: 0rem;
  }
  .list-comments .content {
    text-align: center;
    padding: 1.9375rem 1.4375rem 2.25rem 2.3125rem;
  }
  .list-comments .author {
    font-size: 1rem;
    padding-bottom: 0rem;
  }
  .list-comments .star-review {
    padding-bottom: 0.9375rem;
    margin-left: -0.9375rem;
  }
  .list-comments .star-review li img {
    width: 1.1875rem;
    height: 1.125rem;
  }
  .list-comments .star-review li:not(:last-of-type) {
    padding-right: 0.125rem;
  }
  .list-comments .description {
    font-size: 0.75rem;
    line-height: 1.25rem;
    text-align: left;
  }
  .list-comments .block-read {
    display: inline-flex;
    padding-top: 0.9375rem;
    margin-left: -0.9375rem;
  }
  .list-comments .icon {
    width: 1.8125rem;
    height: 1.8125rem;
  }
  .list-comments .icon img {
    width: 1.1875rem;
  }
  .list-comments .text {
    flex: 0 0 auto;
    font-size: 0.625rem;
    display: inline-block;
    max-width: 100%;
    padding-left: 0.4375rem;
  }
}
.our-work {
  color: #161719;
  background: #ffffff;
}
.our-work .container {
  padding-top: 8.6875rem;
  padding-bottom: 6.75rem;
}
.our-work .our-work-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.9375rem;
}
.our-work h2 {
  font-size: 10rem;
  font-family: "Poppins-Bold";
  padding-left: 6.625rem;
  padding-right: 1.625rem;
}
.our-work .view-all {
  padding-right: 2.125rem;
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.our-work .view-all::after {
  content: "";
  position: absolute;
  top: calc(100% + 1.5625rem);
  left: 0rem;
  width: 100%;
  height: 0.0625rem;
  background: #E9E9E9;
}
.our-work .view-all a {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #161719;
}
.our-work .view-all a:hover span {
  transform: translateX(-0.3125rem);
}
.our-work .view-all a:hover img {
  transform: translateX(0.3125rem);
}
.our-work .view-all span {
  display: inline-block;
  font-size: 1rem;
  font-family: "Poppins-Light";
  padding-right: 0.4375rem;
  letter-spacing: 0.15rem;
  transition: transform linear .2s;
}
.our-work .view-all img {
  transition: transform linear .2s;
  width: 1.25rem;
}
.our-work .row {
  margin: 0rem -1.1875rem;
}
.our-work .col-6 {
  padding: 0rem 1.8125rem;
  margin-bottom: 3.625rem;
}
.our-work .col-inner {
  text-decoration: none;
}
.our-work .col-inner:hover .background-opacity {
  transform: translateY(0%);
}
.our-work .col-inner:hover .content {
  opacity: 1;
  transform: translateY(0rem);
}
.our-work .image {
  padding-top: 73.077%;
  position: relative;
  overflow: hidden;
}
.our-work .background-opacity {
  transform: translateY(-100%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.our-work .content {
  width: 100%;
  position: absolute;
  left: 0rem;
  bottom: 4rem;
  padding-left: 4.25rem;
  padding-right: 5.6875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.our-work h3 {
  font-size: 3.75rem;
  font-family: "Poppins-SemiBold";
  line-height: 4.5rem;
  margin-bottom: 0rem;
}
.our-work .sub-title {
  font-size: 1.125rem;
  font-family: "Poppins-Light";
  letter-spacing: 0.0281rem;
}
.our-work .icon {
  width: 1.75rem;
}
.our-work .icon img {
  width: 100%;
}
@media screen and (max-width: 90rem) {
  .our-work .container {
    padding-bottom: 3.75rem;
    padding-top: 4.615rem;
  }
  .our-work h2 {
    font-size: 7.5rem;
    padding-left: 4.375rem;
  }
  .our-work .view-all::after {
    top: calc(100% + 0.8rem);
  }
  .our-work .row {
    margin: 0rem -1.25rem;
  }
  .our-work .col-6 {
    padding: 0rem 1.25rem;
    margin-bottom: 2.5rem;
  }
  .our-work .content {
    padding-left: 1.875rem;
    padding-right: 3.125rem;
  }
  .our-work h3 {
    font-size: 3.125rem;
    line-height: 3.875rem;
  }
}
@media screen and (max-width: 80rem) {
  .our-work .container {
    padding-bottom: 3.75rem;
    padding-top: 4.615rem;
  }
  .our-work h2 {
    font-size: 6.25rem;
    padding-left: 3.125rem;
    padding-right: 1.25rem;
  }
  .our-work .view-all::after {
    top: calc(100% + 0.8rem);
  }
  .our-work .row {
    margin: 0rem -0.9375rem;
  }
  .our-work .col-6 {
    padding: 0rem 0.9375rem;
    margin-bottom: 1.875rem;
  }
  .our-work .content {
    padding-right: 1.875rem;
    bottom: 1.875rem;
  }
  .our-work h3 {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }
  .our-work .sub-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  .our-work .our-work-top {
    display: block;
    text-align: center;
    padding-bottom: 2.4375rem;
  }
  .our-work h2 {
    font-size: 4.375rem;
    padding: 0rem;
    display: inline-block;
    margin-bottom: 0rem;
    position: relative;
    margin-bottom: 1rem;
  }
  .our-work h2::after {
    content: "";
    position: absolute;
    width: calc(100% - 2.5rem);
    height: 0.125rem;
    background: #F4F4F4;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.25rem;
  }
  .our-work .view-all {
    padding-right: 0rem;
    justify-content: center;
  }
  .our-work .view-all::after {
    display: none;
  }
  .our-work .view-all a {
    justify-content: center;
  }
  .our-work .row {
    margin: 0rem -0.625rem;
  }
  .our-work .col-6 {
    padding: 0rem 0.625rem;
    margin-bottom: 1.25rem;
  }
  .our-work .content {
    justify-content: center;
    text-align: center;
  }
  .our-work h3 {
    font-size: 2.25rem;
  }
  .our-work .icon {
    display: none;
  }
}
@media screen and (max-width: 47.9375rem) {
  .our-work .container {
    padding-top: 1.9275rem;
    padding-bottom: 2.125rem;
  }
  .our-work .view-all span {
    font-size: 0.625rem;
    letter-spacing: 0.09375rem;
    padding-right: 0.25rem;
  }
  .our-work .view-all img {
    width: 0.625rem;
  }
  .our-work .row {
    margin: 0rem;
  }
  .our-work .col-6 {
    padding: 0rem 0.625rem;
    width: 100%;
    margin-bottom: 1.75rem;
  }
  .our-work .image {
    padding-top: 73%;
  }
  .our-work .content {
    padding: 0rem 0.625rem;
    bottom: 2.4375rem;
  }
  .our-work h3 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .our-work .sub-title {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 23.75rem) {
  .our-work h2 {
    font-size: 4.0625rem;
  }
}
.services {
  color: #ffffff;
  background: #ffffff;
}
.services .container-fluid {
  background: #0172FF;
  padding-top: 11.5625rem;
  padding-bottom: 17.4375rem;
}
.services .content {
  padding-left: 17.25rem;
}
.services .content-inner {
  max-width: 79.375rem ;
}
.services .row {
  margin: 0rem;
}
.services .col-6 {
  padding: 0rem;
  padding-right: 1.875rem;
}
.services h2 {
  font-size: 8rem;
  font-family: "Poppins-Bold";
  padding-bottom: 5.3125rem;
  text-transform: capitalize;
}
.services ul {
  margin-bottom: 0rem;
  padding-inline-start: 0rem;
  list-style-type: none;
}
.services ul li:not(:last-child) {
  padding-bottom: 3rem;
}
.services li {
  font-size: 3.75rem;
  font-family: "Poppins-Bold";
  overflow: hidden;
}
.services li a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: underline 0.1875rem rgba(10, 36, 157, 0);
  display: inline-block;
  opacity: 0;
}
.services li a:hover {
  color: #0a249d;
  text-decoration-color: #0a249d;
}
.services li.active a {
  animation: up-animation 0.3s forwards;
}
@keyframes up-animation {
  0% {
    opacity: 1;
    transform: translate3d(0, 120%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0);
  }
}
@media screen and (max-width: 103.75rem) {
  .services .content {
    padding-left: 9.375rem;
  }
}
@media screen and (max-width: 90rem) {
  .services .container-fluid {
    padding-bottom: 12.5rem;
    padding-top: 9.375rem;
  }
  .services .content {
    padding-left: 6.25rem;
  }
  .services h2 {
    font-size: 6.25rem;
    padding-bottom: 2.5rem;
  }
  .services ul li:not(:last-child) {
    padding-bottom: 1.875rem;
  }
  .services li {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 80rem) {
  .services .container-fluid {
    padding-bottom: 12.5rem;
    padding-top: 9.375rem;
  }
  .services .content {
    padding-left: 3.125rem;
  }
  .services h2 {
    font-size: 5rem;
    text-transform: none;
  }
  .services ul li:not(:last-child) {
    padding-bottom: 1.875rem;
  }
  .services li {
    font-size: 2.215rem;
  }
}
@media screen and (max-width: 63.9375rem) {
  .services .container-fluid {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
  .services .content {
    padding-left: 0rem;
  }
  .services h2 {
    font-size: 4.375rem;
  }
  .services .col-6 {
    padding-right: 1.25rem;
  }
  .services li {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .services .container-fluid {
    padding-bottom: 4rem;
    padding-top: 5.9375rem;
  }
  .services h2 {
    line-height: 3.75rem;
    margin-bottom: 0rem;
    padding-bottom: 1.75rem;
  }
  .services .col-6 {
    padding-right: 0rem;
    width: 100%;
  }
  .services .col-12 {
    padding: 0rem;
    display: block;
  }
  .services .content {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
  .services li {
    padding-bottom: 1.625rem !important;
  }
  .services li a {
    text-decoration: underline;
  }
}
.block-openning .container-fluid {
  position: relative;
}
.block-openning .image {
  position: relative;
  padding-bottom: 36.45833333%;
  opacity: 0.03;
}
.block-openning .bg-img,
.block-openning .overlay {
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
  position: absolute;
}
.block-openning img.bg-img {
  object-fit: cover;
}
.block-openning .wrapper {
  width: 80%;
  max-width: 45.625rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-align: center;
  padding-top: 0.625rem;
}
.block-openning h2 {
  margin: 0rem;
  padding: 0rem;
  font-family: "Poppins-Bold";
  font-size: 6.25rem;
  line-height: 8.75rem;
  text-transform: capitalize;
  color: #ffffff;
}
.block-openning .text {
  font-family: "Poppins-Light";
  font-size: 1.25rem;
  line-height: 1.875rem;
  color: #ffffff;
  letter-spacing: 0.03125rem;
  padding-bottom: 1.625rem;
}
.block-openning .btn-submit a {
  letter-spacing: 0.05625rem;
}
@media only screen and (max-width: 105rem) {
  .block-openning .image {
    padding-bottom: 50%;
  }
  .block-openning h2 {
    font-size: 5rem;
    line-height: 7.5rem;
  }
  .block-openning .wrapper {
    padding-top: 0rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .block-openning .image {
    padding-bottom: 60%;
  }
  .block-openning h2 {
    font-size: 3.75rem;
    line-height: 6.25rem;
  }
  .block-openning .wrapper {
    width: 80%;
    max-width: 37.5rem;
  }
  .block-openning .text {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.0225rem;
    padding-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .block-openning .image {
    padding-bottom: 120%;
  }
  .block-openning h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
  .block-openning .text {
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0rem;
    padding-bottom: 0.625rem;
    padding-top: 0.3125rem;
  }
  .block-openning .wrapper {
    width: 100%;
  }
}
.block-openning-workdetail .container-fluid {
  position: relative;
}
.block-openning-workdetail .image {
  position: relative;
  padding-bottom: 41.66666667%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.block-openning-workdetail .overlay {
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
  position: absolute;
}
.block-openning-workdetail .wrapper {
  height: 100%;
  width: 80%;
  max-width: 45.625rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  top: 0rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  text-align: center;
  padding-top: 18.4375rem;
}
.block-openning-workdetail h2 {
  margin: 0rem;
  padding: 0rem;
  font-family: "Poppins-Bold";
  font-size: 6.25rem;
  line-height: 8.75rem;
  text-transform: capitalize;
  color: #ffffff;
}
.block-openning-workdetail .list-links {
  text-align: center;
  padding-bottom: 1.25rem;
}
.block-openning-workdetail ul.links-content {
  margin: 0rem;
  padding: 0rem;
  list-style-type: none;
  display: inline-block;
  padding-left: 0rem;
}
.block-openning-workdetail .link-item {
  display: inline-block;
  font-family: "Poppins-Regular";
  font-size: 1rem;
  color: #ffffff;
}
.block-openning-workdetail .link-item:not(:last-of-type) {
  padding-right: 2.6875rem;
}
.block-openning-workdetail .link-item a {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  box-sizing: border-box;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.025rem;
  color: inherit;
  padding-left: 1.8125rem;
  padding-right: 1.8125rem;
  border: 0.0625rem solid transparent;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}
.block-openning-workdetail .link-item a:hover {
  border-color: #ffffff;
}
@media only screen and (max-width: 105rem) {
  .block-openning-workdetail .image {
    padding-bottom: 45%;
  }
  .block-openning-workdetail .wrapper {
    padding-top: unset;
    height: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .block-openning-workdetail h2 {
    font-size: 5rem;
    line-height: 7.5rem;
  }
  .block-openning-workdetail .list-links {
    padding-bottom: 1.25rem;
  }
  .block-openning-workdetail .link-item:not(:last-of-type) {
    padding-right: 1.25rem;
  }
  .block-openning-workdetail .link-item a {
    letter-spacing: 0rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .block-openning-workdetail .image {
    padding-bottom: 60%;
  }
  .block-openning-workdetail .wrapper {
    max-width: 37.5rem;
  }
  .block-openning-workdetail h2 {
    font-size: 3.75rem;
    line-height: 6.25rem;
  }
  .block-openning-workdetail .list-links {
    padding-bottom: 0.625rem;
  }
  .block-openning-workdetail .link-item {
    font-size: 0.875rem;
  }
  .block-openning-workdetail .link-item:not(:last-of-type) {
    padding-right: 0.625rem;
  }
  .block-openning-workdetail .link-item a {
    letter-spacing: 0rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .block-openning-workdetail .image {
    padding-bottom: 120%;
  }
  .block-openning-workdetail .wrapper {
    width: 100%;
    max-width: 37.5rem;
  }
  .block-openning-workdetail h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
  .block-openning-workdetail .list-links {
    padding-bottom: 0.3125rem;
  }
  .block-openning-workdetail .link-item {
    font-size: 0.75rem;
  }
  .block-openning-workdetail .link-item a {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}
.workdetail-overview .container {
  padding: 5.6875rem 0.9375rem 5.25rem;
  max-width: 98.625rem;
}
.workdetail-overview .image {
  position: relative;
  overflow: hidden;
  border-radius: 0.3125rem;
}
.workdetail-overview .bg-img {
  position: absolute;
  width: 100%;
  top: 0rem;
  left: 0rem;
  object-fit: contain;
  object-position: 0% 50%;
}
.workdetail-overview .image-container {
  padding-left: 5.1875rem;
  padding-bottom: 1.875rem;
  padding-right: 14.375rem;
  position: relative;
}
.workdetail-overview .large-image {
  padding: 2.375rem 0.5rem 0.625rem;
  background-color: #F0F0F4;
  box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  border-radius: 1.1875rem;
}
.workdetail-overview .large-image .image {
  padding-bottom: 69.5191524%;
}
.workdetail-overview .small-image {
  position: absolute;
  width: 23.64341085%;
  max-width: 22.875rem;
  bottom: 0rem;
  right: 0rem;
  padding: 2.805rem 0.584375rem 2.399375rem 0.526875rem;
  background-color: #F0F0F4;
  box-shadow: 0rem 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  border-radius: 1.1875rem;
}
.workdetail-overview .small-image .image {
  border-radius: 0.1875rem;
  padding-bottom: 183.43241148%;
}
.workdetail-overview .small-image .image .bg-img {
  object-fit: cover;
  height: 100%;
}
.workdetail-overview .text {
  font-family: "Poppins-SemiBold";
  font-size: 3.75rem;
  line-height: 6.25rem;
  color: #161719;
  letter-spacing: 0.075rem;
  width: 80%;
  max-width: 68rem;
  margin: 0rem auto;
  padding-top: 12.75rem;
}
@media only screen and (max-width: 105rem) {
  .workdetail-overview .image-container {
    padding-left: 1.25rem;
    padding-bottom: 1.25rem;
    padding-right: 6.25rem;
  }
  .workdetail-overview .large-image {
    padding: 2.1875rem 0.3125rem 0.625rem;
  }
  .workdetail-overview .small-image {
    width: 23.64341085%;
    max-width: 22.875rem;
    padding: 2.5rem 0.5rem 1.875rem;
  }
  .workdetail-overview .small-image .image {
    padding-bottom: 183.43241148%;
  }
  .workdetail-overview .text {
    font-size: 3.125rem;
    line-height: 4.375rem;
    letter-spacing: 0rem;
    width: 80%;
    padding-top: 9.375rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .workdetail-overview .image-container {
    padding-left: 0rem;
    padding-bottom: 1.25rem;
    padding-right: 3.75rem;
  }
  .workdetail-overview .large-image {
    padding: 1.25rem 0.3125rem 0.625rem;
  }
  .workdetail-overview .small-image {
    width: 23.64341085%;
    max-width: 22.875rem;
    padding: 1.875rem 0.5rem 1.25rem;
  }
  .workdetail-overview .small-image .image {
    padding-bottom: 183.43241148%;
  }
  .workdetail-overview .text {
    font-size: 2.5rem;
    line-height: 3.125rem;
    padding-top: 6.25rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .workdetail-overview .image-container {
    padding-right: 5%;
    padding-bottom: 3.75rem;
  }
  .workdetail-overview .large-image {
    border-radius: 0.625rem;
  }
  .workdetail-overview .large-image .image {
    padding-bottom: 85%;
  }
  .workdetail-overview .small-image {
    width: 33.33333333%;
    border-radius: 0.5rem;
    padding: 1.25rem 0.3125rem 0.625rem;
  }
  .workdetail-overview .text {
    font-family: "Poppins-Regular";
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding-top: 1.875rem;
    width: 100%;
  }
}
.workdetail-mobile .container {
  padding-top: 3.75rem;
  max-width: 87.5rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  padding-bottom: 11.25rem;
}
.workdetail-mobile h2 {
  margin: 0rem;
  padding: 0rem;
  font-family: "Poppins-Bold";
  font-size: 5rem;
  line-height: 7rem;
  text-transform: capitalize;
  color: #161719;
  text-align: center;
}
.workdetail-mobile .mobile-content {
  padding-top: 4.625rem;
}
.workdetail-mobile .row {
  margin: -1.25rem;
}
.workdetail-mobile .row .col-4 {
  padding: 1.25rem;
}
.workdetail-mobile .content {
  padding: 4.8125rem 0.8125rem 5.125rem 0.875rem;
  border-radius: 2.375rem;
  border: 0.125rem solid #F0F0F4;
}
.workdetail-mobile .image {
  position: relative;
  border: 0.0625rem solid #E9E9E9;
  border-radius: 0.4375rem;
  padding-bottom: 183.79052369%;
}
.workdetail-mobile .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0rem;
  left: 0rem;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 105rem) {
  .workdetail-mobile .container {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-bottom: 7.5rem;
  }
  .workdetail-mobile h2 {
    font-size: 3.75rem;
    line-height: 5rem;
  }
  .workdetail-mobile .mobile-content {
    padding-top: 3.75rem;
  }
  .workdetail-mobile .row {
    margin: -0.625rem;
  }
  .workdetail-mobile .row .col-4 {
    padding: 0.625rem;
  }
  .workdetail-mobile .content {
    padding: 3.125rem 0.625rem 3.75rem 0.625rem;
    border-radius: 1.875rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .workdetail-mobile .container {
    padding-bottom: 6.25rem;
  }
  .workdetail-mobile h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
  }
  .workdetail-mobile .mobile-content {
    padding-top: 2.5rem;
  }
  .workdetail-mobile .row {
    justify-content: center;
  }
  .workdetail-mobile .row .col-4 {
    width: 50%;
  }
  .workdetail-mobile .content {
    padding: 1.875rem 0.625rem 2.5rem;
    border-radius: 1.25rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .workdetail-mobile .container {
    padding-bottom: 3.75rem;
  }
  .workdetail-mobile h2 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
  .workdetail-mobile .mobile-content {
    max-width: 22.5rem;
    margin: 0rem auto;
  }
  .workdetail-mobile .row {
    margin: -0.625rem 0rem;
  }
  .workdetail-mobile .row .col-4 {
    padding: 0.625rem 0rem;
    width: 100%;
  }
  .workdetail-mobile .content {
    padding: 1.25rem 0.625rem 1.875rem;
    border-radius: 0.625rem;
  }
}
.page-list .container {
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  max-width: 110rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
.page-list .list-links {
  text-align: center;
}
.page-list ul.links-content {
  margin: 0rem;
  padding: 0rem;
  list-style-type: none;
  display: inline-block;
  padding-left: 0rem;
}
.page-list .link-item {
  display: inline-block;
  font-family: "Poppins-Medium";
  font-size: 1rem;
  color: #5A5A5A;
}
.page-list .link-item:not(:last-of-type) {
  padding-right: 1.359375rem;
}
.page-list .link-item a {
  text-decoration: none;
  display: inline-flex;
  box-sizing: border-box;
  height: 2.5rem;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.025rem;
  color: inherit;
  padding-left: 1.4375rem;
  padding-right: 1.4375rem;
  border: 0.0625rem solid transparent;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}
.page-list .link-item a:hover {
  color: #0172FF;
  border-color: #0172FF;
}
.page-list .list-pages {
  padding-top: 2.6875rem;
}
.page-list .row {
  margin: -1.3125rem;
}
.page-list .row > * {
  padding: 1.3125rem;
}
.page-list .image {
  position: relative;
  padding-bottom: 77.17996289%;
}
.page-list .bg-img,
.page-list .overlay {
  width: 100%;
  top: 0rem;
  left: 0rem;
  position: absolute;
  border-radius: 0.3125rem;
}
.page-list img.bg-img {
  object-fit: cover;
  height: 100%;
}
.page-list .overlay {
  height: 0rem;
  opacity: 0.95;
  transition: height 0.3s ease;
}
.page-list .wrapper {
  position: absolute;
  width: 100%;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  top: 50%;
  transform: translateY(0);
  opacity: 0;
  text-align: center;
  padding-top: 0.625rem;
  transition: all 0.3s ease 0.2s;
}
.page-list .logo-icon {
  display: inline-block;
  max-width: 12.5rem;
}
.page-list .logo-icon img {
  object-fit: contain;
  width: 100%;
  max-height: 3.125rem;
}
.page-list .text {
  font-family: "Poppins-Regular";
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #ffffff;
  letter-spacing: 0.046875rem;
  padding-bottom: 1.1875rem;
  padding-top: 0.625rem;
}
.page-list .icon-arrow {
  max-height: 0.84375rem;
  object-fit: contain;
}
.page-list .content {
  position: relative;
  border-radius: 0.3125rem;
}
.page-list .content:hover .overlay {
  height: 100%;
}
.page-list .content:hover .wrapper {
  opacity: 1;
  transform: translateY(-50%);
}
@media only screen and (max-width: 110rem) {
  .page-list .container {
    max-width: 105rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .page-list .row {
    margin: -1.25rem;
  }
  .page-list .row > * {
    padding: 1.25rem;
  }
}
@media only screen and (max-width: 63.9375rem) {
  .page-list .container {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  .page-list .row {
    margin: -0.625rem;
  }
  .page-list .row > * {
    padding: 0.625rem;
  }
  .page-list .link-item {
    font-size: 0.75rem;
  }
  .page-list .link-item:not(:last-of-type) {
    padding-right: 0.625rem;
  }
  .page-list .link-item a {
    height: 2.1875rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    border-radius: 6.25rem;
  }
  .page-list .text {
    font-size: 0.75rem;
    line-height: 1.25rem;
    letter-spacing: 0.03125rem;
    padding-bottom: 0.625rem;
    padding-top: 0.3125rem;
  }
}
@media only screen and (max-width: 47.9375rem) {
  .page-list .container {
    padding-top: 2.5rem;
  }
  .page-list .row {
    margin: -0.3125rem;
  }
  .page-list .row > * {
    padding: 0.3125rem;
    width: 100%;
  }
  .page-list .list-links {
    display: none;
  }
  .page-list .list-pages {
    padding-top: 0rem;
  }
}
.whatapp {
  position: fixed;
  right: 1.625rem;
  bottom: 1.75rem;
  z-index: 9;
  width: 3.75rem;
  display: none;
  background: #05CCFD;
  border-radius: 50%;
  padding: 0.9375rem;
}
.whatapp a {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 63.9375rem) {
  .whatapp {
    display: block;
  }
}
