.toast {
  background: #1d245e !important;
  color: white !important;
  border-radius: 16px !important;
  box-shadow: 0px 0px 11px rgba(152, 152, 152, 0.2) !important;
}

.home-enter-active, .home-leave-active {
  transition: opacity 0.2s;
}

.home-enter, .home-leave-to {
  opacity: 0;
}

.layout-enter-active, .layout-leave-active {
  transition: opacity 10s;
}

.layout-enter, .layout-leave-to {
  opacity: 0;
}

@font-face {
  font-family: "chakra";
  src: url("./fonts/Chakra_Petch/ChakraPetch-Regular.ttf");
}
@font-face {
  font-family: "open";
  src: url("./fonts/Open_Sans/static/OpenSans/OpenSans-Regular.ttf");
}
.container {
  width: 95%;
  margin: 0 auto 0;
  max-width: 1420px;
}

body {
  background-color: black;
  margin: 0;
  font-family: open;
  color: #F3F4F8;
}

html {
  scroll-behavior: smooth;
}

#header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1100px) {
  #header {
    margin-top: 35px;
    padding: 0;
  }
}
@media (max-width: 1100px) {
  #header {
    z-index: 3;
  }
}
#header #header_main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header #header_main #header_main_right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header #header_main #header_main_right hr {
  width: 30px;
  margin-right: 20px;
}
@media (max-width: 1100px) {
  #header #header_main #header_main_right hr {
    display: none;
  }
}
#header #header_main .mobileMenu {
  cursor: pointer;
  display: none;
}
@media (max-width: 1100px) {
  #header #header_main .mobileMenu {
    display: block;
  }
}
#header #header_main .mobileMenu div {
  width: 30px;
  border-bottom: 3px solid white;
  margin-bottom: 4px;
  transition: 0.4s;
}
#header #header_main #beforeLogo {
  width: 15%;
}
@media (max-width: 1100px) {
  #header #header_main #beforeLogo {
    display: none !important;
  }
}
#header #header_main .logo {
  margin: auto 35px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  #header #header_main .logo {
    margin: 0;
  }
}
#header #header_main ul {
  padding: 0;
}
@media (max-width: 1100px) {
  #header #header_main ul {
    display: none;
  }
}
#header #header_main ul li {
  display: inline;
  margin-right: 20px;
  font-size: 14px;
  cursor: pointer;
  position: relative;
}
#header #header_main ul li a {
  text-decoration: none;
  color: #F3F4F8;
}
#header #header_main ul li span {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  border-bottom: 1px solid #F3F4F8;
  transition: 0.3s;
}
#header #header_main ul li span#active {
  width: 100%;
}
#header #header_main ul li:hover span {
  width: 100%;
}
#header hr {
  border: none;
  border-bottom: 1px solid #FFFFFF;
  opacity: 0.4;
}
#header hr.outside {
  flex: 1;
}
@media (max-width: 1100px) {
  #header hr.outside {
    display: none;
  }
}

.language {
  position: relative;
}
@media (max-width: 1100px) {
  .language {
    display: none;
  }
  .language.mobile {
    display: inline-block;
  }
}
.language .language_current {
  cursor: pointer;
  margin: 0 20px;
  position: relative;
}
.language .language_current span {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #F3F4F8;
  opacity: 0.4;
}
.language .language_current:hover ~ .language_choices {
  height: 300%;
  padding-top: 5px;
}
.language .language_choices {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 20px;
  height: 0%;
  padding-top: 0px;
  transition: 0.4s;
  margin: 0 20px;
}
.language .language_choices:hover {
  height: 300%;
  padding-top: 5px;
}
.language .language_choices span {
  cursor: pointer;
}

.mobileMenu_track {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background-color: #121425;
  padding: 0 2.5%;
  box-sizing: border-box;
  transition: 0.5s;
}

.left-0{
  left:0;
}

.mobileMenu_track .track_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}
.mobileMenu_track .track_top svg {
  cursor: pointer;
}
.mobileMenu_track .language.mobile {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
.mobileMenu_track .language.mobile .language_current {
  margin: 0;
  font-size: 14px;
}
.mobileMenu_track .language.mobile .language_choices {
  margin: 0;
  font-size: 14px;
}
.mobileMenu_track .track_menu {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobileMenu_track .track_menu .list {
  font-size: 20px;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  display: block;
  color: white;
  text-decoration: none;
}
.mobileMenu_track .track_menu .list span {
  position: absolute;
  bottom: -4px;
  width: 0;
  border-bottom: 1px solid #FFFFFF;
}
.mobileMenu_track .track_menu .list span.active {
  width: 100%;
}
.mobileMenu_track .track_footer {
  position: absolute;
  bottom: 5%;
}
.mobileMenu_track .track_footer td {
  font-size: 14px;
  font-weight: 300;
  padding-right: 25px;
}

.header_title {
  display: none;
  position: absolute;
  top: 45px;
  right: 70px;
  font-size: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid #FFFFFF;
  z-index: 3;
  transition: 0.5s;
}
@media (max-width: 1100px) {
  .header_title {
    display: block;
  }
}

.nuxt_btn {
  background: #048E80;
  color: #F3F4F8;
  font-size: 14px;
  padding: 12px 18px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

body::-webkit-scrollbar {
  display: none;
}

.main {
  position: absolute;
  width: 100%;
  top: 0;
}
.main #section1 {
  width: 100%;
  height: 100vh;
  background-image: url(./images/main1Or.png);
  background-size: cover;
  background-position: right;
  background-color: black;
  position: relative;
}
@media (max-width: 640px) {
  .main #section1 {
    background-position: 45% 100px;
    background-repeat: no-repeat;
  }
}
.main #section1 .container {
  height: 100%;
}
.main #section1 #top_hr {
  position: relative;
  top: 0;
  left: calc(15% + 75px);
  border: none;
  border-right: 1px solid #F3F4F8;
  opacity: 0.4;
  height: 54px;
  display: inline-block;
  margin: 0;
}
@media (max-width: 640px) {
  .main #section1 #top_hr {
    display: none;
  }
}
.main #section1 .section1_center {
  height: calc(100% - 59px);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20%;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .main #section1 .section1_center {
    padding-top: 35%;
    flex-direction: column;
  }
}
.main #section1 .section1_center h1 {
  font-size: 32px;
  text-align: right;
  margin: 0;
  min-width: calc(15% + 74px);
  overflow: hidden;
  padding-right: 40px;
  box-sizing: border-box;
  font-family: chakra;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .main #section1 .section1_center h1 {
    width: 100%;
    text-align: left;
    padding-right: 0;
    margin-bottom: 100px;
    overflow: visible;
    font-size: 24px;
  }
}
.main #section1 .section1_center #center_hr {
  border: none;
  border-right: 1px solid #F3F4F8;
  display: inline-block;
  opacity: 0.4;
  height: 150%;
  margin: 0;
  margin-top: calc(-20% + 83px);
}
@media (max-width: 640px) {
  .main #section1 .section1_center #center_hr {
    display: none;
  }
}
.main #section1 .section1_center .center_content {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 95%;
  width: 100%;
}
@media (max-width: 640px) {
  .main #section1 .section1_center .center_content {
    padding-left: 0;
  }
}
.main #section1 .section1_center .center_content h3 {
  font-size: 16px;
  font-weight: normal;
  width: 60%;
  margin: 0 0 20px 0;
}
@media (max-width: 640px) {
  .main #section1 .section1_center .center_content h3 {
    width: 80%;
    line-height: 150%;
  }
}
.main #section1 .section1_center .center_content_top {
  width: 100%;
}
.main #section1 .section1_center .center_content table td {
  font-size: 14px;
  font-weight: 300;
}
.main #section1 .section1_bottom {
  height: 10%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
}
.main #section2 {
  background-color: #000000;
}
.main #section2 .container {
  padding: 100px 50px 100px 10%;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .main #section2 .container {
    padding: 50px 0 70px 0;
  }
}
.main #section2 .container h1 {
  font-size: 32px;
  position: relative;
  margin: 0;
  margin-bottom: 50px;
}
.main #section2 .container h1 span {
  position: absolute;
  bottom: -20px;
  width: 5%;
  border-bottom: 2px solid #D0D0D0;
}
@media (max-width: 1100px) {
  .main #section2 .container h1 span {
    width: 15%;
  }
}
.main #section2 .container p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  width: 50%;
}
@media (max-width: 1100px) {
  .main #section2 .container p {
    width: 100%;
  }
}
.main #section2 .container .lists {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .main #section2 .container .lists {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.main #section2 .container .lists p {
  width: 30%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .main #section2 .container .lists p {
    width: 100%;
    margin-bottom: 30px;
  }
}
.main #section2 .container .lists p span:first-child {
  min-height: 5px;
  min-width: 5px;
  background-color: white;
  border-radius: 10px;
  margin: 10px 8px 0 30px;
}
@media (max-width: 1100px) {
  .main #section2 .container .lists p span:first-child {
    margin-left: 0;
  }
}
.main #section2 .container .lists p span {
  display: inline-block;
  white-space: pre-wrap;
  font-size: 16px;
  font-weight: 400;
}
.main #section3 {
  width: 100%;
  height: 80vh;
  background-image: url(./images/main2.png);
  background-size: cover;
}
@media (max-width: 640px) {
  .main #section3 {
    background-position: 40%;
  }
}
.main #section3 .container {
  padding: 0 10%;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .main #section3 .container {
    padding: 0 5%;
  }
}
.main #section3 .container .section3_counts {
  padding: 50px 60px;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .main #section3 .container .section3_counts {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.main #section3 .container .section3_counts .box {
  width: 30%;
  margin-right: 5%;
  padding-left: 40px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1100px) {
  .main #section3 .container .section3_counts .box {
    width: 100%;
    margin-right: 0;
    padding-left: 0;
    height: -moz-fit-content;
    height: fit-content;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
  }
}
.main #section3 .container .section3_counts .box:last-child {
  margin-right: 0;
}
.main #section3 .container .section3_counts .box:first-child {
  padding-left: 0;
  border: none;
}
.main #section3 .container .section3_counts .box p {
  margin-top: 0;
}
.main #section3 .container .section3_counts .box_center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.main #section3 .container .section3_counts .box_center .box_count {
  font-size: 64px;
  font-weight: 600;
  font-family: chakra;
}
.main #section3 .container .section3_counts .box_center p {
  font-size: 12px;
  margin-left: 10px;
}

.doing {
  background-color: #121425;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  padding-top: 145px;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-image: url(./images/background3.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
}
@media (max-width: 640px) {
  .doing {
    height: auto;
    min-height: 100vh;
  }
}
.doing .doing_navbar {
  overflow: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.doing .doing_navbar ::-webkit-scrollbar {
  height: 5px;
}
@media (max-width: 640px) {
  .doing .doing_navbar ::-webkit-scrollbar {
    height: 0;
  }
}
.doing .doing_navbar ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.doing .doing_navbar ::-webkit-scrollbar-thumb {
  background: #048E80;
  border-radius: 10px;
}
.doing .doing_navbar ::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  background: #06b1a0;
}
.doing .doing_navbar ul {
  display: flex;
  padding-left: 0;
  width: 100%;
  overflow-x: auto;
}
.doing .doing_navbar ul li {
  margin-bottom: 10px;
  padding: 0 18px;
  margin-right: 2%;
  list-style: none;
  border-bottom: 0.4px solid white;
  padding-bottom: 12px;
  opacity: 0.5;
  cursor: pointer;
}
@media (max-width: 640px) {
  .doing .doing_navbar ul li {
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
.doing .doing_navbar ul li:hover {
  border-bottom: 1px solid white;
  opacity: 1;
}
.doing .doing_navbar ul li.active {
  border-bottom: 1px solid white;
  opacity: 1;
  padding-left: 0;
}
.doing .doing_navbar ul li.active span {
  height: 10px;
  width: 10px;
  display: inline-block;
  background-color: #048E80;
  border-radius: 10px;
  margin-right: 8px;
}
.doing .doing_center {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .doing .doing_center {
    margin-top: 0;
    flex-direction: column;
  }
  .doing .doing_center.consulting_center {
    flex-direction: column;
  }
}
.doing .doing_center .doing_main {
  margin-right: 8%;
  min-width: 53%;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_main {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .doing .doing_center .doing_main.consulting_main {
    margin-bottom: 20px;
  }
}
.doing .doing_center .doing_main .doing_main_top {
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_main .doing_main_top {
    margin-bottom: 0;
  }
  .doing .doing_center .doing_main .doing_main_top p {
    margin-bottom: 0 !important;
  }
  .doing .doing_center .doing_main .doing_main_top.top_consulting {
    margin-bottom: 0;
  }
}
.doing .doing_center .doing_main .doing_main_top .mobileImage {
  display: none;
  width: 100%;
  height: 350px;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_main .doing_main_top .mobileImage {
    display: block;
  }
  .doing .doing_center .doing_main .doing_main_top .mobileImage img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.doing .doing_center .doing_main .doing_main_top h1 {
  font-weight: 400;
  font-size: 32px;
  margin: 20px 0;
}
.doing .doing_center .doing_main .doing_main_top p {
  font-size: 14px;
  line-height: 150%;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_main .doing_main_top p {
    margin-bottom: 50px;
  }
  .doing .doing_center .doing_main .doing_main_top p.p {
    margin-bottom: 0;
  }
}
.doing .doing_center .doing_main .doing_main_center .list {
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 2px solid #2E3A59;
}
.doing .doing_center .doing_main .doing_main_center .list .center_header {
  font-weight: 600;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 1px;
  color: #2E3A59;
  cursor: pointer;
  display: inline-block;
  transition: 0.5s;
}
.doing .doing_center .doing_main .doing_main_center .list .center_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  font-size: 14px;
}
.doing .doing_center .doing_main .doing_main_center #active {
  border-left: 2px solid #048E80;
}
.doing .doing_center .doing_main .doing_main_center #active .center_header {
  color: #F3F4F8;
  margin-bottom: 10px;
  transition: 0.5s;
}
.doing .doing_center .doing_main .doing_main_center #active .center_content {
  max-height: 1000px;
  transition: 5s;
}
.doing .doing_center .doing_main .doing_main_btn {
  margin-top: 50px;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_main .doing_main_btn {
    display: none;
  }
}
.doing .doing_center .doing_image {
  margin-right: 9%;
  min-width: 30%;
  max-width: 30%;
}
@media (max-width: 640px) {
  .doing .doing_center .doing_image {
    display: block;
    min-width: 100%;
    margin-right: 0;
  }
  .doing .doing_center .doing_image.consulting {
    display: block;
    min-width: 100%;
    margin-right: 0;
  }
}
.doing .doing_center .doing_image img {
  width: 100%;
}

.did {
  width: 100%;
  height: 100vh;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  right: 0;
  background-color: black;
  background-image: url(./images/main1Or.png);
  background-position: top right;
  background-size: auto 100%;
  padding-top: 200px;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .did {
    background-image: url(./images/mobileBacgroun.png);
    background-position: 45% 100px;
    background-repeat: no-repeat;
    background-color: #121425;
    background-size: cover;
    background-size: 400%;
    padding-top: 150px;
  }
}
.did .container {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .did .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.did .container .did_left {
  min-width: 35%;
  max-width: 35%;
  margin-right: 100px;
}
@media (max-width: 1100px) {
  .did .container .did_left {
    min-width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 26px;
  }
}
.did .container .did_left_boxes .boxes_box {
  margin-bottom: 20px;
}
.did .container .did_left_boxes .boxes_box_header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.did .container .did_left_boxes .boxes_box p {
  font-size: 14px;
  line-height: 21px;
}
@media (max-width: 1100px) {
  .did .container .did_left_boxes .boxes_box:last-child {
    display: none;
  }
}
@media (max-width: 1100px) {
  .did .container .did_left_btn {
    display: none;
  }
}
.did .container .did_right {
  height: 90%;
  overflow-y: auto;
  width: calc(65% - 100px);
  /* Hide scrollbar for IE, Edge and Firefox */
}
@media (max-width: 1100px) {
  .did .container .did_right {
    overflow-y: visible;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
.did .container .did_right::-webkit-scrollbar {
  display: none;
}
.did .container .did_right {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.did .container .did_right .did_right_cart {
  background-color: black;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2.5px);
          backdrop-filter: blur(2.5px);
  margin-bottom: 10px;
}
.did .container .did_right .did_right_cart .cart_icon {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.did .container .did_right .did_right_cart .cart_icon img {
  width: 24px;
  height: 24px;
}
.did .container .did_right .did_right_cart p {
  margin: 0;
}
.did .container .mobile_bottom {
  margin-top: 40px;
  padding-bottom: 40px;
  display: none;
}
@media (max-width: 1100px) {
  .did .container .mobile_bottom {
    display: block;
    width: 100%;
  }
}
.did .container .mobile_bottom .mobile_bottom_header {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.did .container .mobile_bottom p {
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 30px;
  margin-top: 10px;
}

.contactUs {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contactUs .left {
  background-color: #048E80;
}
.contactUs .right {
  background-color: #121425;
}
.contactUs .left, .contactUs .right {
  height: 100%;
  display: flex;
  flex: 1;
}
@media (max-width: 1100px) {
  .contactUs .left, .contactUs .right {
    display: none;
  }
}
@media (max-width: 1100px) {
  .contactUs {
    background-color: #121425;
  }
}
.contactUs .left_middle {
  width: 40%;
  position: absolute;
  top: calc(50% - 100px);
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .contactUs .left_middle {
    display: none;
  }
}
.contactUs .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}
@media (max-width: 1100px) {
  .contactUs .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
}
.contactUs .container .contactUs_left {
  min-width: 40%;
  max-width: 40%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #048E80;
  padding: 180px 80px 2.5% 35px;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_left {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    padding: 150px 2.5% 60px;
    z-index: 2;
    position: relative;
  }
}
.contactUs .container .contactUs_left .left_top .name {
  font-size: 32px;
}
@media (max-width: 640px) {
  .contactUs .container .contactUs_left .left_top .name {
    text-align: center;
  }
}
.contactUs .container .contactUs_left .left_top p {
  font-size: 14px;
}
.contactUs .container .contactUs_left .left_bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 640px) {
  .contactUs .container .contactUs_left .left_bottom {
    display: none;
  }
}
.contactUs .container .contactUs_left .left_bottom a {
  font-size: 14px;
  font-weight: 300;
  color: white;
}
.contactUs .container .contactUs_left .left_bottom a:first-child {
  padding-right: 10px;
  border-right: 0.6px solid #FFFFFF;
  margin-right: 10px;
}
.contactUs .container .contactUs_left .left_mobile_bottom {
  display: none;
  width: 100%;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_left .left_mobile_bottom {
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  .contactUs .container .contactUs_left .left_mobile_bottom svg {
    width: 100%;
  }
}
.contactUs .container .contactUs_right {
  min-width: 60%;
  max-width: 60%;
  height: 100vh;
  background-color: #121425;
  padding-top: 180px;
  box-sizing: border-box;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5%;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right {
    min-width: 100%;
    max-width: 100%;
    padding: 20px 2.5% 50px;
  }
}
.contactUs .container .contactUs_right .right_form {
  width: 100%;
}
.contactUs .container .contactUs_right .right_form .form_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-right: 75px;
  margin-bottom: 50px;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right .right_form .form_row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right .right_form .form_row .form_row_col {
    width: 100%;
    margin-bottom: 40px;
  }
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col input {
  width: 100%;
  background: none;
  border: none;
  padding: 6px 0px;
  font-size: 16px;
  outline: none;
  color: #F3F4F8;
  border-bottom: 1px solid #FFFFFF;
  opacity: 0.5;
  transition: 0.4s;
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col input:focus {
  opacity: 1;
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col input::-moz-placeholder {
  font-size: 16px;
  color: #F3F4F8;
}
.contactUs .container .contactUs_right .right_form .form_row .form_row_col input::placeholder {
  font-size: 16px;
  color: #F3F4F8;
}
.contactUs .container .contactUs_right .right_form .form_row:last-child .form_row_col {
  width: 100%;
}
.contactUs .container .contactUs_right .right_form .sendBtn {
  font-size: 16px;
  background: #048E80;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right .right_form .sendBtn {
    display: inline-block;
  }
}
.contactUs .container .contactUs_right .right_form .sendBtn span {
  margin-right: 10px;
}
.contactUs .container .contactUs_right .right_bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right .right_bottom {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.contactUs .container .contactUs_right .right_bottom div {
  margin-right: 20px;
  opacity: 0.5;
  font-size: 14px;
  cursor: pointer;
}
.contactUs .container .contactUs_right .mobile_producer_bottom {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  display: none;
}
@media (max-width: 1100px) {
  .contactUs .container .contactUs_right .mobile_producer_bottom {
    display: block;
  }
}
.contactUs .container .contactUs_right .mobile_producer_bottom a {
  color: white;
  text-decoration: none;
}
.contactUs .container .contactUs_right .mobile_producer_bottom div:first-child {
  border-bottom: 1px solid #048E80;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.loading {
  width: 100%;
  height: 100vh;
  background-color: rgba(94, 91, 91, 0.486);
  position: fixed;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.loader { /* Safari */
  animation: spin 2s linear infinite;
  border: 16px solid #f2f3f3;
  border-radius: 50%;
  border-top: 16px solid #072438;
  width: 120px;
  height: 120px;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */