
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Background color*/
  --bg-black: #090b3c;
  --bg-white: #fff;
  --bg-dark-gray: #4c535d;
  --bg-light-white: #fcfcfc;
  --bg-light-2: #f2f7fa;
  --bg-dark-green: #0e9d80;
  --bg-features-1: #fff6d6;
  --bg-features-2: #ebdcf9;
  --bg-features-3: #ddf5fc;
  --bg-features-4: #dcf5e4;
  --bg-features-5: #f8e4e1;
  --bg-features-6: #fbffd4;


  /* Text color */
  --text-black: #000000;
  --text-white: #ffffff;
  --text-dark-gray: #4c535d;
  --text-light-2: #798089;
  --text-light-3: #5e5e72;
  --text-light-4: #A0A0A0;
  --text-dark-green: #12c4a0;
  --text-orange: #ff5d2a;
  --text-yellow: #ffc100;

}

html {
  scrollbar-color: var(--text-orange) var(--bg-white);
}


body {
  font-family: 'Poppins',
    sans-serif;
  background-color: var(--bg-white);

}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
  background: var(--text-orange);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-orange);
}


.learn-more-btn {
  background: var(--bg-black);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white) !important;
  padding: 12px 29px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid var(--bg-black);
  display: inline-block;
  text-decoration: none;
  transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.btn-extra-header {
  color: var(--text-dark-gray) !important;
  background: transparent;
  border: 2px solid var(--text-dark-gray);
}

section h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--text-black);

}

/* ====================================================== */
/* =================== Navbar section =================== */
/* ====================================================== */
.header_wrapper .navbar {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s li;
  -moz-transition: all 0.2s li;
  -ms-transition: all 0.2s li;
  -o-transition: all 0.2s li;
}

.navbar-brand img {
  max-width: 210px;
  height: 70px;
}

.header_wrapper .menu-navbar-nav {
  width: 70%;
  display: flex;
  justify-content: center;
}

.header_wrapper .nav-item {
  margin: 0 10px;
}

.header_wrapper .nav-item .nav-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark-gray);
  line-height: 1;
}

.header_wrapper .nav-item .nav-link.active {
  color: var(--text-dark-green);
}

.header_scrolled {
  position: fixed;
  margin-top: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 85px;
  background: var(--bg-white);
  box-shadow: 0 4px 6px rgba(12, 0, 46, .65);
  -webkit-box-shadow: 0 4px 6px rgba(12, 0, 46, .65);
}

.header_scrolled .navbar-brand img {
  width: 190px;
  height: 70px;
  animation: animated .1s ease-in-out;
  -webkit-animation: animated .1s ease-in-out;
}

@keyframes animated {
  0% {
    width: 210px;
  }

  50% {
    width: 200px;
  }

  100% {
    width: 190px;
  }

}

.header_scrolled .nav-item .nav-link {
  font-size: 17px;
}

/* ====================================================== */
/* ================= Navbar section exit ================ */
/* ====================================================== */

/* ====================================================== */
/* =================== Banner section =================== */
/* ====================================================== */
.banner_wrapper {
  display: flex;
  width: 100%;
  padding: 100px 0 125px;
  background: url('../images/bg.png') no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
}

.banner_wrapper .banner-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5rem !important;
  margin-bottom: 15px;
  color: var(--text-light-3);
}

.banner_wrapper .banner-title {
  font-weight: 800;
  font-size: 50px;
  text-transform: capitalize;
  line-height: 1.15;
  color: var(--text-black);
  margin-bottom: 25px;
}

.banner_wrapper .banner-title span {
  color: var(--text-dark-green);
}

.banner_wrapper .banner-title-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 450px;
  color: var(--text-light-2);
}

.banner_wrapper .learn-more-btn-section {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-top: 20px;
}

.banner_wrapper .header-img-section img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
  -webkit-animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
  }

}

/* ====================================================== */
/* ================= Banner section exit ================ */
/* ====================================================== */

/* ====================================================== */
/* =================== Client section =================== */
/* ====================================================== */
.client_wrapper {
  background: var(--bg-light-2);
  padding: 80px 0 50px;
}

.client-slider-section h2 {
  font-size: 25px;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 40px;
  color: var(--text-light-3);
  font-weight: 700;
}

.client-slider-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.client-slider-section .swiper-slide img {
  width: auto !important;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
}

/* ====================================================== */
/* ================= Client section exit ================ */
/* ====================================================== */

/* ====================================================== */
/* ==================== About section =================== */
/* ====================================================== */
.about_wrapper {
  padding: 100px 0 0;
}

.about_wrapper .about_number {
  font-weight: 800;
  font-size: 24px;
  padding: 4px 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 25px;
  max-width: 44px;
  color: var(--text-white);
  background: var(--bg-dark-green);
}

.about_wrapper .about_title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  max-width: 1000px;
  margin-bottom: 25px;
  color: var(--text-black);
}

.about_wrapper .about_text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  color: var(--text-light-2);
}

.about_wrapper .innovate {
  background: var(--bg-light-2);
  padding: 80px 0;
}

.about_wrapper .projects {
  padding: 30px 0;

}

.about_wrapper .projects h2 {
  color: var(--text-orange);
  font-weight: 800;
  font-size: 50px;
  line-height: 1.5;
  margin-bottom: 0;

}

.about_wrapper .projects p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

/* ====================================================== */
/* ================= About section exit ================= */
/* ====================================================== */

/* ====================================================== */
/* ================== Features section ================== */
/* ====================================================== */
.features_wrapper {
  padding: 100px 0 0;
  background: var(--bg-light-2);
  overflow-x: hidden;

}

.features_wrapper .icon {
  position: relative;
}

.features_wrapper .features_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-2);
}

.features_wrapper .features_title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--text-black);
}

.features_wrapper h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-black);
}

.features_wrapper p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-light-2);
}

.features_wrapper .ft-1 {
  background: var(--bg-features-1);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-1::before {
  content: url("../images/consultancy.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

.features_wrapper .ft-2 {
  background: var(--bg-features-2);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-2::before {
  content: url("../images/solutions.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

.features_wrapper .ft-3 {
  background: var(--bg-features-3);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-3::before {
  content: url("../images/simple.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

.features_wrapper .ft-4 {
  background: var(--bg-features-4);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-4::before {
  content: url("../images/deadline.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

.features_wrapper .ft-5 {
  background: var(--bg-features-5);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-5::before {
  content: url("../images/data.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

.features_wrapper .ft-6 {
  background: var(--bg-features-6);
  padding: 40px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.features_wrapper .ft-6::before {
  content: url("../images/flexible.png");
  position: absolute;
  top: -30px;
  z-index: 10;
}

/* ====================================================== */
/* ================ Features section exit =============== */
/* ====================================================== */


/* ====================================================== */
/* =================== Pricing section ================== */
/* ====================================================== */
.pricing_wrapper {
  padding: 100px 0 0;
}

.pricing_wrapper .pricing_subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}

.pricing_wrapper .pricing_title {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-black);
  line-height: 1.25;
  margin-bottom: 25px;
}

.pricing_wrapper .pricing_card {
  background: var(--bg-white);
  box-shadow: 0 2px 20px rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 45px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.pricing_wrapper .pricing_card:hover {
  box-shadow: 0 2px 40px rgb(0 0 0 / 30%);
  z-index: 5;
  cursor: pointer;
}

.pricing_wrapper .pricing_period {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--text-light-2);
}

.pricing_wrapper .pricing_card img {
  max-width: 75%;
}

.pricing_wrapper .pricing_rate {
  font-size: 33px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text-black);
  line-height: 1.25;
  margin-bottom: 0;

}

.pricing_wrapper .pricing_text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-black);
  margin-bottom: 10px;
}

.pricing_wrapper .pricing_all_plan {
  text-align: center;
  width: 100%;
  display: flex;
  margin: 15px 0;
}

.pricing_wrapper .pricing_all_plan ul {
  width: 100%;
  list-style: none;
  padding-inline-start: 0;
}

.pricing_wrapper .pricing_all_plan li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 5px;
  color: var(--text-dark-gray);
}

.pricing_wrapper .pricing_all_plan li strike {
  color: var(--text-light-4);
}

.pricing_wrapper .learn-more-btn {
  background: var(--bg-dark-green);
  border-color: var(--bg-dark-green);
}

.pricing_wrapper .featured {
  background: var(--bg-white);
  border: 5px solid var(--text-black);
  box-shadow: 0 2px 40px rgb(0 0 0 / 5%);
  padding-top: 80px;
  padding-bottom: 80px;

}

.pricing_wrapper .pricing_ribbon {
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 20;
}

.pricing_wrapper .pricing_ribbon span {
  width: 225px;
  padding: 5px 0;
  overflow: hidden;
  position: absolute;
  background: var(--text-black);
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
  text-transform: uppercase;
  text-align: center;
  right: -45px;
  top: 30px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.pricing_wrapper .learn-more-btn.btn-featured {
  background: var(--bg-black);
  border-color: var(--bg-black);

}

.pricing_wrapper .featured .pricing_rate {
  font-size: 40px;
}

.free_trail {
  background: var(--bg-light-2);
  padding: 80px 0;
  margin-top: 50px;
}

.free_trail .free_title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 0;
  color: var(--text-black);
}

.free_trail .learn-more-btn {
  background: var(--bg-black);
  border-color: var(--bg-black);
}

.free_trail .learn-more-btn .fa {
  font-size: 22px;
  margin-right: 5px;
  color: var(--text-yellow);
  vertical-align: bottom;
}

/* ====================================================== */
/* ================= Pricing section end ================ */
/* ====================================================== */


/* ====================================================== */
/* =================== Review section =================== */
/* ====================================================== */
.testimonials_wrapper {
  padding: 100px 0;
}

.testimonials_wrapper .testimonials_subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}

.testimonials_wrapper .testimonials_title {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--text-black);
}

.testimonials_wrapper .testimonials_card {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 50px;
  background: var(--bg-white);
  box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
}

.testimonials_wrapper .testimonials_card h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-black);
}

.testimonials_wrapper .testimonials_role {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 25px;
  color: var(--text-dark-green);
}

.testimonials_wrapper .testimonials_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}


/* ====================================================== */
/* ================= Review section end ================= */
/* ====================================================== */

/* ====================================================== */
/* ==================== Brand section =================== */
/* ====================================================== */
.brand_wrapper {
  padding: 100px 0;
  background: var(--bg-light-2);
}

.brand_wrapper .brands_subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}

.brand_wrapper .showcase_card img {
  width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 45px 25px;
  box-shadow: 0 5px 40px rgb(0 0 0 / 15%);
  background: var(--text-white);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.brand_wrapper .showcase_card img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  position: relative;
  z-index: 2;
}

/* ====================================================== */
/* ================== Brand section end ================= */
/* ====================================================== */

/* ====================================================== */
/* ===================== Faq section ==================== */
/* ====================================================== */
.faqs_wrapper {
  padding: 100px 0 0;
}

.faqs_wrapper .faqs_subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
  color: var(--text-light-3);
}

.faqs_wrapper .accordion-button:hover,
.faqs_wrapper .accordion-button:focus {
  box-shadow: none;
  color: var(--text-dark-green);
}


.faqs_wrapper .accordion-item {
  border: none;
}

.faqs_wrapper .accordion-button {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-black);
  background: var(--bg-white);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0 0 15px 0;
  border-bottom: 1px solid var(--text-light-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* .faqs_wrapper .accordion-button::after {
  content: "\002B";
  font-family: "Font Awesome ";
  display: inline-block;
  background-image: none;
}

.faqs_wrapper .accordion-button:not(.collapsed)::after {
  content: "\2212";
  font-family: "Font Awesome ";
  display: inline-block;
  background-image: none;
  font-weight: 800;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
} */

.faqs_wrapper .accordion-body {
  color: var(--text-black);
  font-size: 15px;
  margin: 0 0 20px 0;
  padding-bottom: 25px;
  line-height: 1.5;
}

/* ====================================================== */
/* =================== Faq section end ================== */
/* ====================================================== */

/* ====================================================== */
/* =================== Footer section =================== */
/* ====================================================== */
.footer_wrappere {
  padding: 100px 0 0;
  background-color: var(--bg-black);
  background-image: url(../images/bg_footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text-white);

}

.footer_wrappere .footer_logo img {
  max-width: 30%;
}

.footer_wrappere .footer_title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-white);
  line-height: 1.5;

}

.footer_wrappere .footer_text,
.footer_wrappere .footer_text a {
  margin-top: 30px;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.footer_wrappere .footer_social_media {
  padding-right: 30px;
  color: var(--text-white);
  font-size: 20px;
}

.footer_wrappere .footer_credits {
  color: var(--text-white);
  border-top: 1px solid var(--text-white);
  padding: 30px 0;
}

.footer_wrappere .footer_credits a {
  color: var(--text-yellow);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* ====================================================== */
/* ================= Footer section end ================= */
/* ====================================================== */

/* ====================================================== */
/* ===================== Back to top ==================== */
/* ====================================================== */
.back_to_top {
  background: var(--text-yellow);
  border: 1px solid transparent;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 0;
  right: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s e;
  -moz-transition: all 0.4s e;
  -ms-transition: all 0.4s e;
  -o-transition: all 0.4s e;
  display: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 12;
  color: var(--text-white);
  margin: 0 auto;
}

.back_to_top.open {
  display: inline-block;
}

.back_to_top:hover {
  background: var(--bg-dark-green);
  border-color: var(--text-white);
}

.back_to_top i {
  position: relative;
  animation: backToTop .3s infinite;
  -webkit-animation: backToTop 1s infinite;
  transition: all .5s linear infinite;
  -webkit-transition: all .5s linear infinite;
  -moz-transition: all .5s linear infinite;
  -ms-transition: all .5s linear infinite;
  -o-transition: all .5s linear infinite;
  font-size: 12px;
  line-height: 12px;
  left: 3px;
}

@keyframes backToTop {
  0% {
    top: .8rem;
  }

  100% {
    top: 0;
  }
}

/* ====================================================== */
/* =================== Back to top end ================== */
/* ====================================================== */
/* ====================================================== */
/* ====================== Preloader ===================== */
/* ====================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eff0f4;
  z-index: 15000;
}

.preloader.hide {
  display: none;
}

.loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border: 3px solid transparent;
  border-radius: 50%;
  border-top-color: #f75842;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-color: #00bf8e;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #f75842;
  animation: spin 1.5s linear infinite;
  -webkit-animation: spin 1.5s linear infinite;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* ====================================================== */
/* ==================== Preloader end =================== */
/* ====================================================== */
