/*-----------------------------------------------------------------------------------

    Template Name: ElitKit
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	  02. Header
    03. Hero
	  04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800");
body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #121212; }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

img {
  max-width: 100%; }

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none; }

a:focus,
a:hover {
  text-decoration: none; }

i,
span,
a {
  display: inline-block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #121212;
  margin: 0px; }

h1 {
  font-size: 48px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 18px; }

h6 {
  font-size: 16px; }

ul, ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none; }

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #121212;
  margin: 0px; }

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%; }

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 0 32px;
  font-size: 16px;
  line-height: 48px;
  color: #923C9B;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  text-transform: uppercase; }
  @media (max-width: 767px) {
    .main-btn {
      font-size: 14px;
      padding: 0 20px;
      line-height: 40px; } }

/*===== All Section Title Style =====*/
.section-title .title ,.section-title .title p{
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
  color: #121212; 

}
#feature .section-title .title{

	font-size: 35px;
    font-weight: 600;
    line-height: 55px;
    background: #914099;
    color: white;
    width: 315px;
    border-radius: 20px;
}

  @media (max-width: 767px) {
    .section-title .title {
      font-size: 30px;
      line-height: 40px; } }

.section-title .text {
  font-size: 16px;
  line-height: 24px;
  color: #6c6c6c;
  margin-top: 24px; }

/*===========================
    2.HEADER css 
===========================*/
/*===== NAVBAR ONE =====*/
.navgition {
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s; }
  .navgition.navgition-transparent {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99; }
  .navgition.sticky {
    position: fixed;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  .navgition .navbar {
    position: relative;
    padding: 0; }
.nav-item.contact {
    position: relative
}
.nav-item.contact .show-on-hover{
    position: absolute;
    bottom: -230px;
    background: white;
    width: 247.5px;
    min-height: 200px;
    padding: 20px;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    border-radius: 7px;
    z-index: 99;
    font-size: 14px; 
    font-weight: 100; 
    color: #923C9B
}

.nav-item.contact .show-on-hover small {
	font-size: 100%;
}


.nav-item.contact:hover > .show-on-hover, .nav-item.contact .show-on-hover:hover {
    opacity: 1;
    pointer-events:visible
}
.nav-item.contact .show-on-hover .contact-hr {
    border-color: #923C9B; margin-top: 0.5rem !important; margin-bottom: 0.5rem !important;
}
    .navgition .navbar .navbar-toggler .toggler-icon {
      width: 30px;
      height: 2px;
      background-color: #121212;
      margin: 5px 0;
      display: block;
      position: relative;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 7px; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
      opacity: 0; }
    .navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg);
      top: -7px; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navgition .navbar .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 0;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); } }
    @media (max-width: 767px) {
      .navgition .navbar .navbar-collapse {
        position: absolute;
        top: 116%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 8;
        padding: 10px 0;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); } }
    .navgition .navbar .navbar-nav .nav-item {
      margin: 0 16px;
      position: relative; }
      .navgition .navbar .navbar-nav .nav-item a {
        font-size: 15px;
        line-height: 24px;
        font-weight: 700;
        padding: 26px 0;
        color: #121212;
        text-transform: uppercase;
        position: relative;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s;
        }
        @media only screen and (min-width: 768px) and (max-width: 991px) {
          .navgition .navbar .navbar-nav .nav-item a {
            padding: 10px 0;
            display: block; } }
        @media (max-width: 767px) {
          .navgition .navbar .navbar-nav .nav-item a {
            padding: 10px 0;
            display: block; } }
        .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
          position: absolute;
          content: '';
          width: 8px;
          height: 4px;
          background-color: #923C9B;
          left: 50%;
          margin: 0 2px;
          bottom: 14px;
          opacity: 0;
          -webkit-transition: all 0.3s ease-out 0s;
          -moz-transition: all 0.3s ease-out 0s;
          -ms-transition: all 0.3s ease-out 0s;
          -o-transition: all 0.3s ease-out 0s;
          transition: all 0.3s ease-out 0s; }
          @media only screen and (min-width: 768px) and (max-width: 991px) {
            .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
              display: none; } }
          @media (max-width: 767px) {
            .navgition .navbar .navbar-nav .nav-item a::before, .navgition .navbar .navbar-nav .nav-item a::after {
              display: none; } }
        .navgition .navbar .navbar-nav .nav-item a::after {
          left: auto;
          right: 50%; }
      .navgition .navbar .navbar-nav .nav-item.active > a, .navgition .navbar .navbar-nav .nav-item:hover > a {
        color: #923C9B; }
        .navgition .navbar .navbar-nav .nav-item.active > a::before, .navgition .navbar .navbar-nav .nav-item.active > a::after, .navgition .navbar .navbar-nav .nav-item:hover > a::before, .navgition .navbar .navbar-nav .nav-item:hover > a::after {
          opacity: 1; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navgition .navbar .navbar-social {
        position: absolute;
        right: 70px;
        top: 7px; } }
    @media (max-width: 767px) {
      .navgition .navbar .navbar-social {
        position: absolute;
        right: 60px;
        top: 7px; } }
    .navgition .navbar .navbar-social span {
      font-size: 16px;
      font-weight: 700;
      color: #6c6c6c;
      line-height: 24px;
      margin-right: 14px; }
    .navgition .navbar .navbar-social ul li {
      display: inline-block;
      margin-right: 5px; }
      .navgition .navbar .navbar-social ul li a {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: 700;
        color: #6c6c6c;
        border-radius: 4px;
        -webkit-transition: all 0.3s ease-out 0s;
        -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
        -o-transition: all 0.3s ease-out 0s;
        transition: all 0.3s ease-out 0s; }
        .navgition .navbar .navbar-social ul li a:hover {
          color: #923C9B; }
		    
	.navgition .navbar .auth-nav .nav-item{
		margin: 0px 6px;
	}
	
	.navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
		border: 1px solid #923C9B;
		padding: 6px 20px;
		border-radius: 50px;
	} 
	
	.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
		border: 1px solid #923C9B;
		background: #923C9B;
		color: #FFF;
		padding: 6px 20px;
		border-radius: 50px;
	} 
	
	.navgition .navbar .navbar-nav .nav-item a.sing-in-btn::before, .navgition .navbar .navbar-nav .nav-item a.sing-in-btn::after{
		content: '';
		background: #FFF;
		display: none;
	}
	
	.navgition .navbar .navbar-nav .nav-item a.sing-up-btn::before, .navgition .navbar .navbar-nav .nav-item a.sing-up-btn::after{
		content: '';
		background: #FFF;
		display: none;
	}
.logo{
   max-height: 60px;
}
.header-hero {
  height: 850px;
  position: relative; 
}
.page-hero{
  height: 400px;
  position: relative; 
}  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-hero {
      height: 700px; } }
  @media (max-width: 767px) {
    .header-hero {
      height: 712px; } }
	  
  .header-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: -o-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12)); }
  .header-hero .header-content {
    padding-top: 195px;
    position: relative;
    z-index: 9; }
	
  .page-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: -o-linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12));
    background: linear-gradient(rgba(232, 237, 255, 0.9), rgba(239, 254, 255, 0.9) 50%, rgba(254, 255, 244, 0.3) 68%, rgba(255, 255, 255, 0.12)); }
  .page-hero .header-content {
    padding-top: 195px;
    position: relative;
    z-index: 9; }
	
  .page-hero .header-content .header-title {
    font-size: 44px;
    line-height: 55px;
    color: #121212;
    font-weight: 600;}
	
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .header-hero .header-content {
            padding-top: 130px; 
	    } 
		
	    .navgition .navbar .auth-nav .nav-item{
			margin: 0px 16px;
		}
		
		.navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
			border: 0;
			padding: 10px 0;
			border-radius: 50px;
		} 
		
		.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
			border: 0;
			padding: 10px 0;
			border-radius: 0px;
			background: #FFF;
			color: #121212;
		}	
	}
    @media (max-width: 767px) {
	  .navgition .navbar .navbar-nav .nav-item a.sing-in-btn{
			border: 0;
			padding: 10px 12px;
			border-radius: 50px;
		} 

    #select_language{
      background: transparent;
      color: #000;
      border: none;
      font-weight: 700;
      padding-left: 20px;
    }

		
		.navgition .navbar .navbar-nav .nav-item a.sing-up-btn{
			border: 0;
			padding: 10px 12px;
			border-radius: 0px;
			background: #FFF;
			color: #121212;
		}	
      .header-hero .header-content {
        padding-top: 120px; } }
    .header-hero .header-content .header-title {
      font-size: 44px;
      line-height: 55px;
      color: #121212;
      font-weight: 600; }
      @media (max-width: 767px) {
        .header-hero .header-content .header-title {
          font-size: 30px;
          line-height: 40px; } }
    .header-hero .header-content .text {
      font-size: 20px;
      line-height: 32px;
      color: #6c6c6c;
      margin-top: 16px; }
      @media (max-width: 767px) {
        .header-hero .header-content .text {
          font-size: 16px;
          line-height: 24px; } }
    .header-hero .header-content .header-btn {
      margin-top: 22px; }
      .header-hero .header-content .header-btn li {
        display: inline-block;
        margin: 10px 10px 0; }
        .header-hero .header-content .header-btn li a.main-btn {
          border-radius: 50px;
          overflow: hidden;
          background-color: #fff;
          -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          border: 0;
          line-height: 50px; }
          .header-hero .header-content .header-btn li a.main-btn i {
            margin-left: 5px; }
          .header-hero .header-content .header-btn li a.main-btn.btn-one {
            color: #fff; }
            .header-hero .header-content .header-btn li a.main-btn.btn-one::before {
              position: absolute;
              content: '';
              width: 100%;
              height: 100%;
              top: 0;
              left: 0;
              background-image: -webkit-linear-gradient(left, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);;
              background-image: -o-linear-gradient(left, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);;
              background-image: linear-gradient(to right, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);;
              background-position: right center;
              z-index: -1;
              -webkit-transition: all 0.3s ease-out 0s;
              -moz-transition: all 0.3s ease-out 0s;
              -ms-transition: all 0.3s ease-out 0s;
              -o-transition: all 0.3s ease-out 0s;
              transition: all 0.3s ease-out 0s; }
            .header-hero .header-content .header-btn li a.main-btn.btn-one:hover::before {
              background-image: -webkit-linear-gradient(right, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);;
              background-image: -o-linear-gradient(right, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);
              background-image: linear-gradient(to left, rgba(2,0,36,1) 0%, rgba(146,60,155,1) 0%, rgba(216,182,222,1) 100%);;
              background-position: left center;
              -webkit-transition: all none ease-out 0s;
              -moz-transition: all none ease-out 0s;
              -ms-transition: all none ease-out 0s;
              -o-transition: all none ease-out 0s;
              transition: all none ease-out 0s; }
          .header-hero .header-content .header-btn li a.main-btn.btn-two:hover {
            -webkit-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
            -moz-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16); }
  .header-hero .header-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; }
    .header-hero .header-shape img {
      width: 100%; }
 

	.whatsapp_image ,.info_image{
	position: relative;
	display: block;
	width: 38px
	}
	.whatsapp_image span,.info_image span{
	    position: absolute;
    	top: 40px;
    	left: -115px;
    	background: white;
    	padding: 10px;
    	border-radius: 5px;
    	box-shadow: 0 0 3px rgb(0 0 0 / 30%);
    	width: 300px;
    	word-break: break-all;
      display: none;
      pointer-events: none; 
     	color: rgba(0, 0, 0, 0.7);
	    font-size: 14px;
      line-height: 1.3rem;
      z-index: 10000;
}
.info_image{
  font-size: 20px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  color: #923C9B;
}
.info_image span{
  top: 47px;
  width: 250px;

}
.whatsapp_image:hover span,.info_image:hover span {
  display: block;
 
	pointer-events: visible;	
}

/*===========================
      3.featureS css 
===========================*/
.features-area {
  padding-top: 40px;
  padding-bottom: 120px;
  position: relative; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-area {
      padding-top: 20px;
      padding-bottom: 100px; } }
  @media (max-width: 767px) {
    .features-area {
      padding-top: 30px;
      padding-bottom: 80px; } }

.feature-box{
	/* background: #FFF; */
    /* padding: 30px 15px; */
/* padding-bottom: 40px; */
    margin-bottom: 30px;
    /* box-shadow: 1px 3px 5px #e9e9e9; */
/*    border: 1px solid #007bff;*/
/* box-shadow: 0 0 3px rgb(0 0 0 / 25%); */
    /* border-radius: 5px; */
    position: relative;
}
.feature-box .features-icon {
  position: absolute;
  /* top: -36px; */
  top: -46px;

  background: #fff;
  left: 50%;
  transform: translateX(-50%);
   border-radius: 50%;
}
.feature-box i{
       
        /* padding: 17px; */
         /* font-size: 36px; */
 



        border: 1px solid #ddd;
        padding: auto;
        padding: 20px;
        border-radius: 50%;
        font-size: 42px;
        color: #923c9b;
}
.feature-box img{
  border: 1px solid #ddd;
  padding: auto;
  padding: 17px;
  border-radius: 50%;
  font-size: 36px;
  color: #923C9B;
}
#feature .card{
  transition: all ease 0.3s;

  border-radius: 12px;
  /* box-shadow: 0 0 5px rgb(0 0 0 / 20%); */
  /* box-shadow: 0 0 5px rgb(0 0 0 / 16%); */
  ;

}
#feature  p.card-text{
  font-size: 15px;
   line-height: 24px;
   color: #6c6c6c;
   text-align: justify;
   word-break: break-all;

}
#feature .features-title{
  color: #191919;
  text-align: center;

}
#feature .card:hover{
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.103);
 
}
.features-content .features-content {
  padding-left: 15px; margin-top: 20px;}
  @media (max-width: 767px) {
    .features-content .features-content {
      padding-left: 0;
      padding-top: 15px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-content .features-content {
      padding-left: 15px;
      padding-top: 0; } }
  .features-content .features-content .features-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #121212; }
  .features-content .features-content .text {
    font-size: 14px;
    line-height: 20px;
    color: #121212;
    margin-top: 8px; }

.features-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .features-image {
      width: 34%; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .features-image {
      position: relative;
      width: 720px;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .info_image span{
      left: unset !important;

    right: 0px !important;
    }
    .features-image {
      position: relative;
      width: 100%;
      padding-left: 15px;
      padding-right: 16px;
      margin: 0 auto; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .features-image {
      position: relative;
      width: 540px;
      margin: 0 auto; } }
  .features-image .image {
    max-width: 580px;
    width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .features-image .image {
        margin: 0 auto;
        padding-top: 50px; } }
    @media (max-width: 767px) {
      .features-image .image {
        margin: 0 auto;
        padding-top: 50px; } }
    .features-image .image img {
      width: 100%; }

/*===========================
      4.PRICING css 
===========================*/
.pricing-area {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #FFFFFF; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .pricing-area {
      padding-top: 50px;
      padding-bottom: 20px;} }
  @media (max-width: 767px) {
    .pricing-area {
      padding-top: 40px;
      padding-bottom: 20px; } }

.single-pricing {
/*
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
*/
  padding: 24px 20px 50px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
   border: 1px solid #ddd;}
  .single-pricing .pricing-header .sub-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    color: #121212;
    position: relative;
    padding-bottom: 8px; }
    .single-pricing .pricing-header .sub-title::before {
      position: absolute;
      content: '';
      width: 72px;
      height: 4px;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #2bdbdc;
      margin: 0 auto; }
     #btn-yearly, #btn-monthly {
         border: 2px solid #923C9B;
            transition: 0.3s;
                box-shadow: none;
        }

.full-color-class {
    background-color: #923C9B;
    color: white;
}
.outline-class {
    background-color: white;
    color: #923C9B;
    
}
.outline-class:hover {
    background-color: #923C9B;
    color: white;
}
.full-color-class:hover {
	color: white
}

.single-pricing.pro {
    transform: scale(1.08);
     box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
  .single-pricing .pricing-header .price {
    display: block;
    font-size: 64px;
    font-weight: 600;
    line-height: 80px;
    margin-top: 32px;
    color: #121212; }
    @media only screen and (min-width: 992px) and (max-width: 1200px) {
      .single-pricing .pricing-header .price {
        font-size: 50px;
        margin-top: 16px; } }
    @media (max-width: 767px) {
      .single-pricing .pricing-header .price {
        font-size: 50px;
        margin-top: 16px; } }
    @media only screen and (min-width: 576px) and (max-width: 767px) {
      .single-pricing .pricing-header .price {
        font-size: 64px;
        margin-top: 32px; } }
  .single-pricing .pricing-header .year {
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    color: #6c6c6c;
    margin-top: 3px; }
  .single-pricing .pricing-list {
    margin-top: 40px; }
    .single-pricing .pricing-list ul li {
      font-size: 16px;
      line-height: 24px;
      color: #121212;
      margin-top: 16px; }
      @media only screen and (min-width: 992px) and (max-width: 1200px) {
        .single-pricing .pricing-list ul li {
          font-size: 14px;
          margin-top: 12px; }
          .navbar-brand img.logo {    width: 220px;}
}
      @media (max-width: 767px) {
        .single-pricing .pricing-list ul li {
          font-size: 14px;
          margin-top: 12px; } }
      @media only screen and (min-width: 576px) and (max-width: 767px) {
        .single-pricing .pricing-list ul li {
          font-size: 16px;
          margin-top: 16px; } }
      .single-pricing .pricing-list ul li i {
        color: #923C9B;
        margin-right: 8px; }
      .single-pricing .pricing-list ul li i.lni-cross-circle { 
         color: red;
      }
  .single-pricing .pricing-btn {
    margin-top: 42px; }
    .single-pricing .pricing-btn .main-btn {
      background-color: #923C9B;
      border-radius: 50px;
      color: #fff;
      border-color: #923C9B; }
      .single-pricing .pricing-btn .main-btn:hover {
              background-color: white; 
         color: #923C9B;
        border: 2px solid #923C9B;}
  .single-pricing .buttom-shape {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 101%; }

.single-pricing.pro .pricing-header .sub-title::before {
  right: auto;
  left: 0;
  background-color: #923C9B; }

.single-pricing.pro .pricing-baloon {
  position: absolute;
  top: 0;
  right: 5px;
  width: 122px; }

.single-pricing.enterprise .pricing-header .sub-title::before {
  right: 0;
  left: auto;
  background-color: #923C9B; }

.single-pricing.enterprise .pricing-flower {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 144px; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .single-pricing.enterprise .pricing-flower {
      width: 110px; } }
  @media (max-width: 767px) {
    .single-pricing.enterprise .pricing-flower {
      width: 110px; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-pricing.enterprise .pricing-flower {
      width: 144px; } }
  .single-pricing.enterprise .pricing-flower img {
    width: 100%; }
  .yearly-package{
    display: none;
  }


/*===========================
    5.CALL TO ACTION css 
===========================*/
.call-to-action {
  background-color: #923C9B;
  position: relative; }

.call-action-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .call-action-image {
      position: relative;
      width: 100%; } }
  @media (max-width: 767px) {
    .call-action-image {
      position: relative;
      width: 100%; } }
  .call-action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

.call-action-content {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 230px;
  padding-bottom: 236px; }
  @media (max-width: 767px) {
    .call-action-content {
      padding-top: 80px;
      padding-bottom: 80px; } }
  .call-action-content .call-title {
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    line-height: 55px; }
    @media (max-width: 767px) {
      .call-action-content .call-title {
        font-size: 28px;
        line-height: 38px; } }
  .call-action-content .text {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin-top: 16px; }
    @media (max-width: 767px) {
      .call-action-content .text {
        font-size: 14px; } }
  .call-action-content .call-newsletter {
    max-width: 410px;
    position: relative;
    margin: 24px auto 0; }
    .call-action-content .call-newsletter i {
      font-size: 26px;
      color: #923C9B;
      position: absolute;
      left: 18px;
      top: 15px; }
    .call-action-content .call-newsletter input {
      width: 100%;
      height: 56px;
      border: 0;
      border-radius: 50px;
      background-color: #fff;
      padding-left: 60px;
      padding-right: 30px; }
      .call-action-content .call-newsletter input::placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .call-action-content .call-newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .call-action-content .call-newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .call-action-content .call-newsletter input::-webkit-input-placeholder {
        opacity: 1;
        color: #6c6c6c; }
    .call-action-content .call-newsletter button {
      border: 0;
      border-radius: 50px;
      height: 48px;
      padding: 0 32px;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      cursor: pointer;
      position: absolute;
      top: 4px;
      right: 4px;
      background-color: #923C9B;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      @media (max-width: 767px) {
        .call-action-content .call-newsletter button {
          position: relative;
          right: auto;
          margin-top: 15px;
          background-color: #fff;
          color: #923C9B; } }
      .call-action-content .call-newsletter button:hover {
        background-color: white;
        color: #fff; }

/*===========================
    6.CALL TO ACTION css 
===========================*/
.contact-area {
  padding-top: 40px;
  padding-bottom: 120px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-area {
      padding-top: 0;
      padding-bottom: 100px; } }
  @media (max-width: 767px) {
    .contact-area {
      padding-top: 0px;
      padding-bottom: 80px; } }

.form-group {
  margin: 0; }

p.form-message.success,
p.form-message.error {
  font-size: 16px;
  color: #121212;
  background: #cbced1;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px; }

p.form-message.error {
  color: #f00; }

.contact-form .single-form {
  margin-top: 30px; }
  .contact-form .single-form textarea,
  .contact-form .single-form input {
    width: 100%;
    height: 56px;
    border: 1px solid #cbced1;
    border-radius: 5px;
    padding: 0 25px;
    background-color: #fff;
    font-size: 16px; }
    .contact-form .single-form textarea::placeholder,
    .contact-form .single-form input::placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .contact-form .single-form textarea::-moz-placeholder,
    .contact-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .contact-form .single-form textarea::-moz-placeholder,
    .contact-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .contact-form .single-form textarea::-webkit-input-placeholder,
    .contact-form .single-form input::-webkit-input-placeholder {
      opacity: 1;
      color: #a4a4a4; }
  .contact-form .single-form textarea {
    height: 160px;
    padding-top: 15px;
    resize: none; }
  .contact-form .single-form .main-btn {
    border-radius: 50px;
    background-color: #923C9B;
    color: #fff; }
    .contact-form .single-form .main-btn:hover {
      background-color: white; 
         color: #923C9B;
        border: 2px solid #923C9B;
}

.list-unstyled li {
  font-size: 13px;
  margin-left: 2px;
  margin-top: 5px;
  color: #f00; }

/*===========================
       7.FOOTER css 
===========================*/
.footer-area {
  background-color: #52105B; }
  
.footer-logo img{
	max-height: 60px;
}
.footer-logo .title ,.social-links .title{
  font-size: 23px;    font-weight: 500;

}
.footer-widget {
  padding-top: 50px;
  padding-bottom: 30px; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-widget {
      padding-top: 70px;
      padding-bottom: 100px; } }
  @media (max-width: 767px) {
    .footer-widget {
      padding-top: 50px;
      padding-bottom: 80px; } }

.footer-logo-support .footer-logo .social {
  /* margin-left: 35px; */
 }
  .footer-logo-support .footer-logo .social li {
    display: inline-block;
    margin-right: 10px; }
    .footer-logo-support .footer-logo .social li a {
      font-size: 24px;
      color: white;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer-logo-support .footer-logo .social li a:hover {
        color: #923C9B; }

.footer-logo-support .footer-support span {
  font-size: 20px;
  line-height: 25px;
  color: #6c6c6c;
  font-weight: 600; }
  @media (max-width: 767px) {
    .footer-logo-support .footer-support span {
      display: block; } }
  .footer-logo-support .footer-support span.mail {
    margin-left: 32px; }
    @media (max-width: 767px) {
      .footer-logo-support .footer-support span.mail {
        margin-left: 0; } }

.footer-title {
  font-size: 18px;
font-weight: 700;
  line-height: 18px;
  color: #cccccc; }

.footer-link {
  margin-top: 32px; }
  .footer-link ul {
    margin-top: 8px; }
    .footer-link ul li a {
      font-size: 16px;
      line-height: 24px;
      color: white;
      margin-top: 16px;
      font-weight: 500;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      .footer-link ul li a:hover {
        color: #923C9B; }
footer .line {
    background: white;
    margin: 40px 0;
}
footer .social-links .icon {
 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-right: 20px
}
footer .second-footer div {
    font-size: 14px;color: white
}
.footer-newsletter {
  margin-top: 32px; }
  .footer-newsletter .newsletter {
    margin-top: 24px;
    position: relative; }
    .footer-newsletter .newsletter input {
      width: 100%;
      height: 44px;
      border-radius: 50px;
      padding: 0 24px;
      border: 0;
/*      background-color: rgba(33, 33, 33, 0.12);*/
        background-color: white;
      font-weight: 500; }
.footer-newsletter p {color: white}
      .footer-newsletter .newsletter input::placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-moz-placeholder {
        opacity: 1;
        color: #6c6c6c; }
      .footer-newsletter .newsletter input::-webkit-input-placeholder {
        opacity: 1;
        color: #6c6c6c; }
    .footer-newsletter .newsletter button {
      position: absolute;
      top: 0;
      right: 0;
      height: 44px;
      width: 44px;
      border-top-right-radius: 50px;
      border-bottom-right-radius: 50px;
      border: 0;
      font-size: 20px;
      color: #121212;
      cursor: pointer;
      background: none; }
  .footer-newsletter .text {
    margin-top: 16px; }

.footer-copyright {
  background-color: #2b354f; }

.copyright {
  padding: 23px 0; }
  .copyright .text {
    color: #fff; }

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #923C9B;
  bottom: 10px;
  right: 20px;
  z-index: 999;
  color: #fff;
  font-size: 20px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  display: none; transition: 0.3s}
  .back-to-top:hover {
          background-color: white; 
         color: #923C9B;
        border: 2px solid #923C9B;}
	
/*===========================
       8.Auth Form css 
===========================*/

.auth-form .single-form {
  margin-top: 30px; }
  .auth-form .single-form textarea,
  .auth-form .single-form input, 
  .auth-form .single-form select {
    width: 100%;
    height: 56px;
    border: 1px solid #cbced1;
    border-radius: 5px;
    padding: 0 25px;
    background-color: #fff;
    font-size: 16px; }
    .auth-form .single-form textarea::placeholder,
    .auth-form .single-form input::placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-moz-placeholder,
    .auth-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-moz-placeholder,
    .auth-form .single-form input::-moz-placeholder {
      opacity: 1;
      color: #a4a4a4; }
    .auth-form .single-form textarea::-webkit-input-placeholder,
    .auth-form .single-form input::-webkit-input-placeholder {
      opacity: 1;
      color: #a4a4a4; }
  .auth-form .single-form textarea {
    height: 160px;
    padding-top: 15px;
    resize: none; }
  .auth-form .single-form .main-btn {
    border-radius: 50px;
    background-color: #923C9B;
    color: #fff; }
    .auth-form .single-form .main-btn:hover {
      background-color: white; color: #923C9B; border: 2px solid #923C9B}
	  
  .auth-form .single-form .red-btn {
    border-radius: 50px;
    background-color: #F44336;
    color: #fff; }
    .auth-form .single-form .red-btn:hover {
      background-color: #F44336; }
  .with-errors{color: red;}
  
/*===========================
       9.Page css 
===========================*/

.page p{
	font-size: 16px;
    line-height: 26px;
    color: #6c6c6c;
    margin-top: 24px;
    text-align: justify;
    word-break: break-all;

}

.contact-form .single-form .main-btn:disabled  {
    background-color: #dfdfdf;
    cursor: no-drop;
}

.faq-box{
   margin-bottom: 15px;
}
.faq-box > .card-header a{

  color: #923c9b;
  font-weight: 500;
}
.faq-box > .card-header{
    background-color: #FFF;
    height: auto;
    font-size: 17px;
 
}

/** General Sections **/
.general-area {
	padding-top: 120px;
	padding-bottom: 120px;
    margin: 50px;
	position: relative; 
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .general-area {
      padding-top: 100px;
      padding-bottom: 100px; 
	} 
}
@media (max-width: 767px) {
    .general-area {
      padding-top: 80px;
      padding-bottom: 80px; 
	} 
    .overlay .navbar-toggler{margin-top:75px !important} 
    .faq-box > .card-header{
      padding: 10px;
    }
    .faq-box > .card-header a {
    
      font-size: 15px;
  }
  .faq-box p {
    
    font-size: 14px;
}
}

/** About Us **/
.about-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0; }
  @media only screen and (min-width: 992px) and (max-width: 1200px) {
    .about-image {
      width: 34%; } }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-image {
      position: relative;
      width: 720px;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .about-image {
      position: relative;
      width: 100%;
      padding-left: 15px;
      padding-right: 16px;
      margin: 0 auto; } }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .about-image {
      position: relative;
      width: 540px;
        margin: 0 auto; }}
  .about-image .image {
    max-width: 580px;
    width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .about-image .image {
        margin: 0 auto;
        padding-top: 50px; } }
    @media (max-width: 767px) {
      .about-image .image {
        margin: 0 auto;
        padding-top: 50px; }  .contact-form .single-form input {height: 40px}
        .contact-form .single-form textarea {height: 125px} .overlay .box {margin-top: 10px !important} }
    .about-image .image img {
      width: 100%; }
 
@media(max-width: 380px){
    .navbar-brand img.logo {
        width: 160px
    }

}

/** language Switcher **/
#select_language{
	padding: 6px 20px;
	border-radius: 50px;
   
}



 
/* enable absolute positioning */
form.get-qoute .form-container .d-flex {
	padding: 0 15px;
}
form.get-qoute input {
	outline: none;
	width: 100%;
	height: 35px;
	background: #ffffff;
	border: 1px solid rgba(145, 64, 153, 0.2);
	box-sizing: border-box;
	border-radius: 12px !important;
}

.inner-addon {
	position: relative;
}

/* style icon */
.inner-addon .input-icon {
	position: absolute;

	pointer-events: none;
}
.input-icon svg {
	height: 35px;

	margin-left: 10px;
}
/* align icon */
.left-addon .input-icon {
	left: 0px;
}
.right-addon .input-icon {
	right: 0px;
}

/* add padding  */
.left-addon input {
	padding-left: 30px;
}

.form-container > div > * {
	z-index: 5;
}
.get-qoute-btn button {
	width: 100%;
	height: 35px;
	background: #914099;
	line-height: 35px;
	color: white;
	border-radius: 12px;
	cursor: pointer;
	border: 2px solid #914099;
	outline: none;
	transition: 0.2s;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
}
.get-qoute-btn button:hover {
	background-color: white;
	color: #914099;
}

/* ****************************** */
/* ********* POP UP ************ */
/* ****************************** */
.pop-up {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999999999999999999999;
}

.hide {
	display: none;
}

.pop-up .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

.pop-up .pop-up-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
  width: 80%;
	transform: translate(-50%, -50%);

}
.pop-up-box{
	width: 90%;
 }
  .pop-up-box.small-pop{
	width: 50%;
}


.pop-up .pop-up-box {
	background-color: white;
	border-radius: 10px;
	/* padding: 30px; */
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.pop-up .pop-up-box .choose-title {
	margin-bottom: 15px;
}

.pop-up-box .pop-header {
	padding: 20px;
	background: #914099;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
	color: white;
	border-radius: 10px 10px 0 0;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.pop-up-box .pop-header .ok {
	background: white;
	width: 100px;
	text-align: center;
	color: #914099;
	padding: 5px 0;
	border-radius: 10px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
}
.pop-up-box .pop-header h5 {
	color: white;
}
.pop-up-box .pop-header .ok {
	cursor: pointer;
}

.pop-up .pop-up-box .pop-title {
	/* border-left: 2px solid #914099; */
	padding-left: 5px;
	/* margin-bottom: 40px; */
}

.pop-up .pop-up-box .choose {
	padding: 20px;
}

.pop-up .pop-up-box .choose label {
	cursor: pointer;
}

.pop-up .pop-up-box .choose label svg {
	transition: 0.3s;
}

.choose input[type="radio"] {
	display: none;
}

.choose input[type="radio"]:checked + label svg {
	border: 3px solid #914099;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.choose input[type="radio"]:not(:checked) + label svg {
	opacity: 0.3;
}

.pop-up .choose .input label {
	border: 1px solid rgba(178, 168, 168, 0.7);
	box-sizing: border-box;
	border-radius: 12px;
	padding: 5px 0;
	width: 100%;
}

.choose .input input[type="radio"]:checked + label {
	border: 1px solid #ff0c0c;
}

.pop-up .choose .second-inputs .NO {
	margin-left: 7px;
}

.pop-up .quantity {
	width: 130px;
	font-size: 22px;
}

.pop-up .quantity .counter-btn {
	color: white;
	width: 20px;
	height: 20px;
	line-height: 20px;
	background-color: #914099;
	border-radius: 4px;
	display: block;
	cursor: pointer;
}
.pop-up .quantity .counter-btn {
	width: 22px;
	height: 22px;
	line-height: 22px;
}

.pop-up .quantity .counter-btn.active {
	background-color: #aea3af;
	pointer-events: none;
}

/* ******************************************** */
/* *************HOW TO GET QOUTE ****************** */
/* ******************************************** */
/* .how-it-works, */
.how-make-qoute {
	padding-bottom: 20px
}
.how-it-works {
padding-top: 60px;}

.how-it-works h2,
.how-make-qoute h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	text-transform: uppercase;
	color: #7e1189;
}

section .white-box {
	background-color: white;
	position: relative;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	height: 217px;
}
.how-make-qoute .white-box .wrapper {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	margin-top: 10px;
}

.how-make-qoute .white-box .wrapper img {
	margin: auto;
	display: block;
	height: 116px;
}
.how-make-qoute .white-box .wrapper .box-title p {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	text-align: center;
	margin: auto;
	width: 70%;
}

.how-make-qoute .white-box .number {
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}

.how-make-qoute .white-box .number span,
.how-it-works .white-box span.number {
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #914099;
	font-weight: bold;
	border-radius: 50%;
	display: block;
	color: white;
	text-align: center;
}

/* ******************************************** */
/* *************END HOW TO GET QOUTE ****************** */
/* ******************************************** */
.how-it-works p.text {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	/* font-size: 14px; */
	line-height: 22px;
	/* letter-spacing: 0.08em; */
	margin-bottom: 0;
	margin-left: 10px;
	
}
.how-it-works .white-box {
	height: auto;
	height: 250px;
}

.how-it-works .box {
	flex: 1;
}

.how-it-works ul .list-text {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}

.how-it-works .get-free-box h6 {
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.08em;
}



/* media query responsive */

@media (max-width:768px){
  .pop-up-box.small-pop{
    width: 90%;
  }
}



@media (min-width: 576px) {
	.pop-up .choose .inputs .input {
		width: 45% !important;
	}

	.pop-up .choose .second-inputs .input {
		width: 45% !important;
	}
}


/* @media (min-width: 767px) {
 
} */
.pop-up .choose .inputs .input:nth-child(3) {
	width: 55%;
}

.pop-up .choose .inputs .input {
	width: 45%;
	/* margin-left: 1%; */
}

.pop-up .choose .second-inputs .yes {
	width: 50%;
}

.pop-up .choose .second-inputs .NO {
	width: 44%;
}
 
@media (max-width: 576px) {
  
	#feature .section-title .title{width: 260px; font-size: 28px; line-height: 48px}
	form.get-qoute .d-flex {
		justify-content: center;
	}

	.left-addon,
	.get-qoute-btn {
		width: 100% !important;
	}

	form.get-qoute .d-flex > * {
		margin-right: 0 !important;
	}
	.how-it-works .white-box {
	height: 300px;
	}

 
.how-it-works p.text{
	font-size: 19px
}

.how-it-works .get-free-box h6,
.how-it-works ul .list-text {
font-size: 17px}

	.how-it-works ul .d-flex span:first-child{
	line-height: 0px;
}

.how-it-works .icons svg{
  width:  26px !important;
  height:  26px !important;

}
.how-it-works .first-box.col-box svg{
		width: 20px
	}
	.pop-up .pop-up-wrapper {
		width: 90%;
	}
 
	.pop-up .choice {
		margin-left: 0 !important;
	}

	.pop-up .choose .second-inputs .NO {
		margin-left: 0 !important;
	}
	.pop-up .pop-up-box {
		overflow-y: scroll;
		height: 80vh;
	}

	.pop-up .pop-up-box .property .pr-5,
	.pop-up .pop-up-box .packing .pr-5 {
		padding-right: 0 !important;
	}
}

@media (max-width: 465px){
.col-box {
		max-width: 50%;
		flex: 0 0 50%;
		margin-left: auto;
		margin-right: auto;
	}

.how-make-qoute .white-box .wrapper .box-title p {
	width: 100%;
font-size: 13px;
line-height: 16px
}
section .white-box {
height: 205px
}
}
@media(max-width: 350px){
	.col-box {    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;}
	.how-it-works .white-box {
	height: 230px
}

	}

@media (min-width: 577px) and (max-width: 767px) {
	.how-it-works .white-box {
		height: 265px;
	}
	.how-it-works .row .col-box:first-child .white-box {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

@media (min-width: 577px) and (max-width: 991px) {
	.left-addon,
	.get-qoute-btn {
		width: 42%;
	}
}

@media (min-width: 991px) and (max-width: 1135px) {
	.inputs {
		padding-right: 0 !important;
	}
}

@media (min-width: 992px) and (max-width: 1449px) {
	.left-addon,
	.get-qoute-btn {
		width: 30%;
	}
}

@media (min-width: 1450px) {
	.left-addon {
		width: 400px;
	}
	.get-qoute-btn {
		width: 235.92px;
	}
}
