
/* ----------------------------------------------------------------
     [ Start Basics ]
-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

.clearfix{
  clear: both;
}

:root {
  --fontprimary: 'Roboto', sans-serif;
  --fontsecondary: 'Poppins', sans-serif;

  --fontsizeh1: 60px;
  --fontsizeh2: 50px;
  --fontsizeh3: 30px;
  --fontsizep: 18px;

  --colorwhite: #f7f7f7;
  --colorlightgrey: #555555;
  --colordarkgrey: #111111;
  --coloraltgrey: #999999;
  --coloraccent: #b186f7;

  --bgwhite: #f7f7f7;
  --bglavander: #f2e9fd;
  --bgaltgrey: #444444;
  --bgverylightgrey: #6E808E;
  --bglightgrey: #555555;
  --bgdarkgrey: #111111;
  --bgaccent: #733177;

  --shadowlight: #6E808E;
  --shadowdark: #04090F;
}

html{
  min-height: 100%;
}

body {
  color: var(--colorlightgrey);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  background: var(--bglavander);
  font-family: var(--fontprimary);
  overflow-x: hidden !important;
  height: 100%;
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: var(--colorlightgrey);
}

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

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1{
  color: var(--colordarkgrey);
  font-family: var(--fontsecondary);
  font-size: var(--fontsizeh1);
  line-height: 120%;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}

h2{
  color: var(--colorlightgrey);
  font-family: var(--fontprimary);
  font-size: var(--fontsizeh2);
  line-height: 100%;
  font-weight: bold;
  display: inline-block;
}

h3{
  color: var(--colordarkgrey);
  font-family: var(--fontprimary);
  font-size: var(--fontsizeh3);
  line-height: 100%;
  display: inline-block;
}

.container{
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin-right: auto;
  margin-left: auto;
}

.pos-re {
  position: relative;
  padding: 30px 0px;
  padding-top:110px;
  /*min-height: 50vh;*/
}


/* ----------------------------------------------------------------
     [ End Basics ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Buttons ]
-----------------------------------------------------------------*/
.butn-container{
  position: relative;
}

.butn {
  font-size: 15px;
  font-weight: 300;
  padding: 9px 30px;
  background: var(--bgaccent);
  color: var(--colorwhite)!important;
  border: 1px solid;
  border-color: var(--bgaccent);
  border-radius: 0px;
  position: relative;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}


.butn span  {
  position: relative;
  z-index: 2;
  padding-top: 2px;
}

.butn:after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  z-index: 1;
  opacity: 1;
}

.butn:after{
  background: #b186f7;
}


.butn:hover:after{
  width: 100%;
}

.butn:hover + .dotbtn {
  opacity: 1;
}

#ctabtn{
  font-size: 30px;
  text-align:center;
  max-width:400px;
}

/* ----------------------------------------------------------------
     [ End Buttons ]
-----------------------------------------------------------------*/



/* ----------------------------------------------------------------
     [ Start Navbar ]
-----------------------------------------------------------------*/

.navbar {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  /*height: 100px;*/
  border: 0;
  z-index: 9;
  min-height: 50px;
  padding: 15px 0px;
  background: #10534f;
  -webkit-transition: all .5s;
  transition: all .5s;

}

.navbar.fold{
  border-top:6px solid;
  border-color: var(--coloraccent);
  padding:0px;
  height:1px;
}

.menu {
  padding: 0;
  list-style: none;
  text-align: center;
  padding-top:25px;
}

.menu li {
  display: inline-block;
}

.nav-container {
  position: fixed;
  right:250px;
}

.tab {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  color: var(--colorwhite);
  margin: 0px;
  -webkit-transition: all .5s;
  transition: all .5s;
  line-height: 100%;
  letter-spacing: 1px;
  display: block;
  padding: 0.5rem 1rem;
}
.active-tab {
  color: var(--coloraccent)!important;
  text-align: center!important;
}

.my-auto{
  margin-top: auto!important;
  margin-bottom: auto!important;
}

/* ----------------------------------------------------------------
     [ End Navbar ]
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
     [ scrollbar ]
-----------------------------------------------------------------*/

/* width */
::-webkit-scrollbar {
  width: 15px;
  background: var(--bgdarkgrey);
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  padding: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bgaccent);
  border-radius: 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bgwhite);
}



/*-------------------------------------------------------
          [ Overlay Effect Bg image ]
-------------------------------------------------------*/

[data-overlay-dark],
[data-overlay-color],
[data-overlay-light] {
  position: relative;
}

[data-overlay-dark] .container,
[data-overlay-color] .container,
[data-overlay-light] .container {
  position: relative;
  z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-color]:before,
[data-overlay-light]:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

[data-overlay-dark]:before {
  background:var(--bgdarkgrey);
}

[data-overlay-color]:before {
  background-color:var(--bgdarkgrey);
}


[data-overlay-dark="0"]:before,
[data-overlay-color="0"]:before,
[data-overlay-light="0"]:before {
  opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-color="1"]:before,
[data-overlay-light="1"]:before {
  opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-color="2"]:before,
[data-overlay-light="2"]:before {
  opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-color="3"]:before,
[data-overlay-light="3"]:before {
  opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-color="4"]:before,
[data-overlay-light="4"]:before {
  opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-color="5"]:before,
[data-overlay-light="5"]:before {
  opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-color="6"]:before,
[data-overlay-light="6"]:before {
  opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-color="7"]:before,
[data-overlay-light="7"]:before {
  opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-color="8"]:before,
[data-overlay-light="8"]:before {
  opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-color="9"]:before,
[data-overlay-light="9"]:before {
  opacity: 0.9;
}

[data-overlay-dark="95"]:before,
[data-overlay-color="95"]:before,
[data-overlay-light="95"]:before {
  opacity: 0.95;
}

[data-overlay-dark="10"]:before,
[data-overlay-color="10"]:before,
[data-overlay-light="10"]:before {
  opacity: 1;
}


/* ----------------------------------------------------------------
     [ Start Home ]
-----------------------------------------------------------------*/
.home {
  position: relative;
  background: url('../img/home_bg.png');
  background-size:cover;
}

.home h1{
  color:#6f0675;
  font-size: 86px;
  letter-spacing: 5px;
}

.home h2{
  color:#880a90;
  font-size: 50px;
  letter-spacing: 20px;
}
.home p{
  color:#fff;
}
.slogan-container{
  position: relative;
  padding:5vw;
  width: 100%;
}

.sloganimg-container{
  position: relative;
  padding-top:6vw;
  width: 100%;
}


/* ----------------------------------------------------------------
     [ End Home ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ Start Products ]
-----------------------------------------------------------------*/
.products h3{
  padding-bottom: 5px;
}

.copyright{
  font-weight: bold;
  margin:0 auto;
  text-align: center;
}

.copyright.pos-re{
  padding-top:30px;
}
.faq p span{
  font-weight: bold;
  font-size: 20px;
}



.collapsible {
  /*background-color: var(--bgblack);*/
  background: #174c58;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq .active, .collapsible:hover {
  background-color: #0043aa;
}

.collapsible:after {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faq .active:after {
  content: "\2212";
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: var(--bgprimary);
}
.content p{
  padding:10px 0px;
  font-size: 14px;
  font-weight: 200;
}



/* ----------------------------------------------------------------
     [ Start popup ]
-----------------------------------------------------------------*/
.Click-here {
  cursor: pointer;
}
.Click-here:hover{
  opacity: .8;
}

.custom-model-main-privacy, .custom-model-main-terms {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; /* z-index: 1050; */
  -webkit-overflow-scrolling: touch;
  outline: 0;
  opacity: 0;
  -webkit-transition: opacity 0.15s linear, z-index 0.15;
  -o-transition: opacity 0.15s linear, z-index 0.15;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}

.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 900px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
  display: block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}
.model-open .custom-model-inner {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  position: relative;
  z-index: 999;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-transition: background 0.15s linear;
  -o-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -45px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}


/* ==========================================================================
   Placeholders
   ========================================================================== */
::-webkit-input-placeholder {font-weight: normal;color:#777;}
::-moz-placeholder {font-weight: normal;color:#777;}
:-moz-placeholder {font-weight: normal;color:#777;}
input:-moz-placeholder{font-weight: normal;color:#777;}
:-ms-input-placeholder {font-weight: normal;color:#777;}
input:-ms-input-placeholder{font-weight: normal;color:#777;}
input.address:-ms-input-placeholder{font-weight: normal;color:#777;}



/* ----------------------------------------------------------------
     [ End Contact ]
-----------------------------------------------------------------*/


/* ----------------------------------------------------------------
     [ fancybox ]
-----------------------------------------------------------------*/

.fancybox-slide--iframe .fancybox-content{
  max-width: 1200px;
}

/*to hide share button on fancybox*/
.fancybox-toolbar{
  display: none!important;
}

/*to shape close button on fancybox*/
.fancybox-close-small{
  right:-11px!important;
}
.fancybox-close-small:after{
  color:white!important;
  background: grey!important;
  content: ' \2715';
  padding:16px;
}




/* ----------------------------------------------------------------
   [ Responsive ]
-----------------------------------------------------------------*/



@media screen and (min-width: 1200px) {

  p {
    font-size: 15px;
  }

}
@media screen and (max-width: 1200px) {
  .pos-re{
    padding-top:20px;
  }
  .navbar.container{
    position: relative;
    margin:0 auto;
  }
  .navbar{
    position: relative;
    margin:0 auto;
  }
  .nav-container {
    position: relative;
    right:0px;
  }

  .logo{
    margin:0 auto;
  }
}

@media screen and (max-width: 991px) {



}

@media screen and (max-width: 767px) {
  .home h1{
    color: #022e2b;
    font-size: 50px;
    letter-spacing: 0px;
  }
  .home h2{
    color:#6cfedb;
    font-size: 40px;
    letter-spacing: 0px;
  }
  .slogan-container {
    padding-top: 10px;
  }

  :root {
    --fontsizeh1: 40px;
    --fontsizeh2: 30px;
    --fontsizeh3: 20px;
  }

  .custom-model-inner{margin-top: 45px;}


}

@media screen and (min-width: 768px) {
  .custom-model-main-privacy:before , .custom-model-main-terms:before{
    content: "";
    display: inline-block;
    height: auto;
    vertical-align: middle;
    margin-right: -0px;
    height: 100%;
  }

}

@media screen and (max-width: 480px) {


}

@media only screen and (min-width: 992px) {

  p {
    font-size: 15px;
  }

}




