@charset "UTF-8";
:root {
  --font-primary: "SVN-Gilroy", sans-serif;
  --font-medium: "SVN-GilroyMedium", sans-serif;
  --font-semibold: "SVN-GilroySemiBold", sans-serif;
  --font-bold: "SVN-GilroyBold", sans-serif;
  --font-xbold: "SVN-GilroyBold", sans-serif;
  --font-title: "SVN-Arsilon", sans-serif;
  --color-primary: #a10000;
  --color-text: #020410;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../font/SVN-Gilroy.woff2") format("woff2"),
    url("../font/SVN-Gilroy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-GilroyMedium";
  src: url("../font/SVN-GilroyMedium.woff2") format("woff2"),
    url("../font/SVN-GilroyMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-GilroySemiBold";
  src: url("../font/SVN-GilroySemiBold.woff2") format("woff2"),
    url("../font/SVN-GilroySemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-GilroyBold";
  src: url("../font/SVN-GilroyBold.woff2") format("woff2"),
    url("../font/SVN-GilroyBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-GilroyXBold";
  src: url("../font/SVN-GilroyXBold.woff2") format("woff2"),
    url("../font/SVN-GilroyXBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SVN-Arsilon";
  src: url("../font/SVN-Arsilon.woff2") format("woff2"),
    url("../font/SVN-Arsilon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Times";
  src: url("../font/TimesNewRomanPSMT.woff2") format("woff2"),
    url("../font/TimesNewRomanPSMT.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: #f5f5f5;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  border: 0;
  top: 0 !important;
  overflow-x: hidden;
}
.skiptranslate {
  display: none;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
input,
button,
textarea {
  outline: none !important;
}
a {
  text-decoration: none !important;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 5px 0;
  line-height: 28px;
  letter-spacing: 0.5px;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.d-flex {
  display: flex !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.center-layout {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.header {
  position: relative;
  padding: 14px 0px 6px 0px;
  z-index: 123;
}
.header-fixed {
  position: fixed;
  width: 100%;
  animation: sticky 1.2s;
  transition: top 5s linear;
  background: #fff;
  box-shadow: 0 0 12px 0 #e9eefc;
  padding: 12px 0px !important;
}
@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
@keyframes sticky {
  0% {
    top: -200px;
  }
  100% {
    top: 0;
  }
}
.logo {
  display: flex;
}
.logo img {
  max-width: 95px;
}
.r-head {
  gap: 20px;
}
.lang {
  padding: 14px 4px 13px 4px;
  border-radius: 50%;
  font-family: var(--font-semibold);
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: #2d2a2a;
  border-color: #353535;
}
.lang option {
  background: #fff;
  color: #2d2a2a;
}
.right-head {
  gap: 40px;
}
.menu {
  display: none;
}
.menu ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.menu ul li {
  position: relative;
  color: #07003b;
  cursor: pointer;
  transition: all 0.5s;
  font-size: 1.25rem;
  padding: 5px 0px;
}
.menu ul li:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-secondary);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu ul li:hover:after,
.menu ul li.active:after {
  width: 100%;
}
.menu ul a {
  color: #162542;
}
.menu ul li:hover,
.menu ul li.active {
  color: var(--color-secondary);
}
.btn-menu-mb {
}
.btn-menu {
  cursor: pointer;
  gap: 16px;
  font-family: var(--font-semibold);
  border: 1px solid rgba(53, 53, 53, 20%);
  border-radius: 30px;
  padding: 14px 22px 15px 21px;
}
.btn-menu-mb span {
  position: relative;
  background-color: #162542;
  border-radius: 3px;
  display: block;
  height: 2px;
  margin-top: 5px;
  padding: 0;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  width: 30px;
  cursor: pointer;
  display: block;
}
.btn-menu-mb span:first-child {
  margin-top: 0;
}
.btn-menu-mb.active span:nth-child(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 8px;
}
.btn-menu-mb.active span:nth-child(2) {
  opacity: 0;
}
.btn-menu-mb.active span:nth-child(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -8px;
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-menu {
  text-align: left;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 310px;
  height: 100vh;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  padding: 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: block;
  overflow-x: hidden;
  padding-top: 70px;
}
.nav-menu.menu-off {
  left: -310px;
}
.nav-menu.menu-on {
  left: 0;
}
.navbar-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  background: var(--color-primary);
}
.navbar-close i {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
.main-menu ul {
  display: flex;
  flex-direction: column;
}
.main-menu ul li {
  border-bottom: 1px solid #ececec;
  padding: 13px 20px;
  color: var(--color-text);
  text-transform: capitalize;
  font-family: var(--font-medium);
  font-size: 1;
  cursor: pointer;
}
.main-menu ul li a {
  color: var(--color-text);
}
.main-menu ul li:hover,
.main-menu ul li:hover a {
  color: var(--color-primary);
}

.section1 {
  position: relative;
  text-align: center;
}
.img-bg {
  margin-top: -93px;
}
.img-bg-mb {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-slide-mb.png) no-repeat center top -15px;
  z-index: 1;
}
.main-sc1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 0 40px;
  height: 83%;
}
.img-main-name {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-main-name img {
  max-width: 300px;
  max-height: 580px;
}
.name-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  font-family: var(--font-bold);
  font-size: 11.25rem;
  text-transform: uppercase;
}
.last-name {
  position: relative;
  z-index: 1;
  text-shadow: -1px -1px 0 rgba(220, 220, 220, 80%),
    1px -1px 0 rgba(220, 220, 220, 80%), -1px 1px 0 rgba(220, 220, 220, 80%),
    1px 1px 0 rgba(220, 220, 220, 80%);
}
.btn-cont {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  text-shadow: none;
}
.btn-cont span {
  color: var(--color-primary);
  font-family: var(--font-semibold);
  padding: 15px 16px;
  border-radius: 30px;
  border: 1px solid rgba(53, 53, 53, 20%);
  font-size: 1rem;
  display: flex;
  transition: all 0.5s;
}
.btn-cont:hover span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.btn-cont-mb {
  display: none;
  padding-top: 74px;
  position: relative;
  z-index: 12;
}
.btn-cont-mb img {
  position: absolute;
  top: -78px;
  left: -35px;
  transform: rotate(60deg);
}
.btn-cont-mb .btn-cont {
  position: relative;
  bottom: auto;
}
.first-name {
  position: relative;
}
.first-name span {
  font-family: var(--font-title);
  color: var(--color-primary);
  text-shadow: -6px 6px 0 #dcdcdc, 6px 1px 0 #dcdcdc, -1px 6px 0 #dcdcdc,
    -6px 1px 0 #dcdcdc;
  font-size: 6.25rem;
  position: absolute;
  top: -40px;
  right: 70px;
  text-transform: none;
}
.bottom-sc1 {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
}
.left-bottom-sc1 {
  max-width: 320px;
  text-transform: uppercase;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.5;
}
.social {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0.5;
  z-index: 12;
}
.section2 {
  padding: 80px 0px 0px 0px;
  position: relative;
}
.section2 .center-layout {
  padding-bottom: 300px;
}
.bg-section2 {
  position: absolute;
  bottom: -70px;
  right: -30px;
  z-index: -1;
}
.left-section2 {
  max-width: 950px;
}
.title-section2 {
  font-size: 6.25rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #353535;
  font-family: "Poppins";
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.w-video {
  position: relative;
  max-width: 896px;
}
.btn-playvid {
  position: absolute;
  width: 108px;
  height: 108px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.w-video img.video {
  height: 478px;
  border-radius: 20px;
  overflow: hidden;
}
.title-section2-mb {
  display: none;
}
.right-section2 {
  max-width: 345px;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 6.25rem;
  text-transform: capitalize;
  line-height: 1.2;
  color: #252525;
}
.section3 {
  padding: 60px 0px 130px 0px;
}
.bg-section3 {
  position: absolute;
  top: 0;
  left: 0;
}
.bg-section3 img:last-child {
  display: none;
}
.title-section3 {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.title-section3 div {
  position: relative;
  font-family: var(--font-bold);
  font-size: 6.875rem;
  padding-left: 113px;
  text-shadow: -1px -1px 0 #dcdcdc, 1px -1px 0 rgba(220, 220, 220, 80%),
    -1px 1px 0 rgba(220, 220, 220, 80%), 1px 1px 0 rgba(220, 220, 220, 80%);
}
.title-section3 span {
  position: absolute;
  top: -10px;
  left: 0;
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: 3.125rem;
  text-transform: capitalize;
  text-shadow: -2px -2px 0 #eaeaea, 2px -2px 0 #eaeaea, -2px 2px 0 #dfdfdf,
    2px 2px 0 #dfdfdf;
}
.left-section3 {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.left-thongke {
  margin-top: 66px;
  position: relative;
  border-radius: 32px;
  border: 1px solid #353535;
  padding: 120px 28px 32px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  background: rgba(255, 255, 255, 25%);
}
.o-top {
  position: absolute;
  top: -66px;
  left: 0;
  right: 0;
  margin: auto;
  width: 141px;
  height: 141px;
  border: 1px solid #333333;
  border-radius: 50%;
  background: #fff url(../images/heart.png) no-repeat center;
  font-family: "Times";
}
svg {
  fill: #333333;
  height: auto;
  max-width: 66vmin;
  transform-origin: center;
  width: 98%;
  letter-spacing: 1px;
  top: 2px;
  position: relative;
}
.box-thongke {
  width: 19%;
}
.number-tk {
  font-family: var(--font-bold);
  font-size: 2rem;
  display: flex;
}
.text-tk {
  font-size: 1.125rem;
  font-family: var(--font-medium);
}
.box-images {
  border-radius: 16px;
  overflow: hidden;
}
.box-images img {
  transition: all 0.5s;
}
.box-images:hover img {
  transform: scale(1.1);
}
.right-section3 {
  max-width: 541px;
}
.right-section3 img {
  border-radius: 24px;
  overflow: hidden;
}
.owl-images-mb {
  display: none !important;
}
.b2 {
  margin-top: 40px;
  gap: 32px;
}
.b2-mb {
  display: none !important;
  margin-top: 83px;
}
.b2-mb .btn-conts {
  margin-top: 20px;
  display: inline-block;
}
.bottom-text {
  max-width: 623px;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.btn-conts {
  display: flex;
  font-family: var(--font-semibold);
  color: #fff;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 30px;
  padding: 16px 24px;
  transition: all 0.5s;
}
.btn-conts:hover {
  color: var(--color-primary);
  background: transparent;
}
.section4 {
  padding: 30px 0px 65px 0px;
}
.title-section4 {
  margin-bottom: 45px;
}
.tt4-1 {
  padding-left: 93px;
  font-family: var(--font-bold);
  font-size: 9.375rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #353535;
  line-height: 130px;
}
.tt4-2 {
  padding-left: 60px;
  gap: 20px;
}
.tt4-2 span {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: 3.125rem;
  text-transform: capitalize;
  line-height: 35px;
}
.span-sc4-mb {
  display: none;
  font-family: var(--font-title);
  color: var(--color-primary);
  font-size: 1.125rem;
  text-transform: capitalize;
  text-align: center;
}
.tt4-2 div {
  font-family: var(--font-bold);
  font-size: 9.375rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #353535;
  line-height: 130px;
}
.flex-section4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  max-width: 81%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.flexbox1 {
  width: 39.5%;
  background: #fcfcfc;
  border-radius: 26px;
  padding: 112px 40px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.5s;
}
.flexbox2 {
  width: 39.5%;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  cursor: pointer;
}
.flexbox2 .flexbox2-box {
  background: #fcfcfc;
  border-radius: 26px;
  padding: 42px 38px;
  transition: all 0.5s;
}
.flexbox2 .flexbox2-box:last-child {
  padding: 72px 40px;
}
.flexbox3 {
  width: 16%;
  background: #fcfcfc;
  border-radius: 26px;
  padding: 55px 31px;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s;
}
.flexbox1:hover,
.flexbox2 .box1:hover,
.flexbox2 .box2:hover,
.flexbox3:hover {
  background: var(--color-primary);
  color: #fff;
}
.flexbox-title {
  font-family: var(--font-bold);
  color: #333333;
  font-size: 1.875rem;
  margin-bottom: 12px;
}
.flexbox1:hover .flexbox-title,
.flexbox2:hover .flexbox-title,
.flexbox3:hover .flexbox-title {
  color: #fff;
}
.flexbox-desc {
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 23px;
}
.section5 .center-layout {
  padding-top: 320px;
}
.bg-5 {
  position: absolute;
  top: -270px;
  left: 0;
}
.bg-5 img:last-child,
.bg-6 img:last-child,
.bg-7 img:last-child,
.bg-section2 img:last-child {
  display: none;
}
.wr-activities {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.left-activities {
  position: absolute;
  top: 68px;
  left: 0;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.title-active {
  font-family: var(--font-xbold);
  font-size: 6.875rem;
  color: #252525;
}
.desc-active {
  font-size: 0.875rem;
  line-height: 23px;
  text-transform: uppercase;
  max-width: 473px;
}
.btn-see {
  background: var(--color-primary);
  border-radius: 100px;
  color: #fff;
  padding: 15px 24px;
  border: 1px solid var(--color-primary);
  transition: all 0.5s;
  margin-top: 8px;
}
.btn-see:hover {
  background: transparent;
  color: var(--color-primary);
}

.right-activities {
  max-width: 996px;
}

.flex-box__active {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.img_act img {
  max-width: 316px;
  max-height: 436px;
  border-radius: 24px;
  overflow: hidden;
}
.img_act:nth-child(1) {
  margin-top: 457px;
}
.img_act:nth-child(2) {
  margin-top: 215px;
}
.owl-activities {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 668px;
  padding: 17px 24px;
}
.box__last-active {
  display: flex;
  gap: 24px;
}
.img_radius {
  width: 80px;
  height: 80px;
}
.box__last-active img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.desc_last-at {
  font-size: 1.375rem;
  line-height: 26px;
  width: calc(100% - 104px);
}

.section6 .center-layout {
  padding: 250px 0px 0px 0px !important;
}
.bg-6 {
  position: absolute;
  top: -50px;
  left: 0;
}
.title-section6 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 84px;
  margin-bottom: 45px;
}
.title-section6 h2 {
  max-width: 886px;
  font-family: var(--font-xbold);
  font-size: 6.875rem;
  line-height: 1.2;
  color: #252525;
}
.group-btn {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  top: -20px;
}
.group-btn .owl_prev,
.group-btn .owl_prev1 {
  width: 64px;
  height: 64px;
  background: #fcfcfc;
  border: 1px solid #eb6f2d;
  border-radius: 50%;
  text-align: center;
  z-index: 12;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-size: 1.25rem;
  color: #eb6f2d;
  opacity: 0.5;
}
.group-btn .owl_next,
.group-btn .owl_next1 {
  width: 64px;
  height: 64px;
  background: #fcfcfc;
  border: 1px solid #eb6f2d;
  border-radius: 50%;
  text-align: center;
  z-index: 12;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  font-size: 1.25rem;
  color: #eb6f2d;
  opacity: 0.5;
}
.group-btn .owl_prev:hover,
.group-btn .owl_next:hover,
.group-btn .owl_prev1:hover,
.group-btn .owl_next1:hover {
  background: #eb6f2d;
  color: #fff;
  opacity: 1;
}
.box__feedback {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  border-radius: 16px;
  border: 2px solid #f5f7fa;
  padding: 10px 60px 10px 10px;
  transition: all 0.5s;
}
.box__feedback:hover {
  border-color: #eb6f2d;
}
.img__feedback {
  border-radius: 8px;
  overflow: hidden;
  max-width: 278px;
}
.img__feedback img {
  width: 100%;
}
.content__feedback {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 60px;
  max-width: 432px;
}
.desc__feedback {
  font-size: 1.25rem;
  font-family: var(--font-medium);
  color: #2d2a2a;
}
.name__feedback {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: #000;
  opacity: 0.9;
}
.address__feedback {
  color: #353535;
  font-size: 12px;
}
.owl__feedback_mb {
  display: none !important;
}
.owl__feedback_mb .content__feedback {
  flex-direction: row;
  gap: 7px;
}
.owl__feedback_mb .img__feedback {
  width: 77px;
}
.owl__feedback_mb .desc__feedback {
  width: calc(100% - 84px);
  font-size: 12px;
}
.owl__feedback_mb .name__feedback {
  font-size: 1rem;
}
.owl__feedback .owl-item {
  min-width: 830px;
}
.owl__feedback .owl-item .box__feedback {
  opacity: 0.5;
}
.owl__feedback .owl-item.center .box__feedback {
  opacity: 1;
}
.group2 {
  position: absolute;
  bottom: 27%;
  right: 0;
  top: auto;
  z-index: 12;
}
.section7 .center-layout {
  padding: 430px 0px 60px 0px !important;
}
.bg-7 {
  position: absolute;
  top: -110px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 1;
}
.text-big {
  position: absolute;
  width: 100%;
  top: 167px;
  left: 0;
  font-family: var(--font-bold);
  font-size: 15.625rem;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #353535;
  text-align: center;
  z-index: -1;
  opacity: 0.2 !important;
  line-height: 225px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
}
.title-section7 {
  text-align: center;
  margin-bottom: 40px;
}
.title-section7 h2 {
  font-family: var(--font-bold);
  font-size: 9.375rem;
  line-height: 64px;
}
.title-section7 div {
  position: relative;
  font-family: var(--font-title);
  font-size: 1.875rem;
  color: #353535;
  text-shadow: -1px -1px 0 #dcdcdc, 1px -1px 0 rgba(220, 220, 220, 80%),
    -1px 1px 0 rgba(220, 220, 220, 80%), 1px 1px 0 rgba(220, 220, 220, 80%);
}
.title-section7 div span {
  color: var(--color-primary);
}
.section7 .social {
  text-align: center;
  margin-top: 40px;
}
.social img {
  max-width: 40px;
  transition: all 0.5s;
}
.social a:hover img {
  transform: rotate(360deg);
}
.form-contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  max-width: 500px;
  margin: auto;
  z-index: 12;
}
.form-group {
  width: 100%;
}
.form-group label {
  margin-bottom: 5px;
  display: block;
}
.form-contact input,
.form-contact select {
  width: 100%;
  display: inline-block;
  outline: none;
  min-height: 0;
  padding: 16px 16px 16px 40px;
  border-radius: 60px;
  background: #fff;
  font-family: var(--font-medium);
  font-size: 1rem;
  border: 1px solid #d3dcdf;
  color: #353535;
  opacity: 0.5;
}
.form-contact select {
  padding-left: 16px;
}
.form-contact input::placeholder,
.form-contact select::placeholder {
  color: #353535;
}
.form-contact input:focus,
.form-contact select:focus {
  outline: 1px solid var(--color-primary) !important;
  box-shadow: none;
}
.form-contact input[type="text"]:nth-child(1) {
  background: url(../images/user.png) no-repeat center left 16px;
}
.form-contact input[type="email"] {
  background: url(../images/mail.png) no-repeat center left 16px;
}
.form-contact input[type="text"]:nth-child(3) {
  background: url(../images/phone.png) no-repeat center left 16px;
}
.btn-send {
  display: flex;
  justify-content: center;
  width: 100%;
}
.form-contact input[type="submit"] {
  width: 100%;
  padding: 15px 20px;
  margin: 0;
  background: var(--color-primary);
  border: 1px solid transparent;
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: nơn;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
  position: relative;
  font-size: 1rem;
  font-family: var(--font-semibold);
  opacity: 1;
}
.form-contact input:hover[type="submit"] {
  border-color: var(--color-primary);
  background: transparent;
  color: var(--color-text);
  transform: translateY(-8px);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.aos-animate .char {
  animation: fadeInUp 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation-delay: calc(30ms * var(--char-index));
}
/* Preloader CSS */
.preloader {
  background-color: #fff;
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 99999;
}
.preloader-form {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.preloader .loader {
  margin: 0 auto;

  position: relative;
  text-align: center;
}
.preloader .pre-box {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  -webkit-animation: animate 0.5s linear infinite;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
}
.preloader .pre-shadow {
  width: 50px;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow 0.5s linear infinite;
  animation: shadow 0.5s linear infinite;
}
@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
    transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
  }
}
@media screen and (max-width: 1024px) {
  .wr-feedback .owl_prev {
    left: 0;
    bottom: auto;
    top: 10%;
    width: 45px;
    height: 45px;
  }
  .wr-feedback .owl_next {
    right: 0;
    bottom: auto;
    top: 10%;
    width: 45px;
    height: 45px;
  }
  .bg-section2 {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .o-top svg {
    display: none;
  }
  .header-fixed {
    padding: 6px 0px !important;
  }
  .lang {
    padding: 10px 0px 10px 0px;
  }
  .btn-menu {
    gap: 8px;
    padding: 8px 10px 7px 9px;
  }
  .logo img {
    max-width: 50px;
  }
  .center-layout {
    padding: 0 20px !important;
  }
  .main-sc1 {
    height: 100%;
    padding: 0;
  }
  .first-name span {
    font-size: 1.5rem;
    top: -5px;
    right: auto;
    left: 25%;
    text-shadow: none;
  }
  .name-line {
    font-size: 3.625rem;
    flex-direction: column;
    padding: 0 20px;
  }
  .first-name {
    width: 100%;
    text-align: left;
  }
  .last-name {
    width: 100%;
    text-align: right;
    line-height: 45px;
  }
  .img-main-name {
    z-index: 12;
    margin-top: 10px;
  }
  .img-main-name img {
    max-width: 183px;
  }

  .right-section2 {
    display: none;
  }
  .main-sc1,
  .img-main-name,
  .bottom-sc1 {
    position: relative;
  }
  .img-bg,
  .bg-section3 img:first-child,
  .owl-images-des,
  .b2-des,
  .tt4-2 span,
  .bg-5 img:first-child,
  .bg-6 img:first-child,
  .bg-7 img:first-child,
  .bg-section2 img:first-child,
  .group2,
  .group-btn,
  .btn-cont.des {
    display: none !important;
  }
  .tt4-1 {
    padding-left: 0;
  }
  html {
    font-size: 14px;
  }
  .bottom-sc1 {
    flex-direction: column;
    padding: 0;
    bottom: auto;
    margin-top: 28px;
  }
  .section1 .social {
    position: fixed;
    top: 40%;
    right: 20px;
    flex-direction: column;
    gap: 26px;
  }
  .tt4-2 span,
  .title-section3 span {
    font-size: 1.125rem;
  }
  .title-section3 span {
    top: 0px;
    left: 33px;
  }
  .tt4-1,
  .tt4-2 div {
    font-size: 3.75rem;
    line-height: 55px;
  }
  .tt4-2 {
    padding-left: 0;
    width: 100%;
    text-align: right;
    display: inherit !important;
  }
  .section2 .center-layout,
  .section3 .d-flex {
    flex-direction: column;
  }
  .section3 .d-flex {
    gap: 24px;
  }
  .title-section3 div {
    font-size: 3.125rem;
    padding-left: 0;
  }
  .right-section2,
  .title-section2 {
    font-size: 3.125rem;
  }
  .title-section2 {
    margin-bottom: 10px;
  }
  .title-section2-mb {
    margin-bottom: 34px;
  }
  .box-thongke {
    width: 46%;
  }
  .left-section3 {
    max-width: 100%;
  }
  .left-thongke {
    margin-top: 0;
    gap: 20px;
    padding: 20px 40px;
  }
  .o-top {
    top: -32px;
    left: auto;
    right: 10px;
    width: 65px;
    height: 65px;
    background-size: 16px;
  }
  .title-section2-mb {
    display: block;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 3.125rem;
    text-transform: capitalize;
    line-height: 1.2;
    color: #252525;
  }
  .bg-section3 img:last-child,
  .owl-images-mb,
  .b2-mb,
  .span-sc4-mb,
  .bg-5 img:last-child,
  .bg-6 img:last-child,
  .bg-7 img:last-child,
  .bg-section2 img:last-child,
  .btn-cont-mb {
    display: block !important;
  }
  .flex-section4 {
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .flexbox1,
  .flexbox3 {
    width: 100%;
    height: auto;
    padding: 21px 30px;
  }
  .flexbox2 {
    width: 100%;
  }
  .flexbox2 .flexbox2-box:last-child,
  .flexbox2 .flexbox2-box {
    padding: 21px 30px;
  }
  .flexbox-title {
    font-size: 16px;
  }
  .flexbox-desc {
    font-size: 12px;
    line-height: 20px;
  }
  .section5 {
    padding: 260px 0px 0px 0px;
  }
  .left-activities {
    position: relative;
    top: auto;
  }
  .wr-activities {
    flex-direction: column;
    gap: 30px;
  }
  .title-active {
    font-size: 3.125rem;
  }
  .img_act:nth-child(1),
  .img_act:nth-child(2) {
    margin-top: 0;
  }
  .box__last-active.mb {
    display: flex;
    align-items: center;
  }
  .owl-activities {
    max-width: 100%;
  }
  .desc_last-at {
    font-size: 12px;
    line-height: 20px;
    width: calc(100% - 64px);
  }
  .img_radius {
    width: 50px;
    height: 50px;
  }
  .title-section6 h2 {
    font-size: 3.125rem;
    padding-left: 100px;
  }

  .section6 .center-layout {
    padding: 290px 20px 0px 20px !important;
  }
  .bg-6 {
    top: 120px;
  }
  .text-big {
    font-size: 4.375rem;
  }
  .section7 .center-layout {
    padding: 90px 20px 30px 20px !important;
  }
  .bg-7 {
    top: 30px;
  }
  .text-big {
    top: 0;
    letter-spacing: 3px;
  }
  .title-section7 {
    padding-top: 170px;
  }
  .title-section7 h2 {
    font-size: 3.125rem;
  }
  .title-section7 div {
    font-size: 1.125rem;
  }
  .flex-box__active {
    gap: 20px;
  }
  .img-bg-mb {
    display: block;
  }
  .owl-activities {
    position: relative;
    max-width: 100%;
    padding: 16px 0px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 650px) {
  .w-video img.video {
    height: auto;
  }
  .btn-playvid {
    width: 60px;
    height: 60px;
  }
  .owl__feedback_mb .owl-item {
    min-width: 320px;
  }
  .owl__feedback {
    display: none !important;
  }
  .owl__feedback_mb {
    display: block !important;
  }
  .box__feedback {
    padding: 9px 23px 14px 9px;
    flex-direction: column;
    gap: 23px;
  }
  .flex-box__active {
    display: inherit;
    overflow: scroll;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  .img_act {
    width: 63%;
    display: inline-block;
    margin-right: 10px;
  }
  .img_act img {
    max-width: -webkit-fill-available;
  }
  .form-contact input[type="submit"] {
    padding: 14px 39px;
    font-size: 14px;
    width: 100%;
  }
  .w-video img {
    height: auto;
  }
  .section3 {
    padding: 120px 0px 70px 0px;
  }
  .bg-section3 {
    top: 130px;
  }
}
@media screen and (max-width: 576px) {
  .lang {
    font-size: 0.875rem;
  }
  .flex-project {
    margin: 0;
  }
  .box-project {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }
}
