* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Loader  */
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #0a2425;
  z-index: 99999;
}
.loading.show {
  display: none;
}
.loader {
  position: relative;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(165deg);
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 0.25em;
  transform: translate(-50%, -50%);
}

.loader:before {
  animation: before8 2s infinite;
}

.loader:after {
  animation: after6 2s infinite;
}

@keyframes before8 {
  0% {
    width: 0.5em;
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }

  35% {
    width: 2.5em;
    box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75),
      0 0.5em rgba(111, 202, 220, 0.75);
  }

  70% {
    width: 0.5em;
    box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75),
      1em 0.5em rgba(111, 202, 220, 0.75);
  }

  100% {
    box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75),
      -1em 0.5em rgba(111, 202, 220, 0.75);
  }
}

@keyframes after6 {
  0% {
    height: 0.5em;
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }

  35% {
    height: 2.5em;
    box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75),
      -0.5em 0 rgba(233, 169, 32, 0.75);
  }

  70% {
    height: 0.5em;
    box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75),
      -0.5em 1em rgba(233, 169, 32, 0.75);
  }

  100% {
    box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75),
      -0.5em -1em rgba(233, 169, 32, 0.75);
  }
}

.loader {
  position: absolute;
  top: calc(50% - 1.25em);
  left: calc(50% - 1.25em);
}
/* Loader End */
.HoriLine {
  border: #000000 solid 1px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
/* Important */
/* custom scroll bar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f6d186;
}
::-webkit-scrollbar-thumb {
  background: #8cba51;
}
::selection {
  background: rgb(0, 123, 255, 0.3);
}
/* Important End */

/* Navbar */
.auto-type {
  color: #e40475;
}
.navbarCus {
  /* background-color: red; */
  width: 100%;
  padding: 15px 0 0 0;
  position: fixed;
  transition: all 0.3s ease;
  z-index: 999;
}
.emailTell {
  position: absolute;
  line-height: 0px;
  display: inline-flex;
  left: calc(100% - 31%);
  top: 15px;
  text-align: right;
  /* color: #e3caa5; */
  color: #06ff00;
  font-family: "NavbarFont";
}
.emailTell a {
  text-decoration: none;
  /* color: #e3caa5; */
  color: #06ff00;
}
.emailTell .email::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 33px;
  background: #06ff00;
  bottom: 0;
  margin: 0px 10px 5px 10px;
}
/* .emailTell.sti {
  display: none;
} */
.navbarCus.sticky {
  /* background-color: #1b1b1b; */
  background-color: #0a2425;
  padding: 15px 0px;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}
.content {
  padding: 15px 30px 0px 30px;
  margin: auto;
  max-width: 1250px;
}
@media (max-width: 1050px) {
  #et {
    display: none;
  }
  .navbarCus {
    padding: 0;
  }
  .content {
    padding: 0px auto 0px auto;
  }
  .navbarCus.sticky {
    padding: 0px;
  }
}
.navbarCus .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .content::before {
  position: absolute;
  content: 'E-mail :- pawannayak@gmail.com | Tell us';
  left: 70%;
  top: 5px;
} */
.navbarCus .menuList {
  display: inline-flex;
}
.menuList li {
  list-style: none;
}
.menuList li a {
  color: #fff;
  font-size: 23px;
  text-decoration: none;
  margin-left: 25px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  font-family: "NavbarFont";
  position: relative;
}
.menuList li a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s linear;
}
.menuList li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.banner {
  background: url("../img/lap/1.jpg") no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  box-shadow: inset 0 0 0 2000px #1c1c1c7a;
}
.icon {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
.menuList .cancel-btn {
  position: absolute;
  right: 30px;
  top: 20px;
}
@media (max-width: 868px) {
  .icon {
    display: block;
  }
  .icon.hide {
    display: none;
  }
  .navbarCus .menuList {
    position: fixed;
    background-color: #222;
    background-image: url(../img/2.png);
    box-shadow: inset 0 0 0 2000px #1c1c1c7a;
    background-size: cover;
    background-position: center;
    border-radius: 0px;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    display: block;
    padding: 40px 0;
    text-align: center;
    transition: all 0.3s ease;
  }
  .navbarCus.show .menuList {
    left: 0;
  }
  .navbarCus .menuList li {
    margin-top: 45px;
  }
  .navbarCus .menuList li a {
    font-size: 23px;
    margin-left: -100%;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .navbarCus.show .menuList li a {
    margin-left: 0;
  }
}
/* Navbar End */

/* Banner Content and Button */
.bannerContent {
  position: absolute;
  color: #fff;
  top: 24%;
  left: 7%;
}
@media screen and (max-width: 400px) {
  .bannerContent {
    top: 20%;
  }
}
.bannerContent .heading {
  text-align: left;
  font-family: "BannerHeading";
}
.bannerContent .subHeading {
  text-align: left;
  font-family: "BannerSubHeading";
  font-size: 23px;
}
/* Button */
.bannerContent button {
  position: relative;
  padding: 19px 36px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid #e7305b;
}

.bannerContent button span {
  position: relative;
  color: #fff;
  font-family: "BannerButton";
  letter-spacing: 8px;
  z-index: 1;
}

.bannerContent button .liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  height: 200px;
  background: #e7305b;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}

.bannerContent button .liquid::after,
.bannerContent button .liquid::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  background: #fff;
}

.bannerContent button .liquid::before {
  border-radius: 45%;
  background: rgba(20, 20, 20, 1);
  animation: animate 5s linear infinite;
}

.bannerContent button .liquid::after {
  border-radius: 40%;
  background: rgba(20, 20, 20, 0.5);
  animation: animate 10s linear infinite;
}

.bannerContent button:hover .liquid {
  top: -120px;
}

@keyframes animate {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
/* @media (max-width: 868px) {
  .bannerContent.hide {
    display: none;
  }
} */
/* Banner Content and Button End */

/* Footer Desk */
.footerDesk {
  /* height: 100vh; */
  background-color: #0a2425;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='258' height='258' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23444437' stroke-width='1.1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%234F5545'%3E%3Ccircle cx='769' cy='229' r='12'/%3E%3Ccircle cx='539' cy='269' r='12'/%3E%3Ccircle cx='603' cy='493' r='12'/%3E%3Ccircle cx='731' cy='737' r='12'/%3E%3Ccircle cx='520' cy='660' r='12'/%3E%3Ccircle cx='309' cy='538' r='12'/%3E%3Ccircle cx='295' cy='764' r='12'/%3E%3Ccircle cx='40' cy='599' r='12'/%3E%3Ccircle cx='102' cy='382' r='12'/%3E%3Ccircle cx='127' cy='80' r='12'/%3E%3Ccircle cx='370' cy='105' r='12'/%3E%3Ccircle cx='578' cy='42' r='12'/%3E%3Ccircle cx='237' cy='261' r='12'/%3E%3Ccircle cx='390' cy='382' r='12'/%3E%3C/g%3E%3C/svg%3E");
}

/* Transition */
.plusSmall {
  position: absolute;
  display: block;
  opacity: 0.5;
  padding: 450px 0px 0px 250px;
  z-index: 2;
}
.plusBig {
  position: absolute;
  padding: 400px 0px 0px 700px;
  opacity: 0.5;
  z-index: 2;
}
.squareBig {
  position: absolute;
  padding: 500px 0px 0px 800px;
  opacity: 0.3;
  z-index: 2;
}
.squareSmall {
  position: absolute;
  padding: 200px 0px 0px 550px;
  opacity: 0.3;
  z-index: 2;
}
.circle {
  position: absolute;
  padding: 100px 0px 0px 800px;
  opacity: 1;
  z-index: 2;
}
.ratating {
  -webkit-animation: spin 5s linear infinite;
  -moz-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Transition End */

/* left Box */
.leftBox {
  /* border: 2px solid white; */
  color: #fff;
  padding: 15px 0px 0px 0px;
  z-index: 3;
}
.footerLogo {
  position: relative;
  left: 20%;
}
.footerLogo img {
  width: 250px;
}
.footerContent {
  padding: 10px 0px 0px 15px;
  text-align: left;
}

.footerFollow {
  padding: 97px 0px 30px 15px;
  text-align: left;
  z-index: 3;
  /* display: flex; */
  /* gap: 28px; */
}
.footerFollow a {
  padding: 0px 50px 0px 0px;
  z-index: 3;
  color: #fff;
  text-align: center;
}
.iconFooter {
  font-size: 25px;
  border-radius: 11px;
  box-shadow: 5px 5px 11px #040e0f, -5px -5px 11px #103a3b;
  transition: box-shadow 1s;
}
.iconFooter:hover {
  border-radius: 11px;
  box-shadow: -5px -5px 11px #040e0f, 5px 5px 11px #103a3b;
}

.footerHoriLine {
  border-bottom: #ffffff solid 1px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-top: 0px;
  padding-top: 0px;
}
.footerComTag {
  padding: 30px 0px 15px 15px;
  text-align: left;
  line-height: 2px;
}
.fa-facebook-f {
  padding: 15px 19px;
}
.fa-twitter {
  padding: 15px;
}
.fa-google-plus-g {
  padding: 15px 12px;
}
/* .iconInsta {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: transparent;
  background-clip: text;
} */
.fa-instagram {
  padding: 15px 17px;
}
.fa-whatsapp {
  padding: 15px 17px;
}
.fa-phone {
  padding: 15px 17px;
}
/* Left Box End */

/* Right Box */
.rightBox {
  /* border: 2px solid white; */
  color: #fff;
  margin: 15px 0px 0px 0px;
  z-index: 3;
}
.rightBoxQuickLink a {
  color: #ffffff;
  text-decoration: none;
  z-index: 3;
}
/* form */
.form-control {
  background: transparent;
  color: #ffffff;
  border: none;
  z-index: 3;
}
.form-control:focus {
  color: #fff;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
  z-index: 3;
}
.form-control::placeholder {
  color: #fff;
  opacity: 0.7;
}
/* Button */
.footerButton {
  padding: 0px 5px 0px 0px;
  z-index: 3;
}
.btn-floating {
  border-radius: 5px 15px;
}
/* .btn-outline-footer {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-footer:hover {
  color: #022140;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
} */
.btn-outline-footer {
  /* font-size: 20px; */
  background: transparent;
  color: white;
  padding: 0.5em 0.1rem;
  /* padding-left: 0.9em; */
  display: flex;
  align-items: center;
  border-radius: 5px 20px;
  overflow: hidden;
  transition: all 0.2s;
  /* border: solid #fff 2px; */
  border: none;
}
/* .btn-outline-footer:hover {
  border: none;
} */
.btn-outline-footer span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.btn-outline-footer svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.btn-outline-footer:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-outline-footer:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.btn-outline-footer:hover span {
  transform: translateX(5em);
}

.btn-outline-footer:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* Button */
/* Footer Desk End */

/* Footer Mob  */
.footerMob {
  background-color: #0a2425;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='258' height='258' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23444437' stroke-width='1.1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%234F5545'%3E%3Ccircle cx='769' cy='229' r='12'/%3E%3Ccircle cx='539' cy='269' r='12'/%3E%3Ccircle cx='603' cy='493' r='12'/%3E%3Ccircle cx='731' cy='737' r='12'/%3E%3Ccircle cx='520' cy='660' r='12'/%3E%3Ccircle cx='309' cy='538' r='12'/%3E%3Ccircle cx='295' cy='764' r='12'/%3E%3Ccircle cx='40' cy='599' r='12'/%3E%3Ccircle cx='102' cy='382' r='12'/%3E%3Ccircle cx='127' cy='80' r='12'/%3E%3Ccircle cx='370' cy='105' r='12'/%3E%3Ccircle cx='578' cy='42' r='12'/%3E%3Ccircle cx='237' cy='261' r='12'/%3E%3Ccircle cx='390' cy='382' r='12'/%3E%3C/g%3E%3C/svg%3E");
  display: none;
  color: #fff;
}

.mobileMenuBox {
  padding: 20px 0px 0px 0px;
}
.footerContentMobileMenu {
  padding: 10px 0px 0px 0px;
  text-align: left;
}
.footerFollowMobileMenu {
  padding: 0px 0px 30px 0px;
  text-align: left;
}
.footerFollowMobileMenu a {
  padding: 0px 30px 0px 0px;
  color: #fff;
}
@media (max-width: 436px) {
  .footerFollowMobileMenu a {
    padding: 0px 14px 0px 0px;
  }
}
@media (max-width: 390px) {
  .footerFollowMobileMenu a {
    padding: 0px 5px 0px 0px;
  }
}
@media (max-width: 344px) {
  .footerFollowMobileMenu a {
    padding: 0px 0px 0px 0px;
  }
}
/* .footerFollowMobileMenu a:focus,
.footerFollowMobileMenu a:hover {
  color: yellow;
} */
.footerComTagMobileMenu {
  padding: 30px 0px 15px 0px;
  text-align: left;
  line-height: 2px;
}

/* Font */
.footerHeading {
  font-family: "FooterHeadingFont";
  font-size: 23px;
  color: #fffda2;
}
.footerSubHeading {
  font-family: "FooterSubHeadingFont";
  font-size: 18px;
}
/* Mobile Menu */
.plusSmallMob {
  position: absolute;
  z-index: 999;
  display: block;
  opacity: 0.5;
  padding: 300px 0px 0px 150px;
  z-index: 2;
}
.plusBigMob {
  position: absolute;
  padding: 400px 0px 0px 50px;
  opacity: 0.5;
  z-index: 2;
}
.squareBigMob {
  position: absolute;
  padding: 150px 0px 0px 0px;
  opacity: 0.3;
  z-index: 2;
}
.squareSmallMob {
  position: absolute;
  padding: 450px 0px 0px 190px;
  opacity: 0.3;
  z-index: 2;
}
.circleMob {
  position: absolute;
  padding: 375px 0px 0px 180px;
  opacity: 1;
  z-index: 2;
}
/* Footer Mob End */

@media (max-width: 868px) {
  .footerDesk {
    display: none;
  }
  .footerMob {
    display: block;
  }
}

/* whatsapp or call  desktop*/
.iconCall {
  font-size: 25px;
  border-radius: 11px;
  background-color: #0a2425;
  box-shadow: 5px 5px 11px #040e0f, -5px -5px 11px #103a3b;
  transition: box-shadow 1s;
}
.iconCall:hover {
  border-radius: 11px;
  box-shadow: -5px -5px 11px #040e0f, 5px 5px 11px #103a3b;
}
.callUs a {
  position: absolute;
  bottom: 10px;
  left: 22px;
  color: #fff;
}
/* ------------------------ */
.iconWhats {
  font-size: 25px;
  border-radius: 11px;
  background: #25d366;
  box-shadow: 5px 5px 11px #0f5429, -5px -5px 11px #3bffa3;
  transition: box-shadow 1s;
}
.iconWhats:hover {
  border-radius: 11px;
  background: #25d366;
  box-shadow: -5px -5px 11px #0f5429, 5px 5px 11px #3bffa3;
}
.whatsappMe a {
  position: absolute;
  bottom: 10px;
  right: 22px;
  color: #fff;
}
/* whatsapp or call desktop end */

/* whatsapp or call mobile */
.mobCallWhats .mobCallUs {
  /* background-color: #0a2425; */
  background-color: #19262b;
  text-align: center;
}
.mobCallWhats .mobWhatsappMe {
  /* background-color: #25d366; */
  background-color: #45b11a;
  text-align: center;
}
.mobCallWhats a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
}
/* whatsappor call Mobile end */
.mobCallWhats {
  display: none;
}
@media (max-width: 863px) {
  .deskCallWhats {
    display: none;
  }
  .mobCallWhats {
    display: block;
  }
}
