@import url("reset.css");
@import url("fonts.css");

/*

Colors:
Blue: 2193D2
Text: 000000
GREY: f1f1f1

*/

/*= General Style =*/

body {
  width: 100%;
  /* max-width: 1600px; */
  max-width: 1920px;
  margin: 0 auto;
  position: fixed;
  font-family: "right-grotesk", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #ffb303;
}

.main {
  position: relative;
}

.container {
  width: 100%;
  /* max-width: 1280px; */
  /* max-width: 1600px; */
  max-width: 1920px;
  margin: 0 auto;
}

.inner-container {
  padding: 0 2%;
}

/*  */
/* Fullscreen Welcome Overlay */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 1s ease-out;
}

/* Image inside the overlay */
.welcome-overlay img {
  width: 100%;
  max-width: 400px;
  transform: scale(0.5);
  animation: zoomIn 5s ease-in-out forwards;
}

/* Zoom-in Animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
/*  */

.loader-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 9999;
}

.loader-overlay .image-block {
  width: 500px;
  margin: 65vh auto 24px;
}

.loader {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap {
  animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
  animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
  animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
  animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
  animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: #ec1651;
  height: 90px;
  width: 90px;
  top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
  border-color: #330066;
  height: 76px;
  width: 76px;
  top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
  border-color: #f7bf14;
  height: 62px;
  width: 62px;
  top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
  border-color: #ec1651;
  height: 48px;
  width: 48px;
  top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
  border-color: #f7bf14;
  height: 34px;
  width: 34px;
  top: 35px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-overlay .image-block img {
  width: 100%;
}

.loader-overlay .text-block {
}

.loader-overlay .text-block p {
  font-family: "Roboto-condensed", sans-serif;
  font-size: 17px;
  line-height: 21px;
  text-align: center;
  color: #494949;
}

a.mobile_only,
a.mobile_only {
  cursor: not-allowed;
}

a.mobile_only.mob_active,
a.mobile_only.mob_active {
  cursor: pointer;
}

/* Floating Block */
.floating-up {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 50px;
  right: 0;
  z-index: 100;
}

.floating-up a {
  background: #ffffff;
  border: 1px solid #ffb303;
  padding: 10px 14px;
  border-radius: 12px;
  display: block;
  max-width: 15px;
  margin: 0 0 0 auto;
  line-height: 1em;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.floating-up a i {
  line-height: 1em;
  color: #ffb303;
}

.floating-up a:hover,
.floating-up a:focus,
.floating-up a:active {
  background: #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.floating-up a:hover i,
.floating-up a:focus i,
.floating-up a:active i {
  color: #ffffff;
}
/* Floating Block */

/* WhatsApp Floating */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 115px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float:hover {
  color: #ffffff;
}

.my-float {
  margin-top: 16px;
}
/* WhatsApp Floating */

/* Header Style */

.header-block {
}

.header-block .inner {
  width: 100%;
  font-size: 0;
}

.header-block .inner .mobile-bg {
  display: none;
}

.header-block .inner .mobile-bg img {
  width: 100%;
}

.header-block .header-block-1 {
  background: #ffffff;
}

.header-block .header-block-1 .navigation-block {
  /* display: inline-block; */
}

.header-block .navigation-block .close-button {
  display: none;
}

.header-block .navigation-block .close-button .icon-block {
}

.header-block .navigation-block .close-button .icon-block i {
  font-size: 32px;
  line-height: 44px;
  color: #333333;
}

.header-block .header-block-1 .logo-block {
  display: inline-block;
  vertical-align: middle;
  width: 16%;
  padding-right: 1%;
}

.header-block .header-block-1 .logo-block .text-block-1 {
}

.header-block .header-block-1 .logo-block .text-block-1 p {
  font-family: "Estedad", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1e1e1e;
  letter-spacing: 6px;
}

.header-block .header-block-1 .logo-block .image-block-0 {
  display: none;
  max-width: 200px;
  margin: 0 auto;
}

.header-block .header-block-1 .logo-block .image-block-0 img {
  width: 100%;
}

.header-block .header-block-1 .navigation {
  display: inline-block;
  vertical-align: middle;
  width: 55%;
  padding-left: 1%;
  padding-right: 1%;
}

.header-block .header-block-1 .navigation-block ul.navigation li {
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-block .header-block-1 .navigation li {
  display: inline-block;
  vertical-align: middle;
}

.header-block .header-block-1 .navigation li a {
  display: block;
  padding: 0 16px;
}

.header-block .header-block-1 .navigation li a:hover p,
.header-block .header-block-1 .navigation li a:active p,
.header-block .header-block-1 .navigation li a:focus p {
  color: #ffb303;
}

.header-block .header-block-1 .navigation li.active p,
.header-block .header-block-1 .navigation li.focus p {
  color: #ffb303;
}

.header-block .header-block-1 .navigation li a p {
  text-transform: uppercase;
  color: #1e1e1e99;
  letter-spacing: 4px;
  font-weight: bold;
}

.header-block .header-block-1 .navigation li a p.submenu {
  display: inline-block;
  vertical-align: middle;
}

.header-block .header-block-1 .navigation li a i {
  display: inline-block;
  /* color: #ffb303; */
  color: #1e1e1e99;
  vertical-align: middle;
  font-size: 8px;
  transform: rotate(90deg);
  margin-left: 7px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-block .header-block-1 .navigation li .list-block {
  display: none;
  position: absolute;
  width: 100%;
  top: 20px;
  left: 50%;
  border-radius: 0px 0px 4px 4px;
  background: #ffffff;
  transform: translate(-50%, 0);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 99;
}

.header-block .header-block-1 .navigation .nav-dd-li:hover .list-block {
  display: block;
}

.header-block .header-block-1 .navigation .nav-dd-li:hover i {
  color: #ffb303;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-block .header-block-1 .navigation li .list-block a {
  display: block;
  padding: 14px 22px;
  text-transform: uppercase;
  text-decoration: none;
}

.header-block .header-block-1 .navigation li .list-block a:first-child {
  padding: 35px 22px 14px 22px;
}

.header-block .header-block-1 .navigation li .list-block a p.subsub {
  font-size: 15px;
}

.header-block .header-block-1 .button-block {
  display: inline-block;
  vertical-align: middle;
  width: 25%;
  padding-left: 1%;
}

.header-block .header-block-1 .button-block .btn-1 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  float: unset;
}

.header-block .header-block-1 .button-block .btn-1 a {
  display: block;
  padding: 12px 24px;
}

.header-block .header-block-1 .button-block .active a p {
  color: #ea2548 !important;
}

.header-block .header-block-1 .button-block .btn-1 a:hover p,
.header-block .header-block-1 .button-block .btn-1 a:focus p,
.header-block .header-block-1 .button-block .btn-1 a:active p {
  color: #ea2548;
}

.header-block .header-block-1 .button-block .btn-1 a p {
  text-transform: uppercase;
  color: #1e1e1e99;
  letter-spacing: 4px;
  font-weight: bold;
}

.header-block .header-block-1 .button-block .btn-2 {
  display: inline-block;
  vertical-align: middle;
  float: right;
  margin-right: unset;
}

.header-block .header-block-1 .button-block .btn-2 a {
  display: block;
  background: #ea2548;
  border: 1px solid #ea2548;
  border-radius: 12px;
  padding: 12px 36px;
  max-width: 145px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block .header-block-1 .button-block .btn-2 a p {
  color: #ffffff;
  font-size: 16px;
}

.header-block .header-block-1 .button-block .btn-2 a:hover,
.header-block .header-block-1 .button-block .btn-2 a:focus,
.header-block .header-block-1 .button-block .btn-2 a:active {
  background: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block .header-block-1 .button-block .btn-2 a:hover p,
.header-block .header-block-1 .button-block .btn-2 a:focus p,
.header-block .header-block-1 .button-block .btn-2 a:active p {
  color: #ea2548;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block .header-block-1 .button-block .side-links {
  display: inline-block;
  vertical-align: middle;
  margin-right: unset;
  float: unset;
}
.header-block .header-block-1 .button-block .side-links .side-block {
}
.header-block .header-block-1 .button-block .side-links .side-block .link-side {
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
}
.header-block
  .header-block-1
  .button-block
  .side-links
  .side-block
  .link-side
  a {
  display: block;
}
.header-block
  .header-block-1
  .button-block
  .side-links
  .side-block
  .link-side
  a
  i {
  line-height: 45px;
  font-size: 24px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block
  .header-block-1
  .button-block
  .side-links
  .side-block
  .link-side
  a
  i:hover,
.header-block
  .header-block-1
  .button-block
  .side-links
  .side-block
  .link-side
  a
  i:focus,
.header-block
  .header-block-1
  .button-block
  .side-links
  .side-block
  .link-side
  a
  i:active {
  line-height: 45px;
  font-size: 24px;
  color: #ea2548;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.header-block .header-block-1 .nav-button-block {
  display: none;
}

.header-block .header-block-1 .nav-button-block .icon-block {
  margin-left: 20px;
}

.header-block .header-block-1 .nav-button-block .icon-block i {
  font-size: 32px;
  line-height: 1em;
  color: #494949;
  cursor: pointer;
}

.header-block .header-block-1 .more-block {
  display: none;
  position: relative;
  padding: 10px 0;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0px 4px 54px 0px #ffffff40 inset;
  box-shadow: -6px -1px 14px 0px #0000001a inset;
}

.header-block .header-block-1 .navigation-block-2 {
  /* display: none; */
}

.header-block .navigation-block-2 .image-block-2 {
  max-width: 200px;
  margin: 0 auto;
}

.header-block .navigation-block-2 .image-block-2 img {
  width: 100%;
}

.header-block .header-block-1 .navigation-block-3 {
}

.header-block .navigation-block-3 .image-block-3 {
}

.header-block .navigation-block-3 .image-block-3 img.img-1 {
  position: absolute;
  max-width: 77px;
  width: 100%;
  top: 0;
  right: -15px;
}
.header-block .navigation-block-3 .image-block-3 img.img-2 {
  position: absolute;
  max-width: 46px;
  width: 100%;
  top: -6px;
  right: 55px;
  filter: opacity(0.3);
}
.header-block .navigation-block-3 .image-block-3 img.img-3 {
  position: absolute;
  max-width: 66px;
  width: 100%;
  bottom: -26px;
  right: 57px;
  filter: opacity(0.5);
}
.header-block .navigation-block-3 .image-block-3 img.img-4 {
  position: absolute;
  max-width: 32px;
  width: 100%;
  top: 14px;
  right: 116px;
  filter: opacity(0.2);
}

/* Footer Style */

.footer-block {
}

.footer-block .footer-main {
}

.footer-block .footer-main .footer-0 {
  background: #ffb303;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.footer-block .footer-main .footer-0 .inner-container {
  padding: 0;
  font-size: 0;
}

.footer-block .inner {
  width: 100%;
  font-size: 0;
}

/*  */
.footer-block .footer-0 .block-0 {
  padding-left: 2%;
}

.footer-block .footer-0 .logo-block {
}

.footer-block .footer-0 .logo-block .text-block-1 {
}

.footer-block .footer-0 .logo-block .text-block-1 p {
  font-family: "Estedad", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1e1e1e !important;
  letter-spacing: 6px;
}
/*  */

.footer-block .footer-main .footer-0 .block-1 {
  padding-left: 2%;
  padding-right: 2%;
  width: 38%;
  display: inline-block;
  vertical-align: top;
}

.footer-block .footer-main .footer-0 .block-2 {
  padding-left: 2%;
  padding-right: 2%;
  width: 26%;
  display: inline-block;
  vertical-align: top;
}

.footer-block .block-2 .text-block-2 {
}

.footer-block .block-2 .text-block-2 .link-block {
}

.footer-block .block-2 .text-block-2 .link {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}
.footer-block .block-2 .text-block-2 .link:first-child {
  padding-left: 0;
}
.footer-block .block-2 .text-block-2 .link:last-child {
  padding-right: 0;
}

.footer-block .block-2 .text-block-2 .link a {
  display: block;
}

.footer-block .block-2 .text-block-2 .link a i {
  line-height: 1em;
}

.footer-block .block-2 .other-links {
  margin-top: 29px;
}
.footer-block .block-2 .other-links .others {
  margin-bottom: 12px;
}
.footer-block .block-2 .others a {
  display: grid;
  grid-template-columns: 25px 1fr;
}
.footer-block .block-2 .others i {
  line-height: 1em;
  color: #494949;
  font-size: 17px;
  margin-top: 2px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.footer-block .block-2 .others p {
  text-align: left;
  color: #494949;
  font-size: 17px;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .block-2 .others a:hover i,
.footer-block .block-2 .others a:hover p {
  color: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.footer-block .footer-main .footer-0 .block-3 {
  padding-left: 2%;
  padding-right: 2%;
  width: 20%;
  display: inline-block;
  vertical-align: top;
}

.footer-block .footer-main .footer-0 .block.block-1 .block-11,
.footer-block .footer-main .footer-0 .block.block-1 .block-12 {
  width: 50%;
}

.footer-block .footer-main .footer-0 .block .inner {
}

.footer-block .footer-main .footer-0 .text-block-1 {
}

.footer-block .footer-main .footer-0 .text-block-1 p,
.footer-block .footer-main .footer-0 .text-block-1 p span {
  color: #333333;
  font-weight: bold;
  text-transform: capitalize;
}

.footer-block .footer-main .footer-0 .text-block-1 p span {
  white-space: nowrap;
}

.footer-block .footer-main .footer-0 .text-block-2 {
}

.footer-block .footer-main .footer-0 .text-block-2 p {
  color: #333333;
  text-align: justify;
  vertical-align: middle;
  line-height: 28px;
}

.footer-block .footer-main .footer-0 .text-block-2 i {
  width: 24px;
  line-height: 1em;
  color: #494949;
  margin-right: 14px;
  text-align: center;
  vertical-align: middle;
}

.footer-block .footer-main .footer-0 .text-block-2 a {
  display: inline-block;
  line-height: 28px;
  color: #333333;
  vertical-align: middle;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block .footer-main .footer-0 .text-block-2.active a,
.footer-block .footer-main .footer-0 .text-block-2 a:hover,
.footer-block .footer-main .footer-0 .text-block-2 a:focus {
  color: #ea2548;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block .footer-main .footer-0 .text-block-2.active a {
  font-weight: bold;
}

.footer-block .footer-main .footer-0 .text-block-2 a:hover i,
.footer-block .footer-main .footer-0 .text-block-2 a:focus i {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block .footer-main .footer-0 .list-block {
}

.footer-block .footer-main .footer-0 .list-block li {
  display: inline-block;
  color: #494949;
  margin: 0 14px 4px 0;
}

.footer-block .footer-main .footer-0 .list-block li a {
  display: block;
  color: #494949;
  text-align: left;
}

.footer-block .footer-main .footer-0 .list-block li a:hover,
.footer-block .footer-main .footer-0 .list-block li a:focus {
  color: #ec6e00;
}

.footer-block .footer-main .footer-0 .list-block li a .icon-block {
}

.footer-block .footer-main .footer-0 .list-block li a .icon-block i {
  font-size: 32px;
  line-height: 1em;
  color: #ec6e00;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block
  .footer-main
  .footer-0
  .list-block
  li
  a
  .icon-block
  i.fa-whatsapp-square,
.footer-block
  .footer-main
  .footer-0
  .list-block
  li
  a
  .icon-block
  i.fa-whatsapp-square {
  color: #00e676;
}

.footer-block
  .footer-main
  .footer-0
  .list-block
  li
  a
  .icon-block
  i.fa-envelope-square,
.footer-block
  .footer-main
  .footer-0
  .list-block
  li
  a
  .icon-block
  i.fa-envelope-square {
  color: #d54639;
}

.footer-block .footer-main .footer-0 .list-block li a .icon-block i.fa-linkedin,
.footer-block
  .footer-main
  .footer-0
  .list-block
  li
  a
  .icon-block
  i.fa-linkedin {
  color: #0073b1;
}

.footer-block .footer-main .footer-0 .list-block li a:hover .icon-block i,
.footer-block .footer-main .footer-0 .list-block li a:focus .icon-block i {
  color: #494949;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block .footer-main .footer-1 {
  background: #ffb303;
  padding: 10px 0;
}

.footer-block .footer-main .footer-1 .left-block {
}

.footer-block .footer-main .footer-1 .left-block .copyright {
  position: absolute;
  top: 5px;
  left: 0;
  width: 11px;
}

.footer-block .footer-main .footer-1 .left-block .copyright img {
  width: 100%;
}

.footer-block .footer-main .footer-1 .left-block p {
  color: #333333;
  text-align: left;
}

.footer-block .footer-main .footer-1 .right-block {
  float: right;
}

.footer-block .footer-main .footer-1 .right-block p,
.footer-block .footer-main .footer-1 .right-block p a {
  color: #ffffff;
  text-align: right;
}

.footer-block .footer-main .footer-1 .right-block p a {
  color: #ec6e00;
  font-weight: bold;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.footer-block .footer-main .footer-1 .right-block p a:hover {
  text-decoration: underline;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/* Main Content */

.main-content {
  overflow: hidden;
}

/* Home */

.home {
}

.home .inner {
  width: 100%;
  font-size: 0;
}

.home .block-1 {
}

.home .block-1 .image-block-1 {
  position: relative;
}

.home .block-1 img.img-1 {
  position: relative;
  width: 100%;
  height: 800px;
  object-fit: cover;
  z-index: -1;
  border-radius: 20px;
}

.home .block-1 .content-block {
  position: absolute;
  z-index: 1;
  background: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 90%;
  border-radius: 30px;
}

.home .block-1 .content-block .inner-block {
  padding: 20px;
}

.home .block-1 .content-block .block-1 {
  display: inline-block;
  vertical-align: top;
  width: 39%;
  padding-right: 1%;
}

.home .block-1 .content-block .block-1 .head-block-1 {
}

.home .block-1 .content-block .block-1 .head-block-1 h1 {
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: bold;
  text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.09);
}

.home .block-1 .content-block .block-1 .head-block-1 h1.hide {
  display: none;
}

.home .block-1 .content-block .block-1 .head-block-1 h1 span {
  color: #ffb303;
  font-weight: bold;
  text-transform: uppercase;
}

.home .block-1 .content-block .block-1 .text-block-1 {
}

.home .block-1 .content-block .block-1 .text-block-1 p {
  color: #1e1e1e99;
  line-height: 30px;
}

.home .block-1 .content-block .block-1 .button-block {
}

.home .block-1 .content-block .block-1 .button-block .btn-1 {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  padding-right: 2%;
}

.home .block-1 .content-block .block-1 .button-block .btn-1 a {
  display: block;
  background: #ffb303;
  border-radius: 12px;
  border: 1px solid #ffb303;
  padding: 12px 36px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-1 a:hover,
.home .block-1 .content-block .block-1 .button-block .btn-1 a:focus,
.home .block-1 .content-block .block-1 .button-block .btn-1 a:active {
  background: #ffffff;
  border: 1px solid #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-1 a:hover p,
.home .block-1 .content-block .block-1 .button-block .btn-1 a:focus p,
.home .block-1 .content-block .block-1 .button-block .btn-1 a:active p {
  color: #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-1 p {
  color: #ffffff;
  text-transform: capitalize;
}

.home .block-1 .content-block .block-1 .button-block .btn-2 {
  display: inline-block;
  vertical-align: middle;
  width: 48%;
  padding-left: 2%;
}

.home .block-1 .content-block .block-1 .button-block .btn-2 a {
  display: block;
  border-radius: 12px;
  border: 1px solid #ea2548;
  background: #ffffff;
  padding: 12px 36px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-2 a:hover,
.home .block-1 .content-block .block-1 .button-block .btn-2 a:active,
.home .block-1 .content-block .block-1 .button-block .btn-2 a:focus {
  background: #ea2548;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-2 a:hover p,
.home .block-1 .content-block .block-1 .button-block .btn-2 a:active p,
.home .block-1 .content-block .block-1 .button-block .btn-2 a:focus p {
  color: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-1 .content-block .block-1 .button-block .btn-2 p {
  color: #ea2548;
  text-transform: capitalize;
}

.home .block-1 .content-block .block-1 .text-block-2 {
}

.home .block-1 .content-block .block-1 .text-block-2 p {
  color: #1e1e1e4d;
  font-size: 17px;
}

.home .block-1 .content-block .block-2 {
  display: inline-block;
  vertical-align: top;
  width: 59%;
  padding-left: 1%;
}

.home .block-1 .content-block .block-2 img.img-2 {
  width: 100%;
}

.home .block-2 {
  position: relative;
}

.home .block-2 img.img-1 {
  position: absolute;
  z-index: -1;
  top: -30px;
  right: -64px;
  max-width: 300px;
  width: 100%;
  filter: opacity(0.5);
  -ms-filter: opacity(0.5);
  -webkit-filter: opacity(0.5);
  animation: roll 6s linear infinite;
}

.home .block-2 .slide-block .slick-slide img {
  border-radius: 10px;
  width: 100%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.home .block-2 .inner-block {
  /* padding: 71px 83px; */
  padding: 45px 80px 70px 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  backdrop-filter: blur(2px);
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
}

.home .block-2 .head-block-1 {
}

.home .block-2 .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-2 .head-block-1 h2 span {
  font-weight: bold;
  color: #ea2548;
}

.home .block-2 .text-block-1 {
}

.home .block-2 .text-block-1 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: center;
}

.home .block-2 .con-block-1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.home .block-2 .con-block-1 img.img-11 {
  width: 100%;
  display: none;
  opacity: 0.7;
  position: absolute;
  max-width: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.home .block-2 .con-block-1 .block {
  text-align: center;
}

.home .block-2 .con-block-1 .block .head-block-2 {
}

.home .block-2 .con-block-1 .block .head-block-2 h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffb303;
}

.home .block-2 .con-block-1 .block .text-block-2 {
}

.home .block-2 .con-block-1 .block .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
}

.home .block-3 {
  position: relative;
}

.home .block-3 img.img-1 {
  position: absolute;
  bottom: -100px;
  right: -25px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
  width: 100%;
  max-width: 200px;
}

.home .block-3 .inner-block {
}

.home .block-3 .tag-block {
}

.home .block-3 .tag-block .text-block-1 {
}

.home .block-3 .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-3 .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.home .block-3 .tag-block .text-block-1 p:hover,
.home .block-3 .tag-block .text-block-1 p:active,
.home .block-3 .tag-block .text-block-1 p:focus {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

@keyframes pulseBtn {
  0% {
    background: #d4a415;
  }
  100% {
    background: #ffb303;
  }
}

.home .block-3 .tag-block .head-block-1 {
}

.home .block-3 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-4 {
  position: relative;
  z-index: -1;
}

.home .block-4 img.img-1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 800px;
  object-fit: cover;
  -o-object-fit: cover;
}

.home .block-4 img.img-2 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 220px;
  top: 80px;
  left: -30px;
}

.home .block-4 img.img-3 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 145px;
  left: 320px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
  animation: rollleft 5s linear infinite;
}

.home .block-4 img.img-4 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 20px;
  left: 880px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.home .block-4 img.img-5 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  bottom: 170px;
  left: 830px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.home .block-4 img.img-6 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 420px;
  right: 209px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.home .block-4 img.img-7 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 100px;
  bottom: 158px;
  left: 263px;
  filter: opacity(0.7);
  -ms-filter: opacity(0.7);
  -webkit-filter: opacity(0.7);
  animation: roll 10s linear infinite;
}

.home .block-4 img.img-11 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 167px;
  left: 610px;
  filter: opacity(0.5);
  -ms-filter: opacity(0.5);
  -webkit-filter: opacity(0.5);
}

.home .block-4 img.img-12 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 140px;
  top: 138px;
  right: 285px;
  filter: opacity(0.6);
  -ms-filter: opacity(0.6);
  -webkit-filter: opacity(0.6);
}

.home .block-4 img.img-13 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 90px;
  top: 265px;
  right: 115px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
}

.home .block-4 img.img-14 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 350px;
  right: 400px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
  animation: roll 6s linear infinite;
}

.home .block-4 img.img-15 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 330px;
  left: 300px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
}

.home .block-4 img.img-16 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 440px;
  left: 50px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
  animation: rollleft 8s linear infinite;
}

@keyframes rollleft {
  0% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.home .block-4 img.img-17 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  bottom: 40px;
  right: -55px;
  filter: opacity(1);
  -ms-filter: opacity(1);
  -webkit-filter: opacity(1);
}

.home .block-4 img.img-21 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  bottom: -108px;
  left: -35px;
  filter: opacity(1);
  -ms-filter: opacity(1);
  -webkit-filter: opacity(1);
}

.home .block-41 {
  margin-top: -70px;
  margin-bottom: 70px;
}

.home .block-41 .inner-block {
  padding: 70px 80px 50px 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  backdrop-filter: blur(2px);
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
}

.home .block-41 .block-con {
}

.home .block-41 .block-con.block-con-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 35px;
}

.home .block-41 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.home .block-41 .block-con .block-con-1 .tag-block {
}

.home .block-41 .block-con .tag-block .text-block-1 {
}

.home .block-41 .block-con .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: auto 0 0 0;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-41 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.home .block-41 .block-con .tag-block .text-block-1 p:hover,
.home .block-41 .block-con .tag-block .text-block-1 p:focus,
.home .block-41 .block-con .tag-block .text-block-1 p:active {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-41 .block-con .tag-block .head-block-1 {
}

.home .block-41 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-41 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.home .block-41 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.home .block-41 .block-con .block-con-2 .text-block-2 {
}

.home .block-41 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.home .block-41 .block {
}

.home .block-41 .block .block-0 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 30px;
}

.home .block-41 .block .image-block-1 {
  max-width: 100px;
  margin: 0 auto;
}

.home .block-41 .block .image-block-1 img {
  width: 100%;
}

.home .block-41 .block .text-block-3 {
}

.home .block-41 .block .text-block-3 p {
  text-align: center;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: bold;
}

.home .block-41 .block .text-block-4 {
}

.home .block-41 .block .text-block-4 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

.home .block-5 {
  background-image: url("../images/hero-bg.png");
  background-position: -305.893px -243.574px;
  background-size: 138.184% 126.475%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0;
}

.home .block-5 img.img-1 {
}

.home .block-5 .hove {
}

.home .block-5 .inner-container {
}

.home .block-5 .inner-block {
  padding: 70px 80px 70px 80px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.home .block-5 .block-con {
}

.home .block-5 .block-con.block-con-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 35px;
}

.home .block-5 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.home .block-5 .block-con .block-con-1 .tag-block {
}

.home .block-5 .block-con .tag-block .text-block-1 {
}

.home .block-5 .block-con .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: auto 0 0 0;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-5 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.home .block-5 .block-con .tag-block .text-block-1 p:hover,
.home .block-5 .block-con .tag-block .text-block-1 p:active,
.home .block-5 .block-con .tag-block .text-block-1 p:focus {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-5 .block-con .tag-block .head-block-1 {
}

.home .block-5 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-5 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.home .block-5 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.home .block-5 .block-con .block-con-2 .text-block-2 {
}

.home .block-5 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.home .block-5 .block {
}

.home .block-5 .block .block-0 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 20px;
}

.home .block-5 .block .image-block-1 {
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-5 .block .image-block-1 img {
  width: 100%;
  border-radius: 11px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-5 .block .image-block-1:hover img {
  filter: grayscale(0);
  -ms-filter: grayscale(0);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-5 .block .text-block-3 {
}

.home .block-5 .block .text-block-3 p {
  text-align: left;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;
}

.home .block-5 .block .text-block-4 {
}

.home .block-5 .block .text-block-4 p {
  text-align: left;
  color: #1e1e1e99;
  line-height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home .block-5 .block .btn-block {
}

.home .block-5 .block .btn-block a {
  display: block;
  border: 1px solid #ffb303;
  border-radius: 6px;
  width: 100%;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.home .block-5 .block .btn-block p {
  padding: 10px;
  text-align: center;
  color: #ffb303;
}

.home .block-5 .block .btn-block a:hover,
.home .block-5 .block .btn-block a:focus,
.home .block-5 .block .btn-block a:active {
  background: #ffb303;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.home .block-5 .block .btn-block a:hover p,
.home .block-5 .block .btn-block a:focus p,
.home .block-5 .block .btn-block a:active p {
  color: #ffffff;
}

.home .block-6 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
}

.home .block-6 .block-61 .inner-block {
}

.home .block-6 .block-61 .tag-block {
}

.home .block-6 .block-61 .tag-block .text-block-1 {
}

.home .block-6 .block-61 .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.home .block-6 .block-61 .tag-block .head-block-1 {
}

.home .block-6 .block-61 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-6 .block-61 .tag-block .text-block-2 {
}

.home .block-6 .block-61 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
  font-size: 18px;
  line-height: 33px;
}

.home .block-6 .block-61 .tag-block .btn-block-1 {
  text-align: center;
}

.home .block-6 .block-61 .tag-block .btn-block-1 a {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 12px 36px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  line-height: 1em;
  text-transform: capitalize;
}

.home .block-6 .block-62 {
}

.home .block-6 .block-62 .slider {
}

.home .block-6 .block-62 .slider.slick-slider {
  margin: 0 -15px;
}

.home .block-6 .block-62 .slider .slick-slide {
  padding: 10px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.home .block-6 .block-62 .slider .slick-prev,
.home .block-6 .block-62 .slider .slick-next {
  background: #ffffff !important;
  padding: 20px;
  border-radius: 100%;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  border: 1px solid #ffb303;
  z-index: 1;
}

.home .block-6 .block-62 .slider .slick-prev:hover,
.home .block-6 .block-62 .slider .slick-next:hover {
  background: #ffb303 !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  color: #ffffff !important;
}

.home .block-6 .block-62 .slider .slick-prev:hover::before,
.home .block-6 .block-62 .slider .slick-next:hover::after {
  color: #ffffff !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.home .block-6 .block-62 .slider .slick-prev:before,
.home .block-6 .block-62 .slider .slick-next:before {
  color: #222222 !important;
  font-size: 20px;
  line-height: 19px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.home .block-6 .block-62 .slider .block {
}

.home .block-6 .block-62 .slider .block .image-block-1 {
  position: relative;
  cursor: pointer;
}

.home .block-6 .block-62 .slider .block .image-block-1 img {
  width: 100%;
  border-radius: 22px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  position: relative;
  z-index: 1;
}

.home .block-6 .block-62 .slider .block .con-block {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}

.home .block-6 .block-62 .slider .block .con-block .text-block-1 {
}

.home .block-6 .block-62 .slider .block .con-block .text-block-1 p {
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 25px;
  filter: drop-shadow(2px 4px 6px black);
  -ms-filter: drop-shadow(2px 4px 6px black);
  -webkit-filter: drop-shadow(2px 4px 6px black);
}

.home .block-7 {
}

.home .block-7 .inner {
  width: 100%;
  padding: 0;
  font-size: 0;
}

.home .block-7 .inner-block {
  padding: 70px 80px 70px 80px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.home .block-7 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.home .block-7 .block-con .block-con-1 .tag-block {
}

.home .block-7 .block-con .tag-block .text-block-1 {
}

.home .block-7 .block-con .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: auto 0 0 0;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-7 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.home .block-7 .block-con .tag-block .text-block-1 p:hover,
.home .block-7 .block-con .tag-block .text-block-1 p:focus,
.home .block-7 .block-con .tag-block .text-block-1 p:active {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-7 .block-con .tag-block .head-block-1 {
}

.home .block-7 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-7 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.home .block-7 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.home .block-7 .block-con .block-con-2 .text-block-2 {
}

.home .block-7 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.home .block-7 .reel-block {
}

.home .block-7 .reel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.home .block-7 .video-link {
  cursor: pointer;
  position: relative;
}
.home .block-7 .video-link a {
  display: block;
  width: 100%;
}

.home .block-7 .video-link .image-reel-link {
  position: relative;
  width: 350px;
  height: 480px;
}

.home .block-7 .video-link img {
  width: 350px;
  height: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  object-fit: cover;
  -o-object-fit: cover;
}
.home .block-7 .video-link img:hover {
  transform: scale(1.05);
}

.home .block-7 .video-link .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffb303;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .block-7 .video-link .play-btn::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #c59526;
  animation: pulse 1.5s infinite;
}

.home .block-7 .video-link .play-btn::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/*  */

/* .home .block-8 .inner-block {
}

.home .block-8 .tag-block {
}

.home .block-8 .tag-block .head-block-1 {
}

.home .block-8 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-8 .tag-block .text-block-2 {
}

.home .block-8 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
}

.home .block-8 .slider {
}

.home .block-8 .slider.slick-slider {
  margin: 0 -15px;
}

.home .block-8 .slider .slick-slide {
  padding: 10px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.home .block-8 .slider .slick-prev,
.home .block-8 .slider .slick-next {
  background: #ffffff !important;
  padding: 20px;
  border-radius: 100%;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  border: 1px solid #ffb303;
  z-index: 1;
}

.home .block-8 .slider .slick-prev:hover,
.home .block-8 .slider .slick-next:hover {
  background: #ffb303 !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.home .block-8 .slider .slick-prev:hover::before,
.home .block-8 .slider .slick-next:hover::after {
  color: #ffffff !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.home .block-8 .slider .slick-prev:before,
.home .block-8 .slider .slick-next:before {
  color: #222222 !important;
  font-size: 20px;
  line-height: 19px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.home .block-8 .slider .block {
}

.home .block-8 .slider .block .image-block-1 {
}

.home .block-8 .slider .block .image-block-1 img {
  width: 100%;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
  border-radius: 7px;
} */

/*  */
.home .block-8 {
}

.home .block-8 .inner-block {
  padding: 70px 80px 50px 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  backdrop-filter: blur(2px);
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
}

.home .block-8 .block-con {
}

.home .block-8 .block-con.block-con-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 35px;
}

.home .block-8 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.home .block-8 .block-con .block-con-1 .tag-block {
}

.home .block-8 .block-con .tag-block .text-block-1 {
}

.home .block-8 .block-con .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: auto 0 0 0;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.home .block-8 .block-con .tag-block .text-block-1 p:hover,
.home .block-8 .block-con .tag-block .text-block-1 p:focus,
.home .block-8 .block-con .tag-block .text-block-1 p:active {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con .tag-block .head-block-1 {
}

.home .block-8 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-8 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.home .block-8 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.home .block-8 .block-con .block-con-2 .text-block-2 {
}

.home .block-8 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.home .block-8 .block-con-3 {
}

.home .block-8 .block-con-3 .article-sec {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 25px;
}

.home .block-8 .block-con-3 .article-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .block-8 .block-con-3 .article-1 a {
  display: block;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-1 a:hover p.h4 {
  color: #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-1 .image-block-11 {
}

.home .block-8 .block-con-3 .article-1 .image-block-11 img {
  width: 100%;
  border-radius: 12px;
}

.home .block-8 .block-con-3 .article-1 .text-block-1 {
}

.home .block-8 .block-con-3 .article-1 .text-block-1 p.h4 {
  text-align: left;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 12px 0;

  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-1 .text-block-1 p.p5 {
  text-align: left;
  color: #1e1e1e99;
  line-height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home .block-8 .block-con-3 .article-2 {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.home .block-8 .block-con-3 .article-2 .article-block {
}

.home .block-8 .block-con-3 .article-2 .article-block a {
  display: block;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-2 .article-block a:hover p.h5 {
  color: #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-block .image-block-12 {
}

.home .block-8 .block-con-3 .article-block .image-block-12 img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: top;
  -o-object-position: top;
  border-radius: 12px;
}

.home .block-8 .block-con-3 .article-2 .article-block .text-block-2 {
}

.home .block-8 .block-con-3 .article-2 .article-block .text-block-2 p.h5 {
  text-align: left;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 5px 0;

  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-8 .block-con-3 .article-2 .article-block .text-block-2 p.p5 {
  text-align: left;
  color: #1e1e1e99;
  line-height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
}
/*  */

.home .block-9 {
}

.home .block-9 {
}

.home .block-9 .inner-block {
  margin: 100px 0 30px 0;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.home .block-9 .con-block-1 {
  padding: 71px 0 50px 0;
}

.home .block-9 .con-block-2 {
  padding-bottom: 60px;
}

.home .block-9 .tag-block {
  max-width: 900px;
  margin: 0 auto;
}

.home .block-9 .tag-block .head-block-1 {
}

.home .block-9 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.home .block-9 .tag-block .text-block-2 {
}

.home .block-9 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

.home .block-9 .tag-block .btn-block-1 {
  text-align: center;
}

.home .block-9 .tag-block .btn-block-1 a {
  max-width: fit-content;
  display: block;
  margin: 0 auto;
  line-height: 1em;
  background: #ffb303;
  padding: 12px 36px;
  border: 1px solid #ffb303;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.home .block-9 .slider {
}

.home .block-9 .slider.gallery2 {
  direction: rtl;
}

.home .block-9 .slider.slick-slider {
  margin: 0 -10px;
  margin-bottom: 20px;
}

.home .block-9 .slider .slick-slide {
  padding: 0 10px;
}

.home .block-9 .slider .slick-prev,
.home .block-9 .slider .slick-next {
  display: none !important;
}

.home .block-9 .slider .block {
  margin: 0 10px;
}

.home .block-9 .slider .block a {
  display: block;
}

.home .block-9 .slider .block a img {
  width: 100%;
  border-radius: 5px;
}

.home .block-9 .tag-block .btn-block-1 a:hover {
  color: #ffb303;
  background: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

/* About Us Page Start */
.aboutus {
}

.aboutus .inner {
  width: 100%;
  font-size: 0;
}

.aboutus .block-1 {
  position: relative;
  z-index: -1;
}

.aboutus .block-1 img.img-1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 800px;
  object-fit: cover;
  -o-object-fit: cover;
}

.aboutus .block-1 img.img-2 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 220px;
  top: 80px;
  left: -30px;
}

.aboutus .block-1 img.img-3 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 145px;
  left: 320px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
  animation: rollleft 5s linear infinite;
}

.aboutus .block-1 img.img-4 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 210px;
  left: 880px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.aboutus .block-1 img.img-5 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  bottom: 170px;
  left: 830px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.aboutus .block-1 img.img-6 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 420px;
  right: 209px;
  filter: opacity(0.3);
  -ms-filter: opacity(0.3);
  -webkit-filter: opacity(0.3);
}

.aboutus .block-1 img.img-7 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 100px;
  bottom: 158px;
  left: 263px;
  filter: opacity(0.7);
  -ms-filter: opacity(0.7);
  -webkit-filter: opacity(0.7);
  animation: roll 10s linear infinite;
}

.aboutus .block-1 img.img-11 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 50px;
  top: 167px;
  left: 610px;
  filter: opacity(0.5);
  -ms-filter: opacity(0.5);
  -webkit-filter: opacity(0.5);
}

.aboutus .block-1 img.img-12 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 140px;
  top: 138px;
  right: 200px;
  filter: opacity(0.6);
  -ms-filter: opacity(0.6);
  -webkit-filter: opacity(0.6);
}

.aboutus .block-1 img.img-13 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 90px;
  top: 265px;
  right: 115px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
}

.aboutus .block-1 img.img-14 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 350px;
  right: 400px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
  animation: roll 6s linear infinite;
}

.aboutus .block-1 img.img-15 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 330px;
  left: 300px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
}

.aboutus .block-1 img.img-16 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 80px;
  top: 440px;
  left: 50px;
  filter: opacity(0.4);
  -ms-filter: opacity(0.4);
  -webkit-filter: opacity(0.4);
  animation: rollleft 8s linear infinite;
}

@keyframes rollleft {
  0% {
    transform: rotate(360deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.aboutus .block-1 img.img-17 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  bottom: 40px;
  right: -55px;
  filter: opacity(1);
  -ms-filter: opacity(1);
  -webkit-filter: opacity(1);
}

.aboutus .block-1 img.img-21 {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  bottom: -108px;
  left: -35px;
  filter: opacity(1);
  -ms-filter: opacity(1);
  -webkit-filter: opacity(1);
}

/* About block 2 */
.aboutus .block-2 {
  background-image: url("../images/hero-bg.png");
  background-position: -305.893px -243.574px;
  background-size: 138.184% 126.475%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0 100px 0;
  height: 900px;
  position: relative;
  z-index: 1;
}

.aboutus .block-2 .image-block-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.aboutus .block-2 .image-block-1 img.img-1 {
  width: 100%;
  position: relative;
  border-radius: 20px;
}

.aboutus .block-2 .con-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.aboutus .block-2 .con-block .head-block-1 {
}

.aboutus .block-2 .con-block .head-block-1 p {
  color: #222222;
  line-height: 45px;
  /* font-weight: bold; */
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}

.aboutus .block-2 .con-block .head-block-1 h2 {
  text-align: center;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 68px;
}
/* About block 2 */

/* About block 3 */
.aboutus .block-3 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.aboutus .block-3 .image-block-0 {
  position: absolute;
  max-width: 200px;
  bottom: -80px;
  z-index: -1;
}

.aboutus .block-3 .image-block-0 img.img-1 {
  width: 100%;
}

.aboutus .block-3 .block-31 .inner-block {
}

.aboutus .block-3 .block-31 .tag-block {
}

.aboutus .block-3 .block-31 .tag-block .text-block-1 {
}

.aboutus .block-3 .block-31 .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.aboutus .block-3 .block-31 .tag-block .head-block-1 {
}

.aboutus .block-3 .block-31 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.aboutus .block-3 .block-31 .tag-block .text-block-2 {
}

.aboutus .block-3 .block-31 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
}

.aboutus .block-3 .block-31 .tag-block .btn-block-1 {
  text-align: center;
}

.aboutus .block-3 .block-31 .tag-block .btn-block-1 a {
  max-width: fit-content;
  margin: 0 auto;
  line-height: 1em;
  background: #ffb303;
  padding: 11px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
}

.aboutus .block-3 .block-32 {
}

.aboutus .block-3 .block-32 .slider {
}

.aboutus .block-3 .block-32 .slider.slick-slider {
  margin: 0 -15px;
}

.aboutus .block-3 .block-32 .slider .slick-slide {
  padding: 10px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.aboutus .block-3 .block-32 .slider .slick-prev,
.aboutus .block-3 .block-32 .slider .slick-next {
  background: #ffffff !important;
  padding: 20px;
  border-radius: 100%;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  border: 1px solid #ffb303;
  z-index: 1;
}

.aboutus .block-3 .block-32 .slider .slick-prev:hover,
.aboutus .block-3 .block-32 .slider .slick-next:hover {
  background: #ffb303 !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  color: #ffffff !important;
}

.aboutus .block-3 .block-32 .slider .slick-prev:hover::before,
.aboutus .block-3 .block-32 .slider .slick-next:hover::after {
  color: #ffffff !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.aboutus .block-3 .block-32 .slider .slick-prev:before,
.aboutus .block-3 .block-32 .slider .slick-next:before {
  color: #222222 !important;
  font-size: 20px;
  line-height: 19px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.aboutus .block-3 .block-32 .slider .block {
}

.aboutus .block-3 .block-32 .slider .block .image-block-1 {
  position: relative;
}

.aboutus .block-3 .block-32 .slider .block .image-block-1 img {
  width: 100%;
  border-radius: 22px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  position: relative;
  z-index: 1;
}

.aboutus .block-3 .block-32 .slider .block .con-block {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}

.aboutus .block-3 .block-32 .slider .block .con-block .text-block-1 {
}

.aboutus .block-3 .block-32 .slider .block .con-block .text-block-1 p {
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 25px;
  filter: drop-shadow(2px 4px 6px black);
  -ms-filter: drop-shadow(2px 4px 6px black);
  -webkit-filter: drop-shadow(2px 4px 6px black);
}
/* About block 3 */

/* About block 4 */
.aboutus .block-4 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  margin: 80px 0;
  height: 700px;
  position: relative;
}

.aboutus .block-4 .image-block-0 {
  position: absolute;
  max-width: 200px;
  bottom: 80px;
  z-index: -1;
}

.aboutus .block-4 .image-block-0 img.img-1 {
  width: 100%;
}

.aboutus .block-4 .image-block-01 {
  position: absolute;
  max-width: 200px;
  top: 80px;
  right: 0;
  z-index: -1;
}

.aboutus .block-4 .image-block-01 img.img-2 {
  width: 100%;
}

.aboutus .block-4 .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.aboutus .block-4 .inner-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.aboutus .block-4 .block-41 {
}

.aboutus .block-4 .block-41 .head-block-1 {
}

.aboutus .block-4 .block-41 .head-block-1 h2 {
  color: #2a3342;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 74px;
}

.aboutus .block-4 .block-41 .head-block-2 {
  display: none;
}
.aboutus .block-4 .block-41 .head-block-2 h2 {
  color: #2a3342;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 74px;
  text-align: center;
}

.aboutus .block-4 .block-41 .text-block-1 {
  max-width: 600px;
}

.aboutus .block-4 .block-41 .text-block-1 p {
  color: #556987;
  line-height: 30px;
}

.aboutus .block-4 .block-42 {
}

.aboutus .block-4 .block-42 .block-421 {
}

.aboutus .block-4 .block-42 .block-421 .image-block-1 {
}

.aboutus .block-4 .block-42 .block-421 .image-block-1 img {
  width: 100%;
  /* box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 7px;
  padding: 10px;
}
/* About block 4 */

/* About block 5 */
.aboutus .block-5 {
}

.aboutus .block-5 .inner {
  width: 100%;
  padding: 0;
  font-size: 0;
}

.aboutus .block-5 .inner-block {
  padding: 70px 80px 70px 80px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.aboutus .block-5 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.aboutus .block-5 .block-con .block-con-1 .tag-block {
}

.aboutus .block-5 .block-con .tag-block .text-block-1 {
}

.aboutus .block-5 .block-con .tag-block .text-block-1 a {
  display: block;
  width: max-content;
  margin: auto 0 0 0;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.aboutus .block-5 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  animation: pulseBtn 1.5s infinite;
}

.aboutus .block-5 .block-con .tag-block .text-block-1 p:hover,
.aboutus .block-5 .block-con .tag-block .text-block-1 p:focus,
.aboutus .block-5 .block-con .tag-block .text-block-1 p:active {
  background: #ffc000;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.aboutus .block-5 .block-con .tag-block .head-block-1 {
}

.aboutus .block-5 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.aboutus .block-5 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.aboutus .block-5 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.aboutus .block-5 .block-con .block-con-2 .text-block-2 {
}

.aboutus .block-5 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.aboutus .block-5 .reel-block {
}

.aboutus .block-5 .reel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.aboutus .block-5 .video-link {
  cursor: pointer;
  position: relative;
}
.aboutus .block-5 .video-link a {
  display: block;
  width: 100%;
}

.aboutus .block-5 .video-link .image-reel-link {
  position: relative;
  width: 350px;
  height: 480px;
}

.aboutus .block-5 .video-link img {
  width: 350px;
  height: 480px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  object-fit: cover;
  -o-object-fit: cover;
}
.aboutus .block-5 .video-link img:hover {
  transform: scale(1.05);
}

.aboutus .block-5 .video-link .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffb303;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus .block-5 .video-link .play-btn::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #c59526;
  animation: pulse 1.5s infinite;
}

.aboutus .block-5 .video-link .play-btn::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}
/* About block 5 */

/* About block 6 */
.aboutus .block-6 {
}

.aboutus .block-6 {
}

.aboutus .block-6 .inner-block {
  margin: 100px 0 30px 0;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.aboutus .block-6 .con-block-1 {
  padding: 71px 0 50px 0;
}

.aboutus .block-6 .con-block-2 {
  padding-bottom: 60px;
}

.aboutus .block-6 .tag-block {
  max-width: 900px;
  margin: 0 auto;
}

.aboutus .block-6 .tag-block .head-block-1 {
}

.aboutus .block-6 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.aboutus .block-6 .tag-block .text-block-2 {
}

.aboutus .block-6 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

.aboutus .block-6 .tag-block .btn-block-1 {
  text-align: center;
}

.aboutus .block-6 .tag-block .btn-block-1 a {
  max-width: fit-content;
  display: block;
  margin: 0 auto;
  line-height: 1em;
  background: #ffb303;
  border: 1px solid #ffb303;
  padding: 12px 36px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.aboutus .block-6 .tag-block .btn-block-1 a:hover {
  background: #ffffff;
  color: #ffb303;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.aboutus .block-6 .slider {
}

.aboutus .block-6 .slider.gallery2 {
  direction: rtl;
}

.aboutus .block-6 .slider.slick-slider {
  margin: 0 -10px;
  margin-bottom: 20px;
}

.aboutus .block-6 .slider .slick-slide {
  padding: 0 10px;
}

.aboutus .block-6 .slider .slick-prev,
.aboutus .block-6 .slider .slick-next {
  display: none !important;
}

.aboutus .block-6 .slider .block {
  margin: 0 10px;
}

.aboutus .block-6 .slider .block a {
  display: block;
}

.aboutus .block-6 .slider .block a img {
  width: 100%;
  border-radius: 5px;
}
/* About block 6 */

/* About Us Page End */

/* Team Page Start */
.team .block-1 {
  padding: 50px 0 0 0;
}

.team .block-1 .block-11 {
}

.team .block-1 .block-11 .tag-block {
}

.team .block-1 .block-11 .tag-block .text-block-1 {
}

.team .block-1 .block-11 .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.team .block-1 .block-11 .tag-block .head-block-1 {
}

.team .block-1 .block-11 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.team .block-1 .block-11 .tag-block .text-block-2 {
}

.team .block-1 .block-11 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
}

.team .block-1 .block-12 {
}

.team .block-1 .block-12 .inner-content {
  padding: 70px 80px 50px 80px;
  border-radius: 33px;
  background: #fff;
}

.team .block-1 .block-12 .block:first-child {
  margin-top: unset;
}

.team .block-1 .block-12 .block {
  position: relative;
  display: flex;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: 0px 4px 54px 0px rgba(0, 0, 0, 0.15),
    0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset;
  backdrop-filter: blur(11.5px);
  gap: 70px;
  margin-top: 80px;
}

.team .block-1 .block-12 .block .image-block-2 {
  position: absolute;
  top: 0;
  right: -166px;
  max-width: 250px;
  z-index: -2;
}

.team .block-1 .block-12 .block .image-block-2 img.img-1 {
  width: 100%;
  opacity: 0.4;
}

.team .block-1 .block-12 .block .image-block-3 {
  position: absolute;
  bottom: 70px;
  right: -103px;
  max-width: 150px;
  z-index: -2;
}

.team .block-1 .block-12 .block .image-block-3 img.img-3 {
  width: 100%;
  opacity: 0.2;
}

.team .block-1 .block-12 .block .image-block-4 {
  position: absolute;
  bottom: -162px;
  left: -103px;
  max-width: 250px;
  z-index: -2;
}

.team .block-1 .block-12 .block .image-block-4 img.img-4 {
  width: 100%;
  opacity: 0.7;
}

.team .block-1 .block-12 .block .image-block-1 {
  position: relative;
}

.team .block-1 .block-12 .block .image-block-1 img {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.05);
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.team .block-1 .block-12 .block .image-block-1 .social-block {
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.team .block-1 .block-12 .block .image-block-1 .social-block-right {
  position: absolute;
  right: 20px;
  bottom: 30px;
}

.team .block-1 .block-12 .block .social-block .img-con,
.team .block-1 .block-12 .block .social-block-right .img-con {
  display: none;
  transition: all 2s ease-in;
  -o-transition: all 2s ease-in;
  -moz-transition: all 2s ease-in;
  -webkit-transition: all 2s ease-in;
}

.team .block-1 .block-12 .block .social-block .img-con a,
.team .block-1 .block-12 .block .social-block-right .img-con a {
  display: block;
  background: #ffffff;
  max-width: fit-content;
  padding: 10px 12px;
  border-radius: 50%;
}

.team .block-1 .block-12 .block .social-block .img-con i,
.team .block-1 .block-12 .block .social-block-right .img-con i {
  line-height: 1em;
}

.team .block-1 .block-12 .block .social-block .img-con i.insta,
.team .block-1 .block-12 .block .social-block-right .img-con i.insta {
  color: #e4405f;
}

.team .block-1 .block-12 .block .con-block {
  max-width: 600px;
  padding: 0 40px;
  margin: auto;
}

.team .block-1 .block-12 .block .con-block .head-block-2 {
}

.team .block-1 .block-12 .block .con-block .head-block-2 h2 {
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: bold;
  font-size: 50px;
}

.team .block-1 .block-12 .block .con-block .text-block-3 {
}

.team .block-1 .block-12 .block .con-block .text-block-3 p {
  color: #1e1e1e99;
  line-height: 33px;
  text-align: left;
}

.team .block-1 .block-12 .block:hover .social-block .img-con,
.team .block-1 .block-12 .block:hover .social-block-right .img-con {
  display: block;
  transition: all 2s ease-in;
  -o-transition: all 2s ease-in;
  -moz-transition: all 2s ease-in;
  -webkit-transition: all 2s ease-in;
}

.team .block-4 {
}

.team .block-4 .inner-content {
  padding: 50px 83px 50px 83px;
}

.team .block-4 .slick-slide {
  margin: 20px 32px;
}

.team .block-4 .slick-next,
.team .block-4 .slick-prev {
  z-index: 1;
  border: 1px solid #ffb303;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.team .block-4 .slick-next:before,
.team .block-4 .slick-prev:before {
  color: #000000;
}

.team .block-4 .slick-slide.slick-active {
}

.team .block-4 .slick-track {
  margin-left: -15px;
  margin-right: -15px;
}

.team .block-4 .slick-slide ul.slider-center {
}

.team .block-4 .slick-slide li.slick-li {
  border-radius: 11.111px;
  border: 1.111px solid rgba(30, 30, 30, 0.05);
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.team .block-4 .block .block-0 {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15),
    0px 4px 4px 0px rgba(255, 255, 255, 0.25) inset;
  border-radius: 20px;
  padding: 10px;
  background: #f9f9f9;
}

.team .block-4 .block-0 .image-block-1 {
  position: relative;
}

.team .block-4 .block-0 .image-block-1 img {
  width: 100%;
  border-radius: 10px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.team .block-4 .block-0 .image-block-1 .social-block {
  display: none;
  transition: all 2s ease-in;
  -o-transition: all 2s ease-in;
  -moz-transition: all 2s ease-in;
  -webkit-transition: all 2s ease-in;
}

.team .block-4 .block-0 .social-block .img-con {
  position: absolute;
  top: 20px;
  left: 15px;
}

.team .block-4 .block-0 .social-block .img-con a {
  display: block;
  background: #ffffff;
  padding: 10px 12px;
  border-radius: 50%;
}

.team .block-4 .block-0 .social-block .img-con i {
  line-height: 1em;
  color: #e4405f;
}

.team .block-4 .block-0 .con-block {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 24px 0px #00000026;
}

.team .block-4 .block-0 .con-block .head-block-1 {
}

.team .block-4 .block-0 .con-block .head-block-1 h2 {
  text-transform: uppercase;
  color: #1e1e1e;
  font-weight: bold;
  font-size: 21px;
  line-height: 38px;
  text-align: center;
}

.team .block-4 .block-0 .con-block .text-block-1 {
}

.team .block-4 .block-0 .con-block .text-block-1 p {
  color: #1e1e1e99;
  text-align: center;
  font-size: 15px;
}

.team .block-4 .block:hover .social-block {
  display: block;
  transition: all 2s ease-in;
  -o-transition: all 2s ease-in;
  -moz-transition: all 2s ease-in;
  -webkit-transition: all 2s ease-in;
}
/* Team Page End */

/* Programs Page Start */
.program {
  background: #ffffff url(../images/hero-bg.png) repeat fixed center;
  min-height: 145px;
}

.program .inner {
  width: 100%;
  font-size: 0;
}

.program .block-1 {
  padding: 50px 0;
}

.program .block-1 img.img-1 {
}

.program .block-1 .hove {
}

.program .block-1 .inner-container {
}

.program .block-1 .inner-block {
  padding: 70px 80px 70px 80px;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.program .block-1 .block-con {
}

.program .block-1 .block-con.block-con-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-top: 35px;
}

.program .block-1 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  padding-right: 2%;
}

.program .block-1 .block-con .block-con-1 .tag-block {
}

.program .block-1 .block-con .tag-block .text-block-1 {
}

.program .block-1 .block-con .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: auto 0;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.program .block-1 .block-con .tag-block .head-block-1 {
}

.program .block-1 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.program .block-1 .block-con .tag-block .head-block-1 h2 span {
  color: #dc1113;
  font-weight: bold;
}

.program .block-1 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: middle;
  width: 34%;
  padding-left: 4%;
}

.program .block-1 .block-con .block-con-2 .text-block-2 {
}

.program .block-1 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.program .block-1 .block {
}

.program .block-1 .block .block-0 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 20px;
}

.program .block-1 .block .image-block-1 {
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.program .block-1 .block .image-block-1 img {
  width: 100%;
  border-radius: 11px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.program .block-1 .block .image-block-1:hover img {
  filter: grayscale(0);
  -ms-filter: grayscale(0);
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.program .block-1 .block .text-block-3 {
}

.program .block-1 .block .text-block-3 p {
  text-align: left;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.program .block-1 .block .text-block-4 {
}

.program .block-1 .block .text-block-4 p {
  text-align: left;
  color: #1e1e1e99;
  line-height: 33px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.program .block-1 .block .btn-block {
}

.program .block-1 .block .btn-block a {
  display: block;
  border: 1px solid #ffb303;
  border-radius: 6px;
  width: 100%;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.program .block-1 .block .btn-block p {
  padding: 10px;
  text-align: center;
  color: #ffb303;
}

.program .block-1 .block .btn-block a:hover,
.program .block-1 .block .btn-block a:focus,
.program .block-1 .block .btn-block a:active {
  background: #ffb303;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.program .block-1 .block .btn-block a:hover p,
.program .block-1 .block .btn-block a:focus p,
.program .block-1 .block .btn-block a:active p {
  color: #ffffff;
}
/*  */
.program-hasi .block-2 {
  margin-bottom: 50px;
}

.program-hasi .block-2 .inner-content {
  padding: 0 70px 0 70px;
  border-radius: 33px;
  background: #ffffff;
}

.program-hasi .block-2 .image-block-1 {
}

.program-hasi .block-2 .image-block-1 img {
  width: 100%;
  border-radius: 20px;
}

.program-hasi .block-2 .head-block-1 {
}

.program-hasi .block-2 .head-block-1 h2 {
  color: #101828;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 50px;
}
.program-hasi .block-2 .head-block-1 h2 span.span1 {
  color: #ffb303;
  font-weight: bold;
}
.program-hasi .block-2 .head-block-1 h2 span.span2 {
  color: #ea2548;
  font-weight: bold;
}

.program-hasi .block-2 .grid-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}
.program-hasi .block-2 .block-21 {
}
.program-hasi .block-2 .block-21 .grid-img {
}
.program-hasi .block-2 .block-21 .grid-img img {
  width: 100%;
  border-radius: 12px;
}

.program-hasi .block-9 {
}

.program-hasi .block-9 {
}

.program-hasi .block-9 .inner-block {
  margin: 100px 0 30px 0;
  /* box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15); */
  padding: 0 70px 0 70px;
  border-radius: 10px;
  overflow: hidden;
}

.program-hasi .block-9 .con-block-1 {
  padding: 71px 0 50px 0;
}

.program-hasi .block-9 .con-block-2 {
  padding-bottom: 60px;
}

.program-hasi .block-9 .tag-block {
  max-width: 900px;
  margin: 0 auto;
}

.program-hasi .block-9 .tag-block .head-block-1 {
}

.program-hasi .block-9 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.program-hasi .block-9 .tag-block .link-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.program-hasi .block-9 .link-tab .icon-tab {
}

.program-hasi .block-9 .link-tab .icon-tab a {
  display: block;
}

.program-hasi .block-9 .link-tab .icon-tab a i {
  line-height: 1em;
  color: #ffb303;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.program-hasi .block-9 .link-tab .icon-tab a i:hover,
.program-hasi .block-9 .link-tab .icon-tab a i:focus,
.program-hasi .block-9 .link-tab .icon-tab a i:active {
  line-height: 1em;
  color: #ea2548;
  transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

/* .program-hasi .block-9 .tag-block .text-block-2 {
}

.program-hasi .block-9 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

.program-hasi .block-9 .tag-block .btn-block-1 {
  text-align: center;
}

.program-hasi .block-9 .tag-block .btn-block-1 a {
  max-width: fit-content;
  display: block;
  margin: 0 auto;
  line-height: 1em;
  background: #ffb303;
  padding: 12px 36px;
  border: 1px solid #ffb303;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
} */

.program-hasi .block-9 .slider {
}

.program-hasi .block-9 .slider.gallery2 {
  direction: rtl;
}

.program-hasi .block-9 .slider.slick-slider {
  margin: 0 -10px;
  margin-bottom: 20px;
}

.program-hasi .block-9 .slider .slick-slide {
  padding: 0 10px;
}

.program-hasi .block-9 .slider .slick-prev,
.program-hasi .block-9 .slider .slick-next {
  display: none !important;
}

.program-hasi .block-9 .slider .block {
  margin: 0 10px;
}

.program-hasi .block-9 .slider .block a {
  display: block;
}

.program-hasi .block-9 .slider .block a img {
  width: 100%;
  border-radius: 5px;
}

.program-hasi .block-9 .tag-block .btn-block-1 a:hover {
  color: #ffb303;
  background: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
/*  */
/* Programs Page End */

/* Program Detail Start */
.programdetail {
}

.programdetail .inner {
}

.programdetail .block-1 {
  margin-bottom: 50px;
}

.programdetail .block-1 .inner-content {
  padding: 0 70px 0 70px;
  border-radius: 33px;
  background: #ffffff;
}

.programdetail .block-1 .image-block-1 {
}

.programdetail .block-1 .image-block-1 img {
  width: 100%;
  border-radius: 20px;
}

.programdetail .block-1 .head-block-1 {
}

.programdetail .block-1 .head-block-1 h2 {
  color: #101828;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 50px;
}

.programdetail .block-2 {
}

.programdetail .block-2 .inner-content {
  padding: 0 70px 0 70px;
  border-radius: 33px;
  background: #ffffff;
}

.programdetail .block-2 .block {
  display: grid;
  /* grid-template-columns: 1fr 2fr; */
  grid-template-columns: 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.programdetail .block-2 .block img.img-01 {
  position: absolute;
  width: 100%;
  max-width: 300px;
  top: 60px;
  right: -220px;
  z-index: -1;
  opacity: 0.5;
}

.programdetail .block-2 .block img.img-02 {
  position: absolute;
  width: 100%;
  max-width: 150px;
  top: 800px;
  right: -176px;
  z-index: -1;
  opacity: 0.3;
}

.programdetail .block-2 .block img.img-03 {
  position: absolute;
  width: 100%;
  max-width: 250px;
  bottom: 200px;
  left: -52px;
  z-index: -1;
}

.programdetail .block-2 .block .block-21 {
}

.programdetail .block-2 .block-21 .list-block {
}

.programdetail .block-2 .block-21 .list-block ul {
}

.programdetail .block-2 .block-21 .list-block ul li {
  cursor: pointer;
}

.programdetail .block-2 .block-21 .list-block ul li.option {
  padding-left: 20px;
}

.programdetail .block-2 .block-21 .list-block p {
  color: #8896ab;
  text-transform: capitalize;
}

.programdetail .block-2 .block-21 .divide {
  border-top: 1px solid #eef0f3;
  width: 100%;
  padding: 16px 0;
}

.programdetail .block-2 .block-21 .buttons {
  display: flex;
  gap: 20px;
}

.programdetail .block-2 .block-21 .buttons .btn {
}

.programdetail .block-2 .block-21 .buttons .btn a {
  display: block;
  border: 1px solid #d5dae1;
  padding: 9px 18px;
  border-radius: 7px;
}

.programdetail .block-2 .block-21 .buttons .btn p {
  color: #556987;
}

.programdetail .block-2 .block-21 .buttons .btn.copy {
  width: max-content;
}

.programdetail .block-2 .block-21 .buttons .btn.copy img.img-0 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.programdetail .block-2 .block-21 .buttons .btn.copy p {
  display: inline-block;
  vertical-align: middle;
}

.programdetail .block-2 .block .block-22 {
}

.programdetail .block-2 .block .block-22 .block-221 {
}

.programdetail .block-2 .block-221 .text-block-1 {
}

.programdetail .block-2 .block-221 .text-block-1 p {
  color: #606060;
  text-align: left;
  line-height: 31px;
}

.programdetail .block-2 .block-221 .head-block-1 {
}

.programdetail .block-2 .block-221 .head-block-1 h2 {
  text-transform: capitalize;
  font-weight: bold;
  color: #121416;
}

.programdetail .block-2 .block-221 .list-block {
}

.programdetail .block-2 .block-221 .list-block ul {
  padding-left: 30px;
}

.programdetail .block-2 .block-221 .list-block ul li {
}

.programdetail .block-2 .block-221 .list-block ul li p {
  color: #606060;
}

.programdetail .block-2 .block-221 .list-block li span {
  margin-right: 10px;
}

.programdetail .block-2 .block-221 .image-block-1 {
}

.programdetail .block-2 .block-221 .image-block-1 img {
  width: 100%;
}

.programdetail .block-2 .block-221 .text-block-2 {
}

.programdetail .block-2 .block-221 .text-block-2 p {
  font-size: 15px;
  color: #606060;
}

.programdetail .block-2 .block-221 .quote-block {
  border-left: 4px solid #0c0c0d;
}

.programdetail .block-2 .block-221 .quote-block .text-block-3 {
  padding: 20px 0 20px 28px;
}

.programdetail .block-2 .block-221 .quote-block .text-block-3 p.big {
  font-size: 26px;
  line-height: 35px;
  color: #0c0c0d;
  text-align: left;
}

.programdetail .block-2 .block-221 .quote-block .text-block-3 p {
  color: #0c0c0d;
  text-align: left;
}

/*  */
.programdetail .block-2 .block .block-22 .block-221 .swiper {
  width: 1000px;
  /* height: 300px; */
  overflow: hidden;
}

.programdetail .block-2 .block .block-22 .block-221 .swiper .swiper-wrapper {
}

.programdetail .block-2 .block .block-22 .block-221 .swiper .swiper-button-prev,
.programdetail
  .block-2
  .block
  .block-22
  .block-221
  .swiper
  .swiper-button-next {
  color: #ffb303;
}

.programdetail .block-2 .block .block-22 .block-221 .swiper .swiper-wrapper a {
  display: block;
}

.programdetail
  .block-2
  .block
  .block-22
  .block-221
  .swiper
  .swiper-wrapper
  img {
  width: 100%;
  border-radius: 10px;
}

.programdetail .block-2 .block-221 .detail-gal .block-gal {
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.programdetail .block-2 .block-221 .detail-gal .block-gal a {
  display: block;
}

.programdetail .block-2 .block-221 .detail-gal .block-gal img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}
/*  */

.programdetail .block-2 .summary {
  background: #d9d9d9;
  border-radius: 12px;
  padding: 45px;
}

.programdetail .block-2 .summary .text-block-4 {
}

.programdetail .block-2 .summary .text-block-4 p {
  color: #606060;
  line-height: 31px;
}

.programdetail .block-3 {
  margin-top: 100px;
}

.programdetail .block-3 .inner-content {
  padding: 0 70px 0 70px;
  border-radius: 33px;
  background: #ffffff;
}

.programdetail .block-3 .head-block-1 {
}

.programdetail .block-3 .head-block-1 h2 {
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  color: #101828;
}

.programdetail .block-4 {
}

.programdetail .block-4 .slider-block {
}

.programdetail .block-4 .slider-center {
}

.programdetail .block-4 .slick-slide {
  margin: 20px 30px;
}

.programdetail .block-4 .slick-next,
.programdetail .block-4 .slick-prev {
  z-index: 1;
  border: 1px solid #ffb303;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.programdetail .block-4 .slick-next:before,
.programdetail .block-4 .slick-prev:before {
  color: #000000;
}

.programdetail .block-4 .slick-slide.slick-active {
}

.programdetail .block-4 .slick-track {
  margin-left: -15px;
  margin-right: -15px;
}

.programdetail .block-4 .slick-slide ul.slider-center {
}

.programdetail .block-4 .slick-slide li.slick-li {
  border-radius: 11.111px;
  border: 1.111px solid rgba(30, 30, 30, 0.05);
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.programdetail .block-4 .slick-slide li.slick-li .image-block-1 {
  padding: 12px;
}

.programdetail .block-4 .slick-slide li.slick-li .image-block-1 img {
  width: 100%;
  border-radius: 11px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  -o-object-fit: cover;
}

.programdetail .block-4 .slick-slide li.slick-li .text-block-1 {
  padding: 12px;
}

.programdetail .block-4 .slick-slide li.slick-li .text-block-1 p {
  text-align: left;
  color: #1e1e1e;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "right-grotesk", Arial, "Helvetica Neue", Helvetica, sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.programdetail .block-4 .slick-slide li.slick-li .text-block-2 {
  padding: 12px;
}

.programdetail .block-4 .slick-slide li.slick-li .text-block-2 p {
  text-align: left;
  color: #1e1e1e99;
  line-height: 33px;
}

.programdetail .block-4 .slick-slide li.slick-li .btn-block {
  padding: 12px;
}

.programdetail .block-4 .slick-slide li.slick-li .btn-block a {
  border: 1px solid #ffb303;
  border-radius: 5px;
  background: #ffffff;
  display: block;
  text-align: center;
  padding: 10px 44px;
  color: #ffb303;
  line-height: 1em;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.programdetail .block-4 .slick-slide li.slick-li .btn-block a:hover,
.programdetail .block-4 .slick-slide li.slick-li .btn-block a:focus,
.programdetail .block-4 .slick-slide li.slick-li .btn-block a:active {
  background: #ffb303;
  color: #ffffff;
  line-height: 1em;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

/* Program Detail End */

/* Contact Us */

.contactus {
}

.contactus .inner {
  font-size: 0;
  width: 100%;
}

.contactus .block-1 {
}

.contactus .block-1 .inner-content {
  padding: 30px 70px 50px 70px;
}

.contactus .block-1 .block-con .block-con-1 {
  display: inline-block;
  vertical-align: top;
  width: 60%;
  padding-right: 2%;
}

.contactus .block-1 .block-con .block-con-1 .tag-block {
}
.contactus .block-1 .block-con .tag-block .head-block-1 {
}

.contactus .block-1 .block-con .tag-block .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.contactus .block-1 .block-con .tag-block .head-block-1 h2 span {
  color: #ffb303;
  font-weight: bold;
}

.contactus .block-1 .block-con .block-con-2 {
  display: inline-block;
  vertical-align: top;
  width: 34%;
  padding-left: 4%;
}

.contactus .block-1 .block-con .block-con-2 .text-block-2 {
}

.contactus .block-1 .block-con .block-con-2 .text-block-2 p {
  color: #1e1e1e99;
  line-height: 33px;
  font-size: 18px;
  text-align: right;
}

.contactus .block-1 .video-block {
}

.contactus .block-1 .video-block .image-block-1 {
}

.contactus .block-1 .video-block .image-block-1 img {
  width: 100%;
  border-radius: 18px;
}

/*  */
.contactus .block-1 .block-con-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 35px;
  position: relative;
  z-index: 1;
}

.contactus .block-1 .block-con-3 img.img-0 {
  position: absolute;
  bottom: 0;
  right: -150px;
  z-index: -1;
  opacity: 0.5;
  max-width: 250px;
}

.contactus .block-1 .block {
}

.contactus .block-1 .block .block-0 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  padding: 80px 30px;
}

.contactus .block-1 .block .text-block-3 {
}

.contactus .block-1 .block .text-block-3 p {
  text-align: center;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: bold;
}

.contactus .block-1 .block .text-block-4 {
}

.contactus .block-1 .block .text-block-4 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

.contactus .block-2 {
}

.contactus .block-2 .head-block-1 {
}

.contactus .block-2 .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}
.contactus .block-2 .head-block-1 h2 span {
  font-weight: bold;
  color: #ffb303;
}

.contactus .block-3 {
  margin-bottom: 80px;
}

.contactus .block-3 .slider-block {
}

.contactus .block-3 .slider-center {
}

.contactus .block-3 .slick-slide {
  margin: 20px 40px;
}

.contactus .block-3 .slick-next,
.contactus .block-3 .slick-prev {
  z-index: 1;
  border: 1px solid #ffb303;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.contactus .block-3 .slick-next:before,
.contactus .block-3 .slick-prev:before {
  color: #000000;
}

.contactus .block-3 .slick-slide.slick-active {
}

.contactus .block-3 .slick-track {
  margin-left: -15px;
  margin-right: -15px;
}

.contactus .block-3 .slick-slide ul.slider-center {
}

.contactus .block-3 .slick-slide li.slick-li {
  border-radius: 11.111px;
  border: 1.111px solid rgba(30, 30, 30, 0.05);
  background: #fff;
  box-shadow: 0px 0px 26.667px 0px rgba(0, 0, 0, 0.15);
}

.contactus .block-3 .slick-slide li.slick-li .block {
  padding: 60px 30px;
}

.contactus .block-3 .slick-slide li.slick-li .block-0 {
}

.contactus .block-3 .slick-slide li.slick-li .image-block-1 {
  max-width: 100px;
  margin: 0 auto;
}

.contactus .block-3 .slick-slide li.slick-li .image-block-1 img {
  width: 100%;
}

.contactus .block-3 .text-block-3 {
}

.contactus .block-3 .text-block-3 p {
  text-align: center;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: bold;
}

.contactus .block-3 .text-block-4 {
}

.contactus .block-3 .text-block-4 p {
  text-align: center;
  color: #1e1e1e99;
  line-height: 33px;
}

/*  */
.contactus .block-4 {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
}

.contactus .block-4 .block-41 .inner-block {
}

.contactus .block-4 .block-41 .tag-block {
}

.contactus .block-4 .block-41 .tag-block .text-block-1 {
}

.contactus .block-4 .block-41 .tag-block .text-block-1 p {
  max-width: fit-content;
  margin: 0 auto;
  background: #ffb303;
  padding: 8px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.contactus .block-4 .block-41 .tag-block .head-block-1 {
}

.contactus .block-4 .block-41 .tag-block .head-block-1 h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 56px;
}

.contactus .block-4 .block-41 .tag-block .text-block-2 {
}

.contactus .block-4 .block-41 .tag-block .text-block-2 p {
  text-align: center;
  color: #1e1e1e99;
}

.contactus .block-4 .block-41 .tag-block .btn-block-1 {
  text-align: center;
}

.contactus .block-4 .block-41 .tag-block .btn-block-1 a {
  max-width: fit-content;
  margin: 0 auto;
  line-height: 1em;
  background: #ffb303;
  padding: 11px 17px;
  border-radius: 5px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
}

.contactus .block-4 .block-42 {
}

.contactus .block-4 .block-42 .slider {
}

.contactus .block-4 .block-42 .slider.slick-slider {
  margin: 0 -15px;
}

.contactus .block-4 .block-42 .slider .slick-slide {
  padding: 10px;
  text-align: center;
  margin-right: 10px;
  margin-left: 10px;
}

.contactus .block-4 .block-42 .slider .slick-prev,
.contactus .block-4 .block-42 .slider .slick-next {
  background: #ffffff !important;
  padding: 20px;
  border-radius: 100%;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  border: 1px solid #ffb303;
  z-index: 1;
}

.contactus .block-4 .block-42 .slider .slick-prev:hover,
.contactus .block-4 .block-42 .slider .slick-next:hover {
  background: #ffb303 !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  color: #ffffff !important;
}

.contactus .block-4 .block-42 .slider .slick-prev:hover::before,
.contactus .block-4 .block-42 .slider .slick-next:hover::after {
  color: #ffffff !important;
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.contactus .block-4 .block-42 .slider .slick-prev:before,
.contactus .block-4 .block-42 .slider .slick-next:before {
  color: #222222 !important;
  font-size: 20px;
  line-height: 19px;
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}

.contactus .block-4 .block-42 .slider .block {
}

.contactus .block-4 .block-42 .slider .block .image-block-1 {
  position: relative;
}

.contactus .block-4 .block-42 .slider .block .image-block-1 img {
  width: 100%;
  border-radius: 22px;
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  position: relative;
  z-index: 1;
}

.contactus .block-4 .block-42 .slider .block .con-block {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}

.contactus .block-4 .block-42 .slider .block .con-block .text-block-1 {
}

.contactus .block-4 .block-42 .slider .block .con-block .text-block-1 p {
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 25px;
  filter: drop-shadow(2px 4px 6px black);
  -ms-filter: drop-shadow(2px 4px 6px black);
  -webkit-filter: drop-shadow(2px 4px 6px black);
}

/*  */
.contactus .block-5 {
}

.contactus .block-5 .inner-content {
  padding: 30px 70px 50px 70px;
}

.contactus .block-5 .form-block {
  box-shadow: 0px -51.11px 277.78px 0px rgba(255, 255, 255, 0.5) inset,
    0px 0px 26.67px 0px rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contactus .block-5 .block-51 {
  padding: 30px;
}

.contactus .block-5 .block-51 .form-block-0 {
}

.contactus .block-5 .block-51 .form-block-0 .head-block-1 {
}

.contactus .block-5 .block-51 .form-block-0 .head-block-1 h2 {
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #1e1e1e;
  font-size: 50px;
}

.contactus .block-5 .block-51 .form-block-0 .text-block-0 {
}

.contactus .block-5 .block-51 .form-block-0 .text-block-0 p {
  color: #2d2d2d99;
  line-height: 26px;
  text-align: left;
}

.contactus .block-5 .block-51 .form-block-0 .name-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contactus .block-5 .block-51 .form-block-0 .name-block .block {
}

.contactus .block-5 .block-51 .form-block-0 .block {
}

.contactus .block-5 .block-51 .form-block-0 input[type="text"] {
  display: block;
  width: 100%;
  border: 1px solid #2d2d2d33;
  border-radius: 6px;
  background: #9b9b9b0d;
  padding: 15px 17px;
  outline: none;
  color: #494949;
  text-align: left;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-5 .block-51 .form-block-0 input[type="text"]:hover,
.contactus .block-5 .block-51 .form-block-0 input[type="text"]:focus {
  border: 1px solid #ec6e00;
  box-shadow: 1px 1px 2px 0 #dddddd;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-5 .block-51 .form-block-0 textarea {
  display: block;
  width: 100%;
  border: 1px solid #2d2d2d33;
  border-radius: 6px;
  background: #9b9b9b0d;
  padding: 15px 17px;
  outline: none;
  color: #494949;
  text-align: left;
  height: 112px;
  resize: vertical;
}

.contactus .block-5 .block-51 .form-block-0 textarea:hover,
.contactus .block-5 .block-51 .form-block-0 textarea:focus {
  border: 1px solid #ec6e00;
  box-shadow: 1px 1px 2px 0 #dddddd;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.contactus .block-5 .block-51 .form-block-0 input[type="submit"] {
  display: block;
  width: 100%;
  border: 1px solid #ffb303;
  background: #ffb303;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  border-radius: 7px;
  color: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.contactus .block-5 .block-51 .form-block-0 input[type="submit"]:hover,
.contactus .block-5 .block-51 .form-block-0 input[type="submit"]:focus {
  border: 1px solid #ec6e00;
  color: #ec6e00;
  background: #ffffff;
  transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}

.contactus .block-5 .block-52 {
  padding: 30px;
}

.contactus .block-5 .block-52 .image-block-1 {
}

.contactus .block-5 .block-52 .image-block-1 img {
  width: 100%;
  border-radius: 15px;
  height: 600px;
  object-fit: cover;
  -o-object-fit: cover;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
