:root{
  --primary:#2293FB;
  --gradiant: linear-gradient(90.57deg, #2293FB 7.88%, #0256A3 94.83%);
  --white:#fff;
  --gray:#ADAAA7;
}
body {
  font-family: "Poppins", sans-serif;
  background: #1F1F1F;
  color: var(--white);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

p{
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}
section {
  padding: 100px 0;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: var(--primary);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--primary);
}

.back-to-top i {
  font-size: 28px;
  color: var(--primary);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary);
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



.btn-part{
  padding: 20px 60px;
  background: var(--gradiant);
  font-weight: 600;
  display: inline-block;
  font-size: 18px;
  border-radius: 100px;
  color: var(--white);
}
.info-section {
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo {
  justify-content: center;
  display: flex;
  margin-bottom: 7%;
}
.logo a {
  color: #fff;
  font-size: 40px;
  font-family: raleway;
  font-weight: 600;
  text-align: center;
}
.logo a span{
  color: var(--primary);
}
.info-part {
  text-align: center;
  /* padding-bottom: 60px; */
}

.info-part h2 {
  font-size: 65px;
  font-weight: 700;
  line-height: 85px;
  margin-bottom: 20px;
}
.info-part h2 span{
  color: var(--primary);
}
.info-part p{
  margin-bottom: 60px;
  font-size: 20px;
  font-weight: 300;
}
.social-section {
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-part {
  text-align: center;
  /* padding-bottom: 60px; */
}
.social-part h4 {
  font-size: 28px;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 35px;
}
.social-part h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 20px;
}
.social-part h2 span{
  color: var(--primary);
}
.social-part p{
  margin-bottom: 0px;
  font-size: 20px;
  font-weight: 300;
}
.service-head h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 60px;
}

.service-head {
  text-align: center;
}
.service-head span{
  color: var(--primary);
}
.service-list {
  text-align: center;
  padding: 60px 30px;
  border: 1px solid #343434;
  border-radius: 20px;
  height: 100%;
}
.service-list img {
  height: 75px;
  margin-bottom: 40px;
}
.service-list h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}
.service-list p {
  font-size: 16px;
  font-weight: 300;
}
.row-flex {
  display: flex;
  flex-wrap: wrap;
}
.glowing-circle {
  width: auto;
  height: auto;
  -webkit-animation: glowing 1s ease-in-out infinite alternate;
  -moz-animation: glowing 1s ease-in-out infinite alternate;
  animation: glowing 1s ease-in-out infinite alternate;
}
@-webkit-keyframes glowing {
  from {
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #f0f, 0 0 40px #0ff, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  to {
    box-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
.video {
  display: flex;
  justify-content: center;
}
.video iframe{
  width: 80%;
}
.video-info {
  text-align: center;
}
.video-info h2 {
  font-size: 45px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 15px;
  line-height: 70px;
}
.video-info p {
  font-size: 18px;
  font-weight: 300;
}
.process {
  text-align: center;
  margin-bottom: 50px;
}
.process h2 {
  font-size: 48px;
  font-weight: 700;
}

.process h2 span{
  color: var(--primary);
}
.process p {
  font-size: 20px;
  font-weight: 300;
}
.process-list {
  background: #000;
  border-radius: 20px;
}
.process-info{
  padding: 32px;
}
.process-info h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}
.process-info p{
  margin-bottom: 15px;
  font-size: 18px;
}
.row.space {
  width: 85%;
  margin-inline: auto;
}
.work-head {
  text-align: center;
  margin-bottom: 55px;
}
.work-head h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
}
.work-head h2 span{
  color: var(--primary);
}
.work-list {
  position: relative;
  margin-bottom: 30px;
}
.work-list iframe {
  height: 525px;
  width: 100%;
  border-radius: 15px;
}

.play {
  position: absolute;
  content: '';
  top: 50%;
  left: 45%;
}
.play img {
  height: 50px;
}

.list {
  background: #202429;
  border-radius: 20px;
  padding: 35px 0;
  margin-top: 80px;
}
.list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.list ul li {
  display: inline-flex;
  width: 33%;
  justify-content: center;
}
.list ul li a {
  font-size: 26px;
  font-weight: 500;
  line-height: 70px;
  color: #fff;
  text-align: center;
}
.quote {
  background: #000;
  border-radius: 20px;
  text-align: center;
  padding: 60px 160px;
  margin: 100px 0 70px;
  margin-bottom: 0;
}
.quote img {
  height: 30px;
  margin-bottom: 40px;
}
.quote h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 40px;
}
.name h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.package-head{
  text-align: center;
}
.package-head h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 70px;
}
.package-head h2 span{
  color: var(--primary);
}
.package-list {
  border: 1px solid #343434;
  border-radius: 20px;
  padding: 35px;
}
.package-info, .package-price {
  border-bottom: 1px solid #343434;
  margin-bottom: 20px;
}
.package-info h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
}
.package-info p {
  margin-bottom: 30px;
}
.package-price h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 75px;
}
.package-price p {
  margin-bottom: 30px;
}
.package-include h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 20px;
}
.package-include ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.package-include ul li {
  display: flex;
  margin-bottom: 15px;
}
.package-include ul li i {
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
}
.package-include ul li p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.book {
  padding-top: 30px;
  text-align: center;
}
.book a h4 {
  color: #fff;
  margin-top: 50px;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 400;
}
.bg-part {
  background: url(../img/bg.png);
  background-size: initial;
  background-repeat: no-repeat;
  height: 400px;
  padding: 80px;
}
.custom-info {
  text-align: center;
  margin-bottom: 40px;
}
.custom-info h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
}
.custom-info h2 span{
  color: var(--primary);
}
.own-package {
  display: flex;
  align-items: center;
  justify-content: center;
}
.own-package a {
  margin-right: 30px;
}
a.btn-white {
  padding: 20px 48px;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid #fff;
  margin-left: 30px;
  margin-right: 0;
}
.edited p {
  margin-bottom: 60px;
}
.edited {
  text-align: center;
}
.edited h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 70px;
}
.footer-imfo h4 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 35px;
}
.footer-imfo h4 span{
  color: var(--primary);
}
.footer-imfo ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-imfo ul li {
  display: inline-block;
}
.footer-imfo ul li a{
  font-size: 21px;
  color: var(--white);
  margin-right: 25px;
}
.footer-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-list ul li {
  display: inline-block;
  width: 48%;
  margin-bottom: 20px;
}
.footer-list ul li a{
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}
.copyright {
  border-top: 1px solid #fff;
  padding-top: 20px;
  margin-top: 35px;
}
section.footer-section {
  padding-bottom: 40px;
}
.pack{
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 45px !important;
}
.video iframe {
  width: 100%;
  height: 350px;
}
.work-list iframe {
  height: 340px;
  width: 100%;
  border-radius: 15px;
}
.process h2 {
font-size: 36px !important;
  font-weight: 700;
}
.process-info h2 {
  font-size: 22px !important;
}
.space{
  width: 100% !important;
  margin-inline: auto;
}
.pack{
  width: 100% !important;
  margin-inline: auto;
}
.service-head h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 60px;
}
h3 {
  font-size: 30px !important;
  font-weight: 700;
  line-height: 50px !important;
}
.service-list {
  height: auto;
  margin-bottom: 30px;
}
p {
  font-size: 16px !important;
  font-weight: 300;
}
.process-list {
  margin-bottom: 30px;
}
section.work-section .row .col-md-4 {
  width: 50%;
}
.play {
  position: absolute;
  content: '';
  top: 45%;
  left: 35%;
}
.play img {
  height: 40px;
}
.list ul li {
  display: inline-flex;
  width: 48%;
  justify-content: center;
}
.list ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 70px;
  color: #fff;
  text-align: center;
}
.quote {
  background: #000;
  border-radius: 20px;
  text-align: center;
  padding: 30px 30px;
  margin: 100px 0 70px;
}
.package-list {
  border: 1px solid #343434;
  border-radius: 20px;
  padding: 45px 40px;
  margin-bottom: 30px;
}
.bg-part {
  height: auto;
  padding: 50px 30px;
}
.own-package {
  display: inline-block;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.own-package a {
  margin-right: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.own-package a.btn-white {
  padding: 20px 48px;
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  border-radius: 100px;
  color: var(--white);
  border: 1px solid #fff;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  margin-top: 20px;
  display: block;
}
.footer-imfo {
  margin-bottom: 30px;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
}