/* ************************************************************
:: Template Name: Wanroi - The most private way to browse the web.
:: Template URI: https: //wanroi.com/
:: Template Author Name: Md Sazzad Hossain
:: Template Author URI: sazzad362@gmail.com
:: Version: 1.0.0
:: Created: 28 February 2023
:: Updated: 28 February 2023
************************************************************ */
/*=================================*/
/*  @Loaded All Plugins
/*=================================*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
@import "../css/bootstrap.min.css";
@import "../css/font-awesome.min.css";
@import "../css/toastr.min.css";
:root {
  --font-pop: "Poppins", sans-serif;
  --font-open: "Open Sans", sans-serif;
  --h1-size: 5.625rem;
  --h1-size-small: 4rem;
  --h1-weight: 600;
  --h2-size: 4.375rem;
  --h2-size-small: 3rem;
  --h2-weight: 600;
  --h3-size: 1.5rem;
  --h3-weight: 600;
  --h4-size: 1.3rem;
  --h4-weight: 600;
  --h5-size: 1.2rem;
  --h5-weight: 600;
  --h6-size: 1rem;
  --h6-weight: 600;
  --p-size: 1.5rem;
  --p-size-small: 1rem;
  --p-weight: 400;
  --color-purple: #9D15F8;
  --color-pink: #FF057E;
  --color-dark: #0C0C29;
  --color-body: #fff;
  --color-white: #fff;
  --body-bg: #0C0C29;
  --gr-red: linear-gradient(90deg, var(--color-pink) 0%, var(--color-purple) 115.22%);
  --gr-sky: linear-gradient(90deg, var(--color-purple) 0%, #61A9ED 115.22%);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-open);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-purple);
  background-color: var(--body-bg);
  overflow-x: hidden;
}

section,
.section {
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-white);
  font-family: var(--font-pop);
  margin-bottom: 0;
}

h1 {
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  h1 {
    font-size: var(--h1-size-small);
  }
}

h2 {
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  h2 {
    font-size: var(--h2-size-small);
  }
}

h3 {
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: 1.5;
}

h4 {
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: 1.3;
}

h5 {
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
}

h6 {
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
}

p {
  font-size: var(--p-size);
  font-weight: var(--p-weight);
  line-height: 1.4;
  color: var(--color-body);
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  p {
    font-size: var(--p-size-small);
  }
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

a {
  color: var(--color-purple);
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
  color: var(--color-white);
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  width: 100%;
}

.title-text {
  background: -webkit-gradient(linear, left top, right top, from(#9D15F8), color-stop(115.22%, #61A9ED));
  background: linear-gradient(90deg, #9D15F8 0%, #61A9ED 115.22%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .title-text {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .title-text {
    font-size: 2rem;
  }
}

.text-pink {
  color: var(--color-pink);
}

.text-purple {
  color: var(--color-purple);
}

@media (min-width: 1920px) {
  .container {
    max-width: 1640px;
  }
}
.wan-btn-primary {
  background-image: var(--gr-red);
  border-radius: 28.5px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: var(--color-white);
  display: inline-block;
  font-size: 20px;
}
@media (max-width: 767px) {
  .wan-btn-primary {
    font-size: 16px;
  }
}

.wan-btn-primary:hover {
  background-position: right center;
  color: var(--color-white);
  text-decoration: none;
}

.wan-btn-primary-search {
  background-image: var(--gr-red);
  border-radius: 28.5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: var(--color-white);
  font-size: 20px;
  height: 60px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9;
  position: relative;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .wan-btn-primary-search {
    font-size: 16px;
    margin-right: 15px;
    height: 32px;
    width: 32px;
  }
}

#header {
  position: relative;
  padding-top: 25px;
}
@media (max-width: 820px) {
  #header {
    overflow-x: hidden;
  }
}
#header .navbar-collapse {
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}
#header .navbar-nav .nav-link {
  color: var(--color-white);
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 9px;
  font-size: 20px;
}
@media only screen and (min-width: 1920px) and (max-width: 4000px) {
  #header .hero_left_content {
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
}
@media (max-width: 820px) {
  #header .hero_left_content h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 820px) {
  #header .hero_right_img img {
    max-width: 300px;
    margin: 50px auto 0 auto;
    text-align: center;
    display: block;
  }
}
#header .hero_right_img_sigles {
  position: relative;
}
#header .hero_right_img_sigles .ele_lock img {
  z-index: 2;
  max-width: 600px;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .ele_lock img {
    max-width: 400px;
  }
}
#header .hero_right_img_sigles .elements img {
  max-width: 350px;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .elements img {
    max-width: 250px;
  }
}
#header .hero_right_img_sigles .elements img:nth-child(1) {
  top: -18%;
  right: 4%;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .elements img:nth-child(1) {
    top: -12%;
  }
}
#header .hero_right_img_sigles .elements img:nth-child(2) {
  top: -1%;
  right: -7%;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .elements img:nth-child(2) {
    top: 5%;
    right: -12%;
  }
}
#header .hero_right_img_sigles .elements img:nth-child(3) {
  top: 17%;
  right: -12%;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .elements img:nth-child(3) {
    top: 25%;
  }
}
#header .hero_right_img_sigles .elements img:nth-child(4) {
  top: 37%;
  right: -13%;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_right_img_sigles .elements img:nth-child(4) {
    top: 45%;
  }
}
#header .hero_right_img_sigles .elements img:nth-child(5) {
  top: 65%;
  right: -13%;
  z-index: 10;
}
#header .left_shadow {
  position: absolute;
  width: 592px;
  height: 450px;
  left: -460px;
  top: 61px;
  /* Pink Gradient */
  background: var(--gr-red);
  opacity: 0.5;
  -webkit-filter: blur(175px);
          filter: blur(175px);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 820px) {
  #header .left_shadow {
    display: none;
  }
}
#header .right_shadow {
  position: absolute;
  width: 592px;
  height: 450px;
  right: -316px;
  top: 100px;
  /* Main Gradient */
  background: var(--gr-sky);
  opacity: 0.5;
  -webkit-filter: blur(175px);
          filter: blur(175px);
  -webkit-transform: rotate(-89.43deg);
          transform: rotate(-89.43deg);
}
@media (max-width: 820px) {
  #header .right_shadow {
    display: none;
  }
}
#header .hero_content {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #header .hero_content {
    height: calc(100vh - 80px);
  }
}
@media (max-width: 820px) {
  #header .hero_content {
    height: initial;
  }
}
#header .hero_content .hero_texts {
  max-width: 856px;
}

#downloads {
  padding: 60px 0;
}
#downloads .app_icons {
  margin: 0 auto;
  text-align: center;
}
#downloads .app_icons ul li a {
  border: 1px solid rgba(255, 255, 255, 0.1098039216);
  margin-right: 25px;
  display: inline-block;
  border-radius: 50%;
  padding: 13px;
  margin-bottom: 10px;
}
#downloads .app_icons ul li a:hover {
  border: 1px solid rgba(190, 15, 208, 0.58);
}
#downloads .app_icons ul li a:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  #downloads .app_icons ul li a {
    margin-right: 15px;
  }
}
#downloads .app_icons ul li a img {
  max-width: 93px;
}
@media (max-width: 767px) {
  #downloads .app_icons ul li a img {
    max-width: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #downloads .app_icons ul li a img {
    max-width: 70px;
  }
}
#downloads .app_icons ul li a img:hover {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@-webkit-keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(1px, 0, 0);
            transform: translate3d(1px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(1px, 0, 0);
            transform: translate3d(1px, 0, 0);
  }
}

@keyframes shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(1px, 0, 0);
            transform: translate3d(1px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(1px, 0, 0);
            transform: translate3d(1px, 0, 0);
  }
}
.menu_icon {
  z-index: 1;
  position: relative;
}

.Offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: var(--color-dark);
  z-index: 99;
  top: 0;
  height: 100vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 20px 30px;
  display: none;
}
@media (max-width: 820px) {
  .Offcanvas_menu_wrapper {
    display: block;
  }
}
.Offcanvas_menu_wrapper .Offcavas_top {
  padding: 0 0 40px 0;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar {
  width: 3px;
  background-color: #F5F5F5;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.Offcanvas_menu_wrapper::-webkit-scrollbar-thumb {
  background-color: #dc282e;
}
.Offcanvas_menu_wrapper .site_logo img {
  max-width: 150px;
  margin: 0 auto;
  display: block;
}

.canvas_close {
  position: absolute;
  top: 13px;
  right: 13px;
}
.canvas_close a {
  width: 25px;
  height: 25px;
  display: block;
  text-align: center;
  border: 1px solid #f0f0f0;
  color: var(--color-white);
  border-radius: 50%;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #333;
  top: 0;
}

.off_canvars_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.Offcanvas_menu_wrapper.active {
  margin-left: 0;
}

.offcanvas_main_menu li.menu-item-has-children.menu-open > span.menu-expand {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.offcanvas_main_menu li ul li.menu-item-has-children.menu-open span.menu-expand {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.offcanvas_main_menu li {
  position: relative;
}
.offcanvas_main_menu li:last-child {
  margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}
.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  color: var(--color-white);
}
.offcanvas_main_menu li a:hover {
  color: var(--color-white);
}
.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.wan-btn-menu {
  background-image: var(--gr-red);
  border-radius: 28.5px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-size: 200% auto;
  color: var(--color-white);
  display: block;
  margin-top: 25px !important;
}
.wan-btn-menu a {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#why {
  padding: 200px 0 80px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #why {
    padding: 80px 0 0px 0;
  }
}
@media (max-width: 820px) {
  #why {
    padding: 40px 0 0 0;
  }
}
#why .why_left {
  position: relative;
}
#why .why_left .shild_ar {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#why .why_left img {
  max-width: 550px;
  z-index: 1;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #why .why_left img {
    max-width: 350px;
  }
}
@media (max-width: 820px) {
  #why .why_left img {
    margin: 35px auto 0 auto;
    display: block;
  }
}
@media (max-width: 820px) {
  #why .why_left img {
    max-width: 300px;
  }
}
#why .why_left img:hover {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
#why .why_left .why_left_shadow {
  position: absolute;
  width: 758px;
  height: 297px;
  left: -424px;
  top: 79px;
  background: var(--color-pink);
  opacity: 0.3;
  z-index: 0;
  -webkit-filter: blur(175px);
          filter: blur(175px);
}
@media (max-width: 820px) {
  #why .why_left .why_left_shadow {
    display: none;
  }
}

#advertising {
  padding: 120px 0;
}
@media (max-width: 767px) {
  #advertising {
    padding: 40px 0 40px 0;
  }
}
#advertising .advert_right {
  position: relative;
}
@media (max-width: 767px) {
  #advertising .advert_right {
    margin-top: 30px;
  }
}
#advertising .advert_right img.moving_position_animatin {
  -webkit-animation: moving_position_animatin 6s infinite linear;
          animation: moving_position_animatin 6s infinite linear;
}
#advertising .advert_right img.moving_object {
  -webkit-animation: moving_object 6s infinite linear;
          animation: moving_object 6s infinite linear;
}
#advertising .advert_right img:nth-child(2) {
  position: absolute;
  bottom: -50px;
  right: -50px;
  max-width: 450px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
@media (max-width: 767px) {
  #advertising .advert_right img:nth-child(2) {
    right: -15px;
    max-width: 250px;
  }
}

@-webkit-keyframes moving_object {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes moving_object {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes moving_position_animatin {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes moving_position_animatin {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#remove_ad_area {
  padding: 120px 0 120px 0;
}
@media (max-width: 820px) {
  #remove_ad_area {
    padding: 40px 0 40px 0;
  }
}
#remove_ad_area .why_left {
  position: relative;
}
#remove_ad_area .why_left img {
  max-width: 650px;
}
#remove_ad_area .why_left img.moving_object {
  -webkit-animation: moving_object 6s infinite linear;
          animation: moving_object 6s infinite linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #remove_ad_area .why_left img {
    max-width: 450px;
  }
}
@media (max-width: 820px) {
  #remove_ad_area .why_left img {
    margin-top: 180px;
  }
}
#remove_ad_area .why_left img.apv-vid {
  position: absolute;
  top: -150px;
  left: -40px;
  z-index: -1;
}
@media (max-width: 767px) {
  #remove_ad_area .why_left img.apv-vid {
    left: -13px;
  }
}
#remove_ad_area .why_left img.play_over {
  max-width: 130px;
  position: absolute;
  left: 30%;
  top: -40px;
  -webkit-animation: moving_position_animatin 6s infinite linear;
          animation: moving_position_animatin 6s infinite linear;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#remove_ad_area .why_texts {
  position: relative;
}
@media (min-width: 1200px) {
  #remove_ad_area .why_texts {
    -webkit-transform: translateY(-75px);
            transform: translateY(-75px);
  }
}
#remove_ad_area .why_texts .right_shadow {
  position: absolute;
  width: 350px;
  height: 600px;
  right: -400px;
  top: -200px;
  /* Pink */
  background: var(--color-pink);
  opacity: 0.2;
  -webkit-filter: blur(175px);
          filter: blur(175px);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 820px) {
  #remove_ad_area .why_texts .right_shadow {
    display: none;
  }
}

#faq {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) {
  #faq {
    padding: 40px 0;
  }
}
#faq .faq_main {
  margin: 80px auto 0 auto;
}
#faq .faq_main .accordion-item {
  margin-bottom: 35px;
}
#faq .accordion-body {
  background-color: transparent !important;
  color: var(--color-white);
  padding: 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1098039216);
  min-height: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #faq .accordion-body {
    min-height: 110px;
  }
}
@media (max-width: 767px) {
  #faq .accordion-body {
    min-height: auto;
  }
}
#faq .accordion-item {
  background-color: transparent !important;
  color: var(--color-white);
  border-radius: 0;
  border: 0;
  max-width: 750px;
}
#faq .accordion-button {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 15px 0 !important;
  color: #fff;
  font-size: var(--p-size);
}
@media (max-width: 767px) {
  #faq .accordion-button {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1680px) {
  #faq .accordion-button {
    min-height: 92px;
  }
}
#faq .accordion-button::after {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#faq .accordion-button:not(.collapsed) {
  background: var(--gr-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
#faq .footer_purple {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -145%;
  left: -22%;
  background: var(--color-purple);
  opacity: 0.3;
  -webkit-filter: blur(175px);
  filter: blur(175px);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#faq .footer_pink {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -145%;
  left: 22%;
  background: var(--color-pink);
  opacity: 0.3;
  -webkit-filter: blur(175px);
  filter: blur(175px);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

#contact {
  padding: 80px 0 200px 0;
}
#contact .contact_wrapper {
  text-align: center;
}
#contact .contact_form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: block;
  background-color: rgba(255, 255, 255, 0.1294117647);
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
}
#contact .contact_form label {
  color: #fff;
  margin: 10px 0;
}
#contact .contact_form .wan-btn-primary {
  display: block;
  width: 100%;
  border: 0;
}
#contact .contact_form .form-control {
  background-color: transparent !important;
  color: #fff !important;
}

.business_tool {
  margin-top: 40px;
}
.business_tool ul li {
  display: inline-block;
  margin-bottom: 25px;
}
.business_tool ul li a {
  padding-right: 15px;
}
.business_tool ul li a img {
  max-width: 100px;
  width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.5;
}
.business_tool ul li a img:hover {
  opacity: 1;
}

.select_code {
  z-index: 1;
  position: relative;
  margin-top: 25px;
}
.select_code label {
  color: #fff;
}
.select_code .form_input {
  margin-top: 25px;
}
.select_code .form-control {
  background-color: transparent !important;
  color: #fff !important;
}

.hide {
  display: none;
}

.download_content {
  max-width: 900px;
  width: 100%;
  margin: 120px auto;
  display: block;
  text-align: center;
}
@media (max-width: 820px) {
  .download_content h2 {
    font-size: 36px;
  }
}

#footer {
  background-color: #161635;
  padding: 15px 0;
}
#footer .logo img {
  width: 100%;
  max-width: 183px;
}
#footer .footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #footer .footer_menu {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer_menu .copy {
    margin-top: 10px;
  }
}
#footer .footer_menu .copy ul li {
  display: inline-block;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  #footer .footer_menu .copy ul li {
    padding: 0 2px;
  }
}
#footer .footer_menu .copy ul li:last-child {
  padding-right: 0;
}
#footer .footer_menu .copy ul li a {
  color: var(--color-white);
}

.modal-content {
  background: var(--color-dark);
}
.modal-content .modal-body {
  position: relative;
  overflow: hidden;
}
.modal-content .modal-body .shadow_gr {
  background: var(--color-purple);
  opacity: 0.3;
  -webkit-filter: blur(71px);
          filter: blur(71px);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  width: 38%;
  height: 90%;
  left: -59px;
  top: 20px;
}
.modal-content .modal-body h3 {
  position: relative;
  z-index: 1;
}

.close_download_modal {
  margin-left: 15px;
}

.loader_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1081;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: none;
}

.loader {
  height: 50px;
  text-align: center;
  font-size: 10px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1082;
}
.loader > div {
  height: 100%;
  width: 8px;
  display: inline-block;
  float: left;
  margin-left: 2px;
  -webkit-animation: delay 0.8s infinite ease-in-out;
  animation: delay 0.8s infinite ease-in-out;
}
.loader .bar1 {
  background-color: #754fa0;
}
.loader .bar2 {
  background-color: #09b7bf;
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.loader .bar3 {
  background-color: #90d36b;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.loader .bar4 {
  background-color: #f2d40d;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.loader .bar5 {
  background-color: #fcb12b;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.loader .bar6 {
  background-color: #ed1b72;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

@-webkit-keyframes delay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.05);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes delay {
  0%, 40%, 100% {
    transform: scaleY(0.05);
    -webkit-transform: scaleY(0.05);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/*# sourceMappingURL=style.css.map */