/* -------------------------------------------------------------------
 * Plugin Name           : Collyshefra - Responsive Modern Pricing Table
 * Author Name           : Yucel Yilmaz
 * Author URI            : https://codecanyon.net/user/aip_theme3434
 * Created Date          : 28 January 2020
 * Version               : 1.0
 * File Name             : style.css
------------------------------------------------------------------- */
/* -------------------------------------------------------------------
   Base                               
   ------------------------ /
 * 01.Base
 * 02.Typography
 * 03.Helper Class
   ------------------------ /
   Components                               
   ------------------------ /
 * 04.Buttons  
   ------------------------ /
   Layout                               
   ------------------------ /
 * 05.Pricing
 * 06.Footer
 */
/* ---------------------------------------------------------------- */
/* 01.Base                               
/* ---------------------------------------------------------------- */



/* ---------------------------------------------------------------- */
/* 02.Typography                                                  
/* ---------------------------------------------------------------- */
:root {
  --form-element-active-border-color: var(--primary);
  --form-element-focus-color: var(--primary-focus);
  --switch-color: var(--primary-inverse);
  --switch-checked-background-color: var(--primary);
}


@font-face {
    font-family: 'Emirates'; /*a name to be used later*/
    src: url('Emirates-Bold.ttf'); /*URL to font*/
}



/* ---------------------------------------------------------------- */
/* 03.Helper Class                                                  
/* ---------------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-heading .section-title {
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.section-heading .section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 4px;
  /*background: #26C281; */
  background: ##d9458e;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pb-minus-70 {
  padding-bottom: 70px;
}

/* ---------------------------------------------------------------- */
/* 04.Buttons                                                   
/* ---------------------------------------------------------------- */
.default-button {
  border-radius: 5px;
  display: inline-block;
  background-color: #26C281;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 40px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #fff;
}

.default-button:after {
  display: none;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: rgba(0, 0, 0, 0.247);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  top: 50%;
  left: 50%;
  -webkit-animation: ripple 1s;
          animation: ripple 1s;
  opacity: 0;
}

.default-button:focus:not(:active)::after {
  display: block;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
            transform: scale(10);
  }
}

/* ---------------------------------------------------------------- */
/* 05.Pricing                           
/* ---------------------------------------------------------------- */
.price-toggle-wrap {
  text-align: center;
  display: inline-block;
  margin: 0 auto 60px auto;
  padding: 10px;
  
}

.price-toggle-wrap a {
  padding: 16px 40px;
  float: left;
  border-radius: 100px;
  margin-left: 10px;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #e7fbf4;
  color: #d9458e;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}

.price-toggle-wrap a.active {
  background-position: center;
  background: #d9458e;
  color: #fff;
}



.pricing-tab-toggle-content {
  display: none;
}

.pricing-tab-toggle-content.active {
  display: block;
}

.price-table {
  border-radius: 50px;
  text-align: center;
  padding: 30px;
  margin-bottom: 75px;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  -webkit-box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 10px 20px 0 rgba(61, 82, 96, 0.15);
}

.price-table:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
          box-shadow: 0 23px 49px 0 rgba(61, 82, 96, 0.15);
}

.price-table .price-icon .price-icon-business {
  display: inline-block;
}


.price-table .price-icon i {
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  font-size: 40px;
  line-height: 100px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #d9458e;
  color: #fff;
}

.price-table .price-icon-business i {
  display: inline-block;
  height: 100px;
  width: 100px;
  text-align: center;
  font-size: 40px;
  line-height: 100px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background: #017FBF;
  color: #fff;
}

.price-table .price-value {
  margin-top: 20px;
  margin-bottom: 20px;
}

.price-table .price-value span {
  font-size: 1rem;
}

.price-table .price-value b {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Poppins-Bold", sans-serif;
  color: #050626;
}

.price-table .price-text {
  margin-bottom: 0px;
}

.price-table .price-text span {
  text-align: center;
  border-radius: 100px;
  display: inline-block;
  padding: 11px 40px;
}

.price-table .price-list li {
  margin-top: 15px;
}

.price-table .price-list li:first-child {
  margin-top: 0;
}

.price-table .price-footer {
  margin-top: 30px;
}

.price-table .price-footer .price-block-btn {
  display: block;
  border-radius: 50px;
  color: #fff;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Medium devices (tablets, less than 992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .price-table-resp:nth-child(3) {
    margin-top: 30px;

  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Small devices (landscape phones, less than 768px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  .price-table-resp {
    margin-top: 30px;
  }
  .price-table-resp:first-child {
    margin-top: 0;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
/* Size reduced because it does not fit on this device
 * Extra small devices (Iphone 5, less than 320px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 320px) {
  .price-toggle-wrap a {
    padding: 16px 25px;
  }
}

/* ---------------------------------------------------------------- */
/* 06.Footer                                                   
/* ---------------------------------------------------------------- */
.footer {
  background: #050626;
}

.footer .copyright-wrap {
  padding:00px;
}

.footer .copyright-wrap .copyright-inner .copyright-text {
  text-align: center;
  color: #fff;
  opacity: 0.85;
}

/*# VISPA CSS */

.bg-custom-1 {
  background-color: #85144b;
}

.bg-custom-2 {
background-image: linear-gradient(15deg, #D9468E 0%, #83458E 100%);
}

/* header button / phone number */
.btn-custom-1 {
  background-color: #ffffff; font-size: px;
  font-weight: 700;
  padding-right: 20px;
  background-color: transparent;
  border:0;
 color: #91458E; font-size: 40px
}

.txt-custom-1 {
  color: #8d8d97;
  font-size: 18px;
}

.logo-custom {
  width:200px;
 }

@media only screen and (max-width: 767.98px) {
 .logo-custom {
  width:200px;
 }
}
