@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.dot_row {
  margin-top: 35%;
}

.parent {
  display:flex;
}

.child {
  width: 50%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}
.header_image_name {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

.skew-neg {
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(-5deg);
  -ms-transform: skewY(-5deg);
  -o-transform: skewY(-5deg);
  transform: skewY(-5deg);
}

.skew-pos {
  -webkit-transform: skewY(5deg);
  -moz-transform: skewY(5deg);
  -ms-transform: skewY(5deg);
  -o-transform: skewY(5deg);
  transform: skewY(5deg);
}

html,
body {
  position: relative;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.header {
  flex-direction: column;
  display: flex;
  width: 100%;
  padding-top: 1em;
  background-color: #262B5B;
}
.header .inner__section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  width: 100%;
  /*------ logo ------*/
  /*------ Navigation ------*/
  /*------- Hamburger Menu ----------*/
  /*------- Mobile Navigation ----------*/
}
.header .inner__section .logo img {
  width: auto;
  max-width: 200px;
}
.header .inner__section .navigation {
  font-size: 1.3rem;
  text-transform: capitalize;
  margin-left: 10%;
}
.header .inner__section .navigation span {
  margin: 0 16px;
}
.header .inner__section .navigation a {
  text-decoration: none;
  color: #262B5B;
  transition: color 0.3s;
}
.header .inner__section .navigation a:hover {
  color: #B49644;
}
.header .inner__section .navigation a:focus {
  color: #B49644;
}
.header .inner__section .navigation a:visited {
  color: #ffffff;
}
.header .inner__section .hamburger__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.header .inner__section .hamburger__menu img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header .inner__section .mobile__navigation {
  position: fixed;
  right: -100%;
  top: 0;
  padding: 2em;
  height: 100%;
  width: 50%;
  background: #262B5B;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 0.3s;
}
.header .inner__section .mobile__navigation.is--open {
  z-index: 1;
  right: 0;
}
.header .inner__section .mobile__navigation .close__button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  margin: 0 0 3em 0;
}
.header .inner__section .mobile__navigation .close__button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.header .inner__section .mobile__navigation a {
  margin: 1em 0;
  text-decoration: none;
  color: #ffffff;
}

@media screen and (max-width: 576px) {
  .social-media-head {
    padding-bottom:18%;
  }
  .dot {
    background-color: #B49644;
    width: 50px;
    height: 50px;
    border-radius:50%;
    font-size: 25px;
    text-align: center;
    padding: 10px;
    margin: 3px;
  }
  .header_image {
    max-width: 100%;
    display: block;
    margin-left:10%;
  }
  .header .inner__section {
    width: 90%;
    /*------ logo ------*/
    /*------ Navigation ------*/
    /*------- Hamburger Menu ----------*/
    /*------- Mobile Navigation ----------*/
  }
  .header .inner__section .logo img {
    width: auto;
    max-width: 150px;
  }
  .header .inner__section .navigation {
    display: none;
  }
  .header .inner__section .hamburger__menu.is--hidden {
    visibility: visible;
  }
}
@media screen and (min-width: 577px) {
  .social-media-head {
    padding-bottom:0%;
  }
  .dot {
    background-color: #B49644;
    width: 55px;
    height: 55px;
    border-radius:50%;
    font-size: 25px;
    text-align: center;
    padding: 10px;
    margin: 6px;
  }
  .header_image {
    max-width: 100%;
    display: block;
    margin-left:10%;
    margin-top:16%;
  }
  .header .inner__section {
    width: 90%;
    /*------ logo ------*/
    /*------ Navigation ------*/
    /*------- Hamburger Menu ----------*/
    /*------- Mobile Navigation ----------*/
  }
  .header .inner__section .logo img {
    width: auto;
    max-width: 150px;
  }
  .header .inner__section .navigation {
    display: none;
  }
  .header .inner__section .hamburger__menu.is--hidden {
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  .dot {
    background-color: #B49644;
    width: 70px;
    height: 70px;
    border-radius:50%;
    font-size: 25px;
    text-align: center;
    padding: 13px;
    margin: 10px;
  }
  .header_image {
    max-width: 100%;
    display: block;
    margin-left:10%;
  }
  .header .inner__section {
    width: 90%;
    /*------ logo ------*/
    /*------ Navigation ------*/
    /*------- Hamburger Menu ----------*/
    /*------- Mobile Navigation ----------*/
  }
  .header .inner__section .logo img {
    width: auto;
    max-width: 150px;
  }
  .header .inner__section .navigation {
    display: none;
  }
  .header .inner__section .hamburger__menu.is--hidden {
    visibility: visible;
  }
}
@media screen and (min-width: 992px) {
  .dot {
    background-color: #B49644;
    width: 93px;
    height: 93px;
    border-radius:50%;
    font-size: 25px;
    text-align: center;
    padding: 15px;
    margin: 13px;
  }
  .header_image {
    max-width: 100%;
    display: block;
    margin-left:10%;
  }
  .header .inner__section {
    width: 80%;
    /*------ logo ------*/
    /*------ Navigation ------*/
    /*------- Hamburger Menu ----------*/
    /*------- Mobile Navigation ----------*/
  }
  .header .inner__section .logo img {
    width: auto;
    max-width: 200px;
  }
  .header .inner__section .navigation {
    display: flex;
  }
  .header .inner__section .hamburger__menu.is--hidden {
    visibility: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .dot {
    background-color: #B49644;
    width: 110px;
    height: 110px;
    border-radius:50%;
    font-size: 25px;
    text-align: center;
    padding: 15px;
    margin-right: 20px;
    margin-top: auto;
  }
  .header_image {
    max-width: 100%;
    display: block;
    margin-left:10%;
  }
  .header .inner__section {
    width: 80%;
    /*------ logo ------*/
    /*------ Navigation ------*/
    /*------- Hamburger Menu ----------*/
    /*------- Mobile Navigation ----------*/
  }
  .header .inner__section .logo img {
    width: auto;
    max-width: 200px;
  }
  .header .inner__section .navigation {
    display: flex;
  }
  .header .inner__section .hamburger__menu.is--hidden {
    visibility: hidden;
  }
}
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em 12em;
  overflow: hidden;
  background: #B49644;
  text-align: left;
  color: #ffffff;
  position: relative;
  width: 100%;
}
.footer .bg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 1;
}
.footer .inner__section {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
  z-index: 2;
}
.footer .inner__section .inner__section--top {
  margin: 0 0 16px 0;
}
.footer .inner__section .inner__section--top .blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .inner__section .inner__section--top .blocks .block {
  width: 20%;
}
.footer .inner__section .inner__section--top .blocks .block .logo {
  font-size: 1.2rem;
  margin: 0 0 12px 0;
}
.footer .inner__section .inner__section--top .blocks .block .description {
  margin: 0 0 12px 0;
}
.footer .inner__section .inner__section--top .blocks .block .social__media {
  display: flex;
  margin: 0 0 12px 0;
}
.footer .inner__section .inner__section--top .blocks .block .social__media .icon__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  margin: 0 0 0 4px;
}
.footer .inner__section .inner__section--top .blocks .block .social__media .icon__container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer .inner__section .inner__section--top .blocks .block .block__title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 1em 0;
}
.footer .inner__section .inner__section--top .blocks .block .information {
  list-style: none;
}
.footer .inner__section .inner__section--top .blocks .block .information li {
  font-size: 0.8rem;
  margin: 0 0 1em 0;
}
.footer .inner__section .inner__section--bottom .copyrights {
  font-size: 0.8rem;
}

@media screen and (max-width: 576px) {
  .footer .inner__section {
    width: 90%;
  }
  .footer .inner__section .inner__section--top .blocks {
    flex-direction: column;
  }
  .footer .inner__section .inner__section--top .blocks .block {
    width: 90%;
    margin: 1em;
  }
}
@media screen and (min-width: 577px) {
  .footer .inner__section {
    width: 90%;
  }
  .footer .inner__section .inner__section--top .blocks {
    flex-direction: column;
  }
  .footer .inner__section .inner__section--top .blocks .block {
    width: 90%;
    margin: 1em;
  }
}
@media screen and (min-width: 768px) {
  .footer .inner__section {
    width: 90%;
  }
  .footer .inner__section .inner__section--top .blocks {
    flex-direction: column;
  }
  .footer .inner__section .inner__section--top .blocks .block {
    width: 90%;
    margin: 1em;
  }
}
@media screen and (min-width: 992px) {
  .footer .inner__section {
    width: 90%;
  }
  .footer .inner__section .inner__section--top .blocks {
    flex-direction: row;
  }
  .footer .inner__section .inner__section--top .blocks .block {
    width: 20%;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer .inner__section {
    width: 90%;
  }
  .footer .inner__section .inner__section--top .blocks {
    flex-direction: row;
  }
  .footer .inner__section .inner__section--top .blocks .block {
    width: 20%;
    margin: 0;
  }
}
.hero__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  overflow: hidden;
  width: 100%;
  margin-top: -5.2em;
  background-color: #B49644;
}
.hero__section .inner__section {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
}
.hero__section .inner__section .inner__section--top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__section .inner__section .inner__section--top .block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__section .inner__section .inner__section--top .block .block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2em;
  width: 164px;
  height: 164px;
  border-radius: 24px;
}
.hero__section .inner__section .inner__section--top .block .block__icon.background--01 {
  background: #ff6d6a;
}
.hero__section .inner__section .inner__section--top .block .block__icon.background--02 {
  background: #64ccc9;
}
.hero__section .inner__section .inner__section--top .block .block__icon.background--03 {
  background: #0aaf87;
}
.hero__section .inner__section .inner__section--top .block .block__icon.background--04 {
  background: #ffc143;
}
.hero__section .inner__section .inner__section--top .block .block__icon .icon__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  overflow: hidden;
  padding: 8px;
}
.hero__section .inner__section .inner__section--top .block .block__icon .icon__container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
  min-height: 100%;
}
.hero__section .inner__section .inner__section--top .block .block__icon .icon__container__website {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  overflow: hidden;
  padding: 8px;
}
.hero__section .inner__section .inner__section--top .block .block__icon .icon__container__website img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
  min-height: 100%;
}
.hero__section .inner__section .inner__section--top .block .block__title {
  margin-top: 16px;
}
.hero__section .inner__section .inner__section--top .block .block__title a {
  font-weight: 400;
  text-decoration: none;
  color: #262B5B;
  transition: color 0.3s;
}
.hero__section .inner__section .inner__section--top .block .block__title a:hover {
  font-weight: 500;
}
.hero__section .inner__section .inner__section--top .block .block__title a:hover.color--01 {
  color: #ff6d6a;
}
.hero__section .inner__section .inner__section--top .block .block__title a:hover.color--02 {
  color: #64ccc9;
}
.hero__section .inner__section .inner__section--top .block .block__title a:hover.color--03 {
  color: #0aaf87;
}
.hero__section .inner__section .inner__section--top .block .block__title a:hover.color--04 {
  color: #ffc143;
}
.hero__section .inner__section .inner__section--bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 80px;
}
.hero__section .inner__section .inner__section--bottom .topics__section {
  text-align: center;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section {
  width: 100%;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__title {
  text-transform: capitalize;
  font-weight: 700;
  color: #262B5B;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
  text-transform: capitalize;
  color: #262B5B;
  margin: 0 auto 32px;
  width: 60%;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 32px;
  margin: 0 auto 32px;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  margin: 0 1.5em;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
  /*width: 100%;*/
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 32px;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .flickity-button svg:hover path {
  fill: #0aaf87;
}
.hero__section .inner__section .inner__section--bottom .btn {
  align-self: center;
  background: #262B5B;
  color: #ffffff;
  transition: all 0.3s;
}
.hero__section .inner__section .inner__section--bottom .btn:hover {
  background: #ff6d6a;
}
.hero__section .inner__section .inner__section--bottom .btn:focus {
  background: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .hero__section .inner__section {
    width: 90%;
  }
  .hero__section .inner__section .inner__section--top {
    justify-content: space-around;
  }
  .hero__section .inner__section .inner__section--top .block {
    margin: 0.5em 0;
  }
  .hero__section .inner__section .inner__section--top .block .block__icon {
    width: 120px;
    height: 120px;
    margin: 0;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__title {
    font-size: 2rem;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
    width: 100%;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
    /*width: 100%;*/
    height: 55% !important;
  }
}
@media screen and (min-width: 577px) {
  .hero__section .inner__section {
    width: 90%;
  }
  .hero__section .inner__section .inner__section--top {
    justify-content: space-around;
  }
  .hero__section .inner__section .inner__section--top .block {
    margin: 0.5em 0;
  }
  .hero__section .inner__section .inner__section--top .block .block__icon {
    width: 120px;
    height: 120px;
    margin: 0;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__title {
    font-size: 2rem;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
    width: 100%;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
    /*width: 100%;*/
    height: 60% !important;
  }
}
@media screen and (min-width: 768px) {
  .hero__section .inner__section {
    width: 90%;
  }
  .hero__section .inner__section .inner__section--top {
    justify-content: space-around;
  }
  .hero__section .inner__section .inner__section--top .block {
    margin: 0.5em 0;
  }
  .hero__section .inner__section .inner__section--top .block .block__icon {
    width: 140px;
    height: 140px;
    margin: 0;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__title {
    font-size: 3rem;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
    width: 60%;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
    /*width: 100%;*/
    height: 70% !important;
  }
}
@media screen and (min-width: 992px) {
  .hero__section .inner__section {
    width: 80%;
  }
  .hero__section .inner__section .inner__section--top {
    justify-content: center;
  }
  .hero__section .inner__section .inner__section--top .block {
    margin: 0.5em 0;
  }
  .hero__section .inner__section .inner__section--top .block .block__icon {
    width: 160px;
    height: 160px;
    margin: 0 2em;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
    width: 60%;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
    /*width: 100%;*/
    height: 90% !important;
  }
}
@media screen and (min-width: 1200px) {
  .hero__section .inner__section {
    width: 80%;
  }
  .hero__section .inner__section .inner__section--top {
    justify-content: center;
  }
  .hero__section .inner__section .inner__section--top .block .block__icon {
    width: 164px;
    height: 164px;
    margin: 0 2em;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .topic__description {
    width: 60%;
  }
  .hero__section .inner__section .inner__section--bottom .topics__section .inner__section .carousel .carousel__item img {
    /*width: 100%;*/
    height: 100% !important;
  }
}
.aboutus__section {
  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;
  padding: 4em 2em;
  width: 100%;
  overflow: hidden;
  background: #262B5B;
}
.aboutus__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.aboutus__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #B49644;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
  text-align: center;
}
.aboutus__section .inner__section .blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.aboutus__section .inner__section .blocks .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-top: 2em;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid #B49644;
  border-radius: 32px;
}
.aboutus__section .inner__section .blocks .block .block__icon {
  overflow: hidden;
  margin: 0 0 16px 0;
}
.aboutus__section .inner__section .blocks .block .block__icon .icon__container {
  overflow: hidden;
  width: 160px;
  height: 160px;
  padding: 12px;
  margin-right: 10px;
}
.aboutus__section .inner__section .blocks .block .block__icon .icon__container svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.aboutus__section .inner__section .blocks .block .block__title {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0 0 12px 0;
  letter-spacing: -1px;
  text-align: center;
}
.aboutus__section .inner__section .blocks .block .block__content {
  color: #ffffff;
  text-align: left;
  width: 100%;
  padding: 1.2em;
}
@media screen and (max-width: 576px) {
  .aboutus__section .inner__section {
      width: 90%;
  }
  .aboutus__section .inner__section .title {
      font-size: 2rem;
  }
  .aboutus__section .inner__section .blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block .block__content {
      text-align: center;
      width: 100%;
  }
}
@media screen and (min-width: 577px) {
  .aboutus__section .inner__section {
      width: 90%;
  }
  .aboutus__section .inner__section .title {
      font-size: 2rem;
  }
  .aboutus__section .inner__section .blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block .block__content {
      text-align: center;
      width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .aboutus__section .inner__section {
      width: 90%;
  }
  .aboutus__section .inner__section .title {
      font-size: 3rem;
  }
  .aboutus__section .inner__section .blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block {
      width: 100%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
  }
  .aboutus__section .inner__section .blocks .block .block__content {
      text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .aboutus__section .inner__section {
      width: 90%;
  }
  .aboutus__section .inner__section .blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block {
      width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .aboutus__section .inner__section {
      width: 90%;
  }
  .aboutus__section .inner__section .blocks {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }
  .aboutus__section .inner__section .blocks .block {
      width: 100%;
  }
}





















.ourfacts__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  text-align: center;
  overflow: hidden;
  width: 100%;
  background-color: #B49644;
}
.ourfacts__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.ourfacts__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #262B5B;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}
.ourfacts__section .inner__section .ourfacts__carousel {
  display: block;
  width: 100%;
  height: 100%;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item .carousel__item_icon {
  overflow: hidden;
  margin: 0 0 12px 0;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item .carousel__item_icon .icon__container {
  overflow: hidden;
  width: 80px;
  height: 80px;
  padding: 12px;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item .carousel__item_icon .icon__container img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item .carousel__item_title {
  color: #262B5B;
  font-size: 2.5rem;
  margin: 0 0 4px 0;
  letter-spacing: -1px;
}
.ourfacts__section .inner__section .ourfacts__carousel .carousel__item .carousel__item_content {
  color: #262B5B;
}
.ourfacts__section .inner__section .ourfacts__carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.ourfacts__section .inner__section .ourfacts__carousel .flickity-button svg:hover path {
  fill: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .ourfacts__section .inner__section {
    width: 90%;
  }
  .ourfacts__section .inner__section .title {
    font-size: 2rem;
  }
  .ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
    width: 100%;
  }
}
@media screen and (min-width: 577px) {
  .ourfacts__section .inner__section {
    width: 90%;
  }
  .ourfacts__section .inner__section .title {
    font-size: 2rem;
  }
  .ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .ourfacts__section .inner__section {
    width: 90%;
  }
  .ourfacts__section .inner__section .title {
    font-size: 3rem;
  }
  .ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .ourfacts__section .inner__section {
    width: 90%;
  }
  .ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
    width: 25%;
  }
}
@media screen and (min-width: 1200px) {
  .ourfacts__section .inner__section {
    width: 90%;
  }
  .ourfacts__section .inner__section .ourfacts__carousel .carousel__item {
    width: 25%;
  }
}
.sistercompanies__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  text-align: center;
  overflow: hidden;
  width: 100%;
  background-color: #262B5B;
}
.sistercompanies__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.sistercompanies__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #B49644;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}
.sistercompanies__section .inner__section .sistercompanies__carousel {
  display: block;
  width: 100%;
  height: 100%;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  width: 20%;
  margin: 0 0.5em;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .carousel__item_image {
  overflow: hidden;
  width: 100%;
  height: 200px;
  min-width: 100%;
  margin: 0 0 16px 0;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .carousel__item_image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .carousel__item_description {
  color: #ffffff;
  margin: 0 0 16px 0;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .btn {
  background: #B49644;
  transition: all 0.3s;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .btn.btn--small {
  padding: 0.5rem 2rem;
  color: #ffffff;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .btn:hover {
  background: #262B5B;
  color: #ffffff;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item .btn:focus {
  background: #262B5B;
  color: #ffffff;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.sistercompanies__section .inner__section .sistercompanies__carousel .flickity-button svg:hover path {
  fill: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .sistercompanies__section .inner__section {
    width: 90%;
  }
  .sistercompanies__section .inner__section .title {
    font-size: 2rem;
  }
  .sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
    width: 100%;
    margin: 0 1em;
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 577px) {
  .sistercompanies__section .inner__section {
    width: 90%;
  }
  .sistercompanies__section .inner__section .title {
    font-size: 2rem;
  }
  .sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
    width: 100%;
    margin: 0 1em;
  }
}
@media screen and (min-width: 768px) {
  .sistercompanies__section .inner__section {
    width: 90%;
  }
  .sistercompanies__section .inner__section .title {
    font-size: 3rem;
  }
  .sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
    width: 50%;
    margin: 0 1em;
    align-items: flex-start;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .sistercompanies__section .inner__section {
    width: 90%;
  }
  .sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
    width: 33.33%;
    margin: 0 0.5em;
  }
}
@media screen and (min-width: 1200px) {
  .sistercompanies__section .inner__section {
    width: 100%;
  }
  .sistercompanies__section .inner__section .sistercompanies__carousel .carousel__item {
    width: 25%;
    margin: 0 0.5em;
  }
}
.news__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  text-align: center;
  overflow: hidden;
  background: #B49644;
  width: 100%;
}
.news__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.news__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #262B5B;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}
.news__section .inner__section .carousel {
  width: 70%;
  margin: 0 auto;
}
.news__section .inner__section .carousel .carousel__item {
  display: block;
  width: 100%;
  margin: 0 1em;
}
.news__section .inner__section .carousel .carousel__item .carousel__item_image {
  width: 100%;
  height: 500px;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 0 24px 0;
}
.news__section .inner__section .carousel .carousel__item .carousel__item_image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__section .inner__section .carousel .carousel__item .carousel__item_title {
  font-size: 2.5rem;
  text-transform: capitalize;
  color: #262B5B;
  margin: 0 0 16px 0;
}
.news__section .inner__section .carousel .carousel__item .carousel__item_description {
  color: #ffffff;
  line-height: 32px;
}
.news__section .inner__section .carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.news__section .inner__section .carousel .flickity-button svg:hover path {
  fill: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .news__section .inner__section {
    width: 90%;
  }
  .news__section .inner__section .title {
    font-size: 2rem;
  }
  .news__section .inner__section .carousel {
    width: 100%;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_image {
    height: 300px;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 577px) {
  .news__section .inner__section {
    width: 90%;
  }
  .news__section .inner__section .title {
    font-size: 2rem;
  }
  .news__section .inner__section .carousel {
    width: 100%;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_image {
    height: 300px;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .news__section .inner__section {
    width: 90%;
  }
  .news__section .inner__section .title {
    font-size: 3rem;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_image {
    height: 500px;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .news__section .inner__section {
    width: 90%;
  }
  .news__section .inner__section .title {
    font-size: 3rem;
  }
  .news__section .inner__section .carousel {
    width: 70%;
    margin: 0 auto;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_image {
    height: 500px;
  }
  .news__section .inner__section .carousel .carousel__item .carousel__item_title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .news__section .inner__section {
    width: 90%;
  }
  .news__section .inner__section .title {
    font-size: 3rem;
  }
  .news__section .inner__section .carousel {
    width: 70%;
    margin: 0 auto;
  }
}
.excutivemanagement__section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4em 2em;
  text-align: center;
  overflow: hidden;
  width: 100%;
  background-color: #262B5B;
}
.excutivemanagement__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.excutivemanagement__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #B49644;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}
.excutivemanagement__section .inner__section .description {
  color: #B49644;
  margin: 0 auto 24px;
  width: 80%;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel {
  display: block;
  width: 100%;
  height: 100%;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item .carousel__item_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2em;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: #e8e8e8;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item .carousel__item_icon .icon__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  overflow: hidden;
  padding: 8px;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item .carousel__item_icon .icon__container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  min-width: 100%;
  min-height: 100%;
  border-radius: 50%;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item .carousel__item_title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 16px 0 4px 0;
  color: #B49644;
  text-transform: uppercase;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .carousel__item .carousel__item_description {
  color: #ffffff;
  text-transform: capitalize;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.excutivemanagement__section .inner__section .excutivemanagement__carousel .flickity-button svg path:hover {
  fill: #0aaf87;
}

@media screen and (max-width: 576px) {
  .excutivemanagement__section .inner__section {
    width: 90%;
  }
  .excutivemanagement__section .inner__section .title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 577px) {
  .excutivemanagement__section .inner__section {
    width: 90%;
  }
  .excutivemanagement__section .inner__section .title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .excutivemanagement__section .inner__section {
    width: 90%;
  }
  .excutivemanagement__section .inner__section .title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .excutivemanagement__section .inner__section {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .excutivemanagement__section .inner__section {
    width: 90%;
  }
}
.ourprofile__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 1em;
  text-align: center;
  overflow: hidden;
  background: #B49644;
  width: 100%;
}
.ourprofile__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.ourprofile__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #262B5B;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 32px 0;
}
.ourprofile__section .inner__section .blocks {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.ourprofile__section .inner__section .blocks .block--left {
  width: 50%;
  margin: 1em;
}
.ourprofile__section .inner__section .blocks .block--left .carousel {
  width: 90%;
}
.ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item {
  width: 100%;
  margin: 0 1em;
}
.ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item .carousel__item_image {
  width: 100%;
  height: 300px;
  border-radius: 32px;
  overflow: hidden;
}
.ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item .carousel__item_image img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.ourprofile__section .inner__section .blocks .block--left .carousel .flickity-button svg path {
  fill: #262B5B;
  transition: 0.3s;
}
.ourprofile__section .inner__section .blocks .block--left .carousel .flickity-button svg:hover path {
  fill: #ff6d6a;
}
.ourprofile__section .inner__section .blocks .block--right {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 50%;
  margin: 1em;
}
.ourprofile__section .inner__section .blocks .block--right .block--right__content {
  color: #ffffff;
  line-height: 32px;
  text-align: left;
  margin: 0 0 24px 0;
}
.ourprofile__section .inner__section .blocks .block--right .btn {
  align-self: flex-end;
  transition: all 0.3s;
}
.ourprofile__section .inner__section .blocks .block--right .btn.btn--small {
  padding: 0.5rem 2rem;
  background: #262B5B;
  color: #ffffff;
}
.ourprofile__section .inner__section .blocks .block--right .btn:hover {
  background: #ff6d6a;
}
.ourprofile__section .inner__section .blocks .block--right .btn:focus {
  background: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .ourprofile__section .inner__section {
    width: 90%;
  }
  .ourprofile__section .inner__section .title {
    font-size: 2rem;
  }
  .ourprofile__section .inner__section .blocks {
    flex-direction: column;
  }
  .ourprofile__section .inner__section .blocks .block--left,
.ourprofile__section .inner__section .blocks .block--right {
    width: 90%;
    margin: 1em auto;
  }
  .ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item .carousel__item_image {
    height: 300px;
  }
}
@media screen and (min-width: 577px) {
  .ourprofile__section .inner__section {
    width: 90%;
  }
  .ourprofile__section .inner__section .title {
    font-size: 2rem;
  }
  .ourprofile__section .inner__section .blocks {
    flex-direction: column;
  }
  .ourprofile__section .inner__section .blocks .block--left,
.ourprofile__section .inner__section .blocks .block--right {
    width: 90%;
    margin: 1em auto;
  }
  .ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item .carousel__item_image {
    height: 300px;
  }
}
@media screen and (min-width: 768px) {
  .ourprofile__section .inner__section {
    width: 90%;
  }
  .ourprofile__section .inner__section .title {
    font-size: 3rem;
  }
  .ourprofile__section .inner__section .blocks {
    flex-direction: row;
  }
  .ourprofile__section .inner__section .blocks .block--left,
.ourprofile__section .inner__section .blocks .block--right {
    width: 50%;
    margin: 1em;
  }
  .ourprofile__section .inner__section .blocks .block--left .carousel .carousel__item .carousel__item_image {
    height: 300px;
  }
}
@media screen and (min-width: 992px) {
  .ourprofile__section .inner__section {
    width: 90%;
  }
  .ourprofile__section .inner__section .blocks {
    flex-direction: row;
  }
  .ourprofile__section .inner__section .blocks .blocks .block--left .carousel .carousel__item .carousel__item_image {
    height: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .ourprofile__section .inner__section {
    width: 90%;
  }
  .ourprofile__section .inner__section .blocks {
    flex-direction: row;
  }
  .ourprofile__section .inner__section .blocks .blocks .block--left .carousel .carousel__item .carousel__item_image {
    height: 500px;
  }
}
.contactus__section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4em 2em;
  overflow: hidden;
  width: 100%;
  background-color: #262B5B;
}
.contactus__section .inner__section {
  max-width: 1140px;
  width: 100%;
}
.contactus__section .inner__section .title {
  text-transform: capitalize;
  font-weight: 700;
  color: #B49644;
  font-size: 3rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 8px 0;
  text-align: center;
}
.contactus__section .inner__section .description {
  color: #B49644;
  margin: 0 0 24px 0;
  text-align: center;
}
.contactus__section .inner__section .blocks {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
  width: 50%;
  overflow: hidden;
  margin: 2em;
}
.contactus__section .inner__section .blocks .block--left {
  text-align: left;
  color: #ffffff;
}
.contactus__section .inner__section .blocks .block--left .block--left_title {
  text-transform: capitalize;
  font-weight: 700;
  color: #B49644;
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
  margin: 0 0 8px 0;
}
.contactus__section .inner__section .blocks .block--left .address,
.contactus__section .inner__section .blocks .block--left .information {
  margin: 0 0 16px 0;
}
.contactus__section .inner__section .blocks .block--left .map {
  height: 300px;
  width: 100%;
  overflow: hidden;
}
.contactus__section .inner__section .blocks .block--left .map img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.contactus__section .inner__section .blocks .block--right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactus__section .inner__section .blocks .block--right form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.contactus__section .inner__section .blocks .block--right form .btn {
  background: #B49644;
  transition: all 0.3s;
  margin-top: 8px;
}
.contactus__section .inner__section .blocks .block--right form .btn.btn--small {
  padding: 0.5rem 2rem;
  color: #ffffff;
}
.contactus__section .inner__section .blocks .block--right form .btn:hover {
  background: #ff6d6a;
}
.contactus__section .inner__section .blocks .block--right form .btn:focus {
  background: #ff6d6a;
}

@media screen and (max-width: 576px) {
  .contactus__section .inner__section {
    width: 90%;
  }
  .contactus__section .inner__section .title {
    font-size: 2rem;
  }
  .contactus__section .inner__section .blocks {
    flex-direction: column;
  }
  .contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
    width: 100%;
  }
  .contactus__section .inner__section .blocks .block--left .map {
    width: 100%;
  }
}
@media screen and (min-width: 577px) {
  .contactus__section .inner__section {
    width: 90%;
  }
  .contactus__section .inner__section .title {
    font-size: 2rem;
  }
  .contactus__section .inner__section .blocks {
    flex-direction: column;
  }
  .contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
    width: 100%;
  }
  .contactus__section .inner__section .blocks .block--left .map {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .contactus__section .inner__section {
    width: 90%;
  }
  .contactus__section .inner__section .title {
    font-size: 3rem;
  }
  .contactus__section .inner__section .blocks {
    flex-direction: column;
  }
  .contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
    width: 100%;
  }
  .contactus__section .inner__section .blocks .block--left .map {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .contactus__section .inner__section {
    width: 90%;
  }
  .contactus__section .inner__section .title {
    font-size: 3rem;
  }
  .contactus__section .inner__section .blocks {
    flex-direction: row;
  }
  .contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
    width: 50%;
  }
  .contactus__section .inner__section .blocks .block--left .map {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .contactus__section .inner__section {
    width: 90%;
  }
  .contactus__section .inner__section .title {
    font-size: 3rem;
  }
  .contactus__section .inner__section .blocks {
    flex-direction: row;
  }
  .contactus__section .inner__section .blocks .block--left,
.contactus__section .inner__section .blocks .block--right {
    width: 50%;
  }
  .contactus__section .inner__section .blocks .block--left .map {
    width: 100%;
  }
}
.btn {
  width: auto;
  font-size: 1.125rem;
  text-transform: capitalize;
  border: none;
  cursor: pointer;
  padding: 1rem 3rem;
  border-radius: 24px;
  font-weight: 500;
}
.btn.translate__btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  width: 80px;
  height: 80px;
  background: #ff6d6a;
  border-radius: 50px;
  padding: 0;
  color: #ffffff;
  transition: background 0.3s;
}

.textfield {
  width: 100%;
  padding: 1.2em 1.5em;
  background: #f4f4f4;
  border: 2px solid transparent;
  color: #262B5B;
  margin: 0.4em 0;
  border-radius: 16px;
  font-size: 1.2em;
  transition: border 0.3s;
}
.textfield::-moz-placeholder {
  font-size: 1.2em;
}
.textfield::placeholder, .textfield::-moz-placeholder, .textfield::-webkit-input-placeholder {
  font-size: 1.2em;
}
.textfield:hover {
  border: 2px solid #262B5B;
}
.textfield:focus {
  border: 2px solid #262B5B;
}
