@font-face {
  font-family: "Neutral Sans";
  src: url("../webfonts/NeutralSans-Regular.eot");
  src: url("../webfonts/NeutralSans-Regular.eot?#iefix") format("embedded-opentype"), url("../webfonts/NeutralSans-Regular.woff2") format("woff2"), url("../webfonts/NeutralSans-Regular.woff") format("woff"), url("../webfonts/NeutralSans-Regular.ttf") format("truetype"), url("../webfonts/NeutralSans-Regular.svg#NeutralSans-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutral Sans";
  src: url("../webfonts/NeutralSans-Bold.eot");
  src: url("../webfonts/NeutralSans-Bold.eot?#iefix") format("embedded-opentype"), url("../webfonts/NeutralSans-Bold.woff2") format("woff2"), url("../webfonts/NeutralSans-Bold.woff") format("woff"), url("../webfonts/NeutralSans-Bold.ttf") format("truetype"), url("../webfonts/NeutralSans-Bold.svg#NeutralSans-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --light-blue: rgba(245, 133, 59, 0.795);
  --dark-blue: rgba(241, 174, 87, 0.8);
  --violet: rgba(250, 217, 73, 0.8);
  --conic-gradient: conic-gradient(
    var(--dark-blue),
    var(--violet),
    var(--light-blue),
    var(--dark-blue)
  );
}

.btn-light {
  color: #000;
  background-color: #fff !important;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 8px 25px !important;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.4s;
  position: relative;
  text-transform: uppercase;
}
.btn-light:hover {
  background-color: #000 !important;
  color: #fff !important;
}

.btn-dark {
  color: #fff;
  background-color: #000 !important;
  border-radius: 30px;
  border: 1px solid #000;
  padding: 8px 25px !important;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.4s;
  position: relative;
  text-transform: uppercase;
}
.btn-dark:hover {
  background-color: transparent !important;
  color: #000 !important;
}

.btn-outline-light {
  color: #fff;
  background-color: transparent !important;
  border-radius: 30px;
  border: 1px solid #fff;
  padding: 8px 25px !important;
  font-size: 16px;
  font-weight: 400;
  transition: all ease-in-out 0.4s;
  position: relative;
  text-transform: uppercase;
}
.btn-outline-light:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.clr-wht {
  color: #fff !important;
}

body {
  font-family: "Neutral Sans";
  color: #5C5C5C;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 24px;
  background: #fff;
  font-weight: 400;
  overflow-x: hidden;
}

* {
  border: medium none;
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none !important;
}

a:hover {
  text-decoration: none;
  outline: none;
}

textarea {
  resize: none;
}

p {
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  color: #4C4B4B;
  margin: 0;
}

/*#######################*/
.header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 99;
  padding: 25px 0 0;
}
.header .logo {
  width: 33.33%;
  display: flex;
  justify-content: center;
}
.header .head-right-btn {
  display: flex;
  justify-content: end;
}
.header .head-right-btn ul {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 0;
}
.header .head-right-btn ul .hed-search {
  position: static;
}
.header .head-right-btn ul .hed-search .open-search {
  position: relative;
  color: #fff;
  font-size: 25px;
}
.header .head-right-btn ul .hed-search .form-search {
  position: absolute;
  top: 0%;
  right: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 30px 5%;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transform: rotateX(-90deg);
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #000;
}
.header .head-right-btn ul .hed-search .form-search input[type=search] {
  font-size: 30px;
  color: #5a5a5a;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding: 12px 10px;
  border: none;
  width: 100%;
  outline: none;
  background: transparent;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.header .head-right-btn ul .hed-search .form-search button {
  background: transparent;
  border: none;
  position: absolute;
  z-index: 2;
  padding: 0;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
.header .head-right-btn ul .hed-search .form-search button i {
  color: #000000;
  font-size: 30px;
}
.header .head-right-btn ul .hed-search .form-search.active {
  visibility: visible;
  opacity: 1;
  transform: rotateX(0deg);
}
.header .head-right-btn ul .hed-search .close-overlay {
  opacity: 0;
  height: 0;
  width: 0;
}
.header .head-right-btn ul .hed-search .form-search.active + .close-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  cursor: url(../images/close-search-icn.png), auto;
  z-index: 9;
}
.header .hamberger-menu {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  gap: 14px;
  cursor: pointer;
}
.header .hamberger-menu .nav-icon {
  width: 40px;
  height: 30px;
  position: relative;
  margin: 0 auto;
  z-index: 99;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.header .hamberger-menu .nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .hamberger-menu .nav-icon span:nth-child(1) {
  top: 0px;
  transform-origin: left center;
}
.header .hamberger-menu .nav-icon span:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}
.header .hamberger-menu .nav-icon span:nth-child(3) {
  top: 24px;
  transform-origin: left center;
}
.header .active .nav-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
  left: 8px;
}
.header .active .nav-icon span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.header .active .nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 29px;
  left: 8px;
}

.nav-main {
  position: absolute;
  top: -100%;
  left: 0;
  background: url(../images/ban-bg.png) no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  z-index: 9;
  padding: 0 0 250px;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.nav-main .nav-list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 38px;
}
.nav-main .nav-list li {
  width: 47%;
  padding: 0;
}
.nav-main .nav-list li a {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
}
.nav-main .nav-list li a span {
  font-size: 18px;
  margin-right: 20px;
}
.nav-main .nav-graphy {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 650px;
}
.nav-main .nav-graphy img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner {
  position: relative;
  background: url(../images/ban-bg.png) no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.banner .ban-txt h2 {
  font-size: 90px;
  color: #fff;
  margin: 0;
  padding: 0;
}
.banner .ban-txt .ban-social {
  margin: 40px 0 0px;
  padding: 0px;
  display: flex;
}
.banner .ban-txt .ban-social li {
  margin: 0px 18px 0px 0px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  animation: slide-top 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s both;
}
.banner .ban-txt .ban-social li i {
  font-size: 22px;
  color: #fff;
  transition: 0.4s ease-in-out;
}
.banner .globe-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 18%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner .globe-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 9;
}
.banner .globe-img .outer-circle {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: var(--conic-gradient);
  animation: rotate 4s linear infinite;
  z-index: 1;
}
.banner .globe-img .outer-circle .circle-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: var(--conic-gradient);
  filter: blur(20px);
  opacity: 0.5;
  top: -10%;
  left: -10%;
  z-index: 2;
  animation: pulse 4s ease-in-out infinite;
}
.banner .shadow-img {
  position: absolute;
  left: 25%;
  bottom: -100px;
  width: 260px;
}
.banner .shadow-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes slide-top {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.about-wrap {
  background: url(../images/bg1.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.about-wrap .globe1 {
  position: absolute;
  top: 17%;
  left: -50px;
  width: 240px;
  z-index: 9;
}
.about-wrap .globe1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrap .globe2 {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: -70px;
  width: 320px;
  z-index: 9;
}
.about-wrap .globe2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.abt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
}

.abt-txt{
  position: relative;
  z-index: 99;
}
.abt-txt h2 {
  font-size: 62px;
  color: #000;
  margin: 0 0 20px;
  padding: 0;
}
.abt-txt p {
  line-height: 36px;
  margin: 0 0 20px;
}
.abt-txt ul {
  margin: 20px 0 0;
  padding: 0;
}
.abt-txt ul li {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0 0 15px;
  padding: 0 0 0 30px;
  position: relative;
  display: flex;
  align-items: center;
}
.abt-txt ul li:before {
  content: "\f192";
  position: absolute;
  left: 0;
  font-size: 17px;
  color: #89583e;
  font-family: Fontawesome;
}

.main-title {
  font-size: 65px;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}

.srvc-wrap {
  background: url(../images/bg2.png) no-repeat;
  background-size: cover;
  padding: 80px 0;
  display: flex;
  align-items: center;
}
.srvc-wrap hr {
  border-color: #fff;
}
.srvc-wrap .srvc-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.srvc-wrap .srvc-card h3 {
  font-size: 42px;
  color: #25263A;
  margin: 0;
  padding: 0;
  width: 33.33%;
}
.srvc-wrap .srvc-card p {
  width: 33.33%;
  color: #4C4B4B;
}
.srvc-wrap .srvc-card .srvc-img {
  width: 300px;
  height: 145px;
  border-radius: 10px;
  overflow: hidden;
}
.srvc-wrap .srvc-card .srvc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.title-prt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.title-prt h2 {
  font-size: 65px;
  color: #25263A;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.title-prt h2 span {
  display: inline-block;
}

.about-wrap2 {
  background: url(../images/bg3.jpg) no-repeat;
  background-size: cover;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.about-wrap2 .abt-globe1 {
  position: absolute;
  top: 7%;
  left: -70px;
  width: 210px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-wrap2 .abt-globe1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 99;
}
.about-wrap2 .abt-globe1 .outer-circle {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: var(--conic-gradient);
  animation: rotate 4s linear infinite;
  z-index: 1;
}
.about-wrap2 .abt-globe1 .outer-circle .circle-glow {
  position: absolute;
  width: 125%;
  height: 125%;
  border-radius: 50%;
  background: var(--conic-gradient);
  filter: blur(20px);
  opacity: 0.5;
  top: -10%;
  left: -10%;
  z-index: 2;
  animation: pulse 4s ease-in-out infinite;
}
.about-wrap2 .cross-sign {
  position: absolute;
  bottom: 7%;
  right: 33%;
  width: 126px;
}
.about-wrap2 .cross-sign img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrap2 .abt-img img {
  filter: grayscale(0%);
}

.strength-wrap {
  background: url(../images/bg4.png) no-repeat;
  background-size: cover;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.strength-wrap .title1 {
  font-size: 65px;
  color: #25263A;
  margin: 0;
  padding: 0;
  width: 45%;
}
.strength-wrap .man-img {
  text-align: center;
}
.strength-wrap .man-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
.strength-wrap .strength-content {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 25%;
}
.strength-wrap .cloud-prt {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: -1;
}
.strength-wrap .cloud-prt img {
  flex: 0 0 auto;
  width: 100%;
  height: 50vh;
}

.testi-wrap {
  background: url(../images/bg5.png) no-repeat top center;
  background-size: cover;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.testi-wrap .testi-globe {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 55%;
  transform: translateY(-50%);
  width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-wrap .testi-globe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 99;
}
.testi-wrap .testi-globe .outer-circle {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: var(--conic-gradient);
  animation: rotate 4s linear infinite;
  z-index: 1;
}
.testi-wrap .testi-globe .outer-circle .circle-glow {
  position: absolute;
  width: 125%;
  height: 125%;
  border-radius: 50%;
  background: var(--conic-gradient);
  filter: blur(20px);
  opacity: 0.5;
  top: -10%;
  left: -10%;
  z-index: 2;
  animation: pulse 4s ease-in-out infinite;
}
.testi-wrap .testi-bx {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 70px 20px 25px;
  border-radius: 25px;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  position: relative;
}
.testi-wrap .testi-bx:before {
  content: "";
  position: absolute;
  background: url(../images/quote.png) no-repeat;
  top: 25px;
  left: 20px;
  width: 56px;
  height: 44px;
  background-size: 100%;
}
.testi-wrap .testi-bx p {
  color: #25263A;
  margin: 15px 0 0;
}
.testi-wrap .testi-bx .star {
  display: inline-block;
  margin: 15px 0 0;
}
.testi-wrap .testi-bx h4 {
  font-size: 18px;
  font-weight: 700;
  color: #25263A;
  margin: 15px 0 0;
  padding: 0;
}
.testi-wrap .testi-bx h4 span {
  font-size: 16px;
  font-weight: 400;
  display: block;
}

.testi-slider .owl-stage-outer {
  padding-bottom: 70px;
  border-bottom: 1px solid #fff;
}
.testi-slider .owl-nav {
  position: absolute;
  bottom: 50px;
  transform: translateY(-50%);
  width: 100%;
}
.testi-slider .owl-nav button.owl-prev,
.testi-slider .owl-nav button.owl-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  position: absolute;
  background-color: #fff;
  transition: all ease-in-out 0.5s;
}
.testi-slider .owl-nav button.owl-prev i,
.testi-slider .owl-nav button.owl-next i {
  font-size: 30px;
  color: #000;
  transition: all ease-in-out 0.4s;
}
.testi-slider .owl-nav button.owl-prev:hover,
.testi-slider .owl-nav button.owl-next:hover {
  background-color: #fff;
}
.testi-slider .owl-nav button.owl-prev:hover i,
.testi-slider .owl-nav button.owl-next:hover i {
  color: #000;
}
.testi-slider .owl-nav .owl-prev {
  left: -23px;
}
.testi-slider .owl-nav .owl-next {
  right: -23px;
}

.faq-wrap {
  background: url(../images/bg6.png) no-repeat top center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.faq-wrap .faq-rt-content {
  width: 45%;
}
.faq-wrap .faq-globe {
  text-align: center;
}
.faq-wrap .faq-globe img {
  display: inline-block;
}

.accordion-item {
  background-color: #fff;
  border: none !important;
  border-radius: 10px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-size: 18px;
  color: #4E4E53;
  font-weight: 500;
  padding: 15px 15px;
  background-color: transparent;
  border: none;
}

.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}

.accordion-button:after {
  content: "+";
  background-image: none;
  font-size: 27px;
  color: #000;
  width: auto;
  height: auto;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #F4EDFF;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  color: #000 !important;
}

.accordion-body {
  font-size: 15px;
  color: #717171;
  line-height: 24px;
  border: none;
}

.accordion-body p {
  font-size: 15px;
  line-height: 24px;
  border: none;
  margin: 0 0 15px;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "-";
  transform: none;
  color: #000000;
}

.accordion-collapse.show {
  background-color: #F4EDFF;
}

.contact-wrap {
  background: url(../images/bg7.png) no-repeat top center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.contact-wrap .contact-globe {
  position: absolute;
  left: -100px;
  bottom: -180px;
  width: 600px;
}
.contact-wrap .contact-globe img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact-form h3 {
  font-size: 60px;
  color: #25263A;
  margin: 0;
  padding: 0;
}
.contact-form p {
  margin: 15px 0 0;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group .form-control {
  height: 50px;
  border: none;
  border-bottom: 1px solid rgba(124, 124, 124, 0.45);
  border-radius: 0;
  background-color: transparent;
}
.contact-form .form-group textarea.form-control {
  height: 160px;
}

.footer {
  background: url(../images/bg8.png) no-repeat top center;
  padding: 80px 0 30px;
}
.footer .news-bx {
  text-align: center;
}
.footer .news-bx h3 {
  font-size: 42px;
  color: #25263A;
  margin: 0;
  padding: 0;
}
.footer .news-bx p {
  margin: 20px 0 0;
}
.footer .news-bx .newsletter-bx {
  position: relative;
  width: 100%;
}
.footer .news-bx .newsletter-bx form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff !important;
}
.footer .news-bx .newsletter-bx form input[type=email] {
  background-color: transparent !important;
  border: none;
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  height: 70px;
  line-height: 1;
  margin: 0;
  outline: medium none;
  padding: 8px 15px;
  width: 100%;
  border-radius: 15pz;
}
.footer .news-bx .newsletter-bx form .search-icon {
  font-size: 20px;
  font-weight: 500;
  padding: 12px;
  color: #000;
  background-color: transparent;
  display: inline-block;
  border-radius: 0;
  width: 15%;
  border: none;
}
.footer .news-bx .newsletter-bx form .search-icon i {
  margin-right: 8px;
}
.footer .f-top {
  padding: 60px 0;
  border-bottom: 1px solid #E5E5E5;
}
.footer .f-top .f-pera {
  margin: 25px 0 0;
}
.footer .f-top .footer-title {
  color: #25263A;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px;
  padding: 0;
}
.footer .f-top .footer-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.footer .f-top .footer-list li {
  font-size: 16px;
  margin: 0 0 14px;
  font-weight: 400;
  padding: 0;
  width: 50%;
}
.footer .f-top .footer-list li a {
  color: #4C4B4B;
  transition: all ease-in-out 0.3s;
}
.footer .f-top .f-contact {
  margin: 0;
  padding: 0;
}
.footer .f-top .f-contact li {
  float: none;
  margin-bottom: 12px;
  display: flex;
  align-items: normal;
}
.footer .f-top .f-contact li i {
  color: #4C4B4B;
  font-size: 18px;
  margin-right: 10px;
}
.footer .f-top .f-contact li p {
  color: #4C4B4B;
  margin: 0;
  width: 85%;  
  line-height: 21px;
}
.footer .f-top .f-contact li a {
  color: #4C4B4B;
  font-size: 16px;
  font-weight: 400;
}
.footer .f-top .f-social-lst {
  margin: 35px 0 0;
  padding: 0;
  display: flex;
}
.footer .f-top .f-social-lst li {
  margin: 0 15px 0 0;
}
.footer .f-top .f-social-lst li i {
  font-size: 18px;
  color: #4C4B4B;
  transition: all ease-in-out 0.3s;
}
.footer .f-bttm {
  padding: 18px 0;
  text-align: center;
}
.footer .f-bttm .copyright {
  color: #4C4B4B;
  margin: 0;
}

.iframe-bx iframe {
  width: 100% !important;
  height: 600px !important;
}

.inr-ban {
  position: relative;
  height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inr-ban img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inr-ban .page-title {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0;
  position: absolute;
}

#canvas {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
}/*# sourceMappingURL=style.css.map */