/* Fonts */
:root {
  --font-default: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #674ea7;
  --color-secondary: #fcd84e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Rubik', sans-serif;
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #00b6a1;
  text-decoration: none;
}
.color-primary{
	color: var(--color-primary);
}
.color-secondary{
	color: var(--color-secondary);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);   
    font-weight: 700;    
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-header p {  
  color:var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 85px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #000;
  padding: 0;
  border-bottom:1px solid #e5e5e5;
}

.topbar .contact-info i {
  font-style: normal;
  color: #79D779;
  transition: color 0.3s;
  line-height: 0;
  /*width: 1.25em;*/
}

.topbar .contact-info a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}

@media (max-width: 575px) {

  .topbar .contact-info a,
  .topbar .contact-info i span {
    font-size: 14px;
	color:#000;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: #fff;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo img {
  max-height: 55px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

.sticked-header-offset {
  margin-top: 70px;
}

section {
  scroll-margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;   
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
 

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}
.getstarted{  
    background-color: #fcd84e !important;
    border-color: #fcd84e !important;
    color: #4a3b01 !important;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
	padding: 0.6rem 1.2rem;
	border-radius: 100px;
 }
  a.getstarted:hover {
    color: #fff!important;
    background-color: var(--color-primary)!important;
  }
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: #e7f7fc;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #000;
    
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: var(--color-primary);
  }
 

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 106, 93, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.about p {
  font-size: 17px; 
  color: #000;
}

.colr-1 {
	color: var(--color-primary);  
}
.about .content ul .colr-2{
	color: #EFEA53;  
}
.about .content ul {  
  list-style: none;
  padding: 0;
}
.about .content ul li {   
  padding-bottom: 8px;
  font-size: 17px;
}



.about .card { 	
    border-radius: 18px 18px 18px 0px;
}
.about .card .widget-box {  
	margin-top:-65px;
    width:80px;
    height:80px; 
    padding: 14px 14px 12px 14px;     
}
.about .card .box1 {  	
    background-color: #EFEA53;  
    border-radius: 18px 18px 18px 0px; 
}
.about .card .box2 {  	
    background-color: #FF6E68;  
	border-radius: 18px 0px 18px 18px;
}
.about .card .box3 {  	
    background-color: var(--color-primary); 
	border-radius: 18px 18px 0px 18px;
}
   .boxex{ padding: 20px 20px 20px 20px;
    background-color: transparent;
    background-image: linear-gradient(110deg, #DDF3FD 0%, #FFFFFF 100%);
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #71BFE2;
    border-radius: 8px 8px 8px 8px;
}
.widget-boxs { 	
    width:80px;
    height:80px; 
    padding: 14px 14px 12px 14px;   
    border-radius: 18px 18px 18px 0px;
	/*background-color: var(--color-primary); */
}
.box1 {  	
    background: radial-gradient(circle at 18.7% 37.8%, rgb(229 229 229 / 76%) 0%, rgb(224 209 209 / 68%) 90%);  
    border-radius: 18px 18px 18px 0px; 
}
.box2 {  	
    background-color: #FF6E68;  
   
border-radius: 0px 18px 18px 18px;
}
.box3 {  	
    background-color: var(--color-primary);  
    border-radius: 18px 0px 18px 18px; 
}
.box4 {  	
    background-color: #EFEA53;  
 border-radius: 18px 18px 0px 18px;    
}
/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: #6c757d;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team .member .social a {
  color: #a2a2a2;
  transition: 0.3s;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbbbbb;
}

.team .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
	
/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
}

.stats-counter .stats-item {
    padding: 20px 0;
    border: 1px solid var(--color-secondary);
    background-color: transparent;
    border-radius: 10px;
}


.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 10px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: inline;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
 font-weight: 400;
color:#000;
}
/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}
.cards{
border: 1px solid #e5e5e5;
border-radius:18px;
margin-top:-50px;
}

.services .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.services .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.services .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item img {
  width: 90px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}
:root {
    --swiper-navigation-size: 20px;
    --swiper-theme-color: var(--color-primary);
}
/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 5px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 50px 15px 15px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 0 40px 30px 45px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .form-control {    
    border: 1px solid #FFF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.575rem;
	background-color:transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	color:#fff;
}
.contact ::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
} 
.contact .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    color: #fff;
}
.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select  { 
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea,
.contact .php-email-form select {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #fff;
  background-color:transparent;
color:#fff;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.form-submit{
	padding: 10px 15px;
    color: #fff;
    background-color: var(--color-primary);
    border-radius: 18px 
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%; 
    background-image: url(../img/kkbc-2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:750px;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero1 {
    width: 100%; 
    background-image: url(../img/banner--.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:750px;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero2 {
    width: 100%; 
    background-image: url(../img/nursingbanner.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:750px;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero3 {
    width: 100%; 
    background-image: url(../img/Ambulance_banner.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:700px;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
/* Mobile */
@media (max-width: 1279px) {
.hero {
    width: 100%; 
    background-image: url(../img/kkbc-2.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:100% !important;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero1 {
    width: 100%; 
    background-image: url(../img/banner-mob.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:100% !important;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero2 {
    width: 100%; 
    background-image: url(../img/nursingbanner1.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:100% !important;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.hero3 {
    width: 100%; 
    background-image: url(../img/Ambulance_mobile.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;   
	height:100% !important;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
}
.hero h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.hero p {
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero .btn-get-started {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1e251c;
  background-color: var(--color-primary);
  border-radius: 18px;

}
.hero .btn-get-started1 {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1E251C;
  background-color: #EFEA53;
  border-radius: 18px 18px 18px 0px;
}
.hero .btn-get-started:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

.hero .icon-boxes {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: #008d7d;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);
}

.hero .icon-box:hover {
  background: #009786;
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}

ul li {
    list-style: none;
    list-style-type: none;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #e7f7fc;
  padding: 50px 0;
  color: #000;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 60px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 10px;
  transition: 0.3s;
}
@media (max-width: 786px) {
.footer .social-links  {
  justify-content: center;
}
}
.footer .social-links a:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 0;
}
 .footer .copyright ul{
	 display: flex;
	 align-items: center;
	 justify-content: center;
 flex-flow: nowrap;
 }

.footer .copyright p a {
    padding-right: 1rem;
    padding-left: 1rem;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    letter-spacing: 0;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: var(--color-primary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--color-primary);
}

.footer .footer-contact ul li {
  font-size: 18px;
  line-height: 26px;
display: flex;
}
.footer .footer-contact ul li i {
 color: var(--color-secondary);
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}
.btn-get-started {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1e251c;
  background-color: #fff;
  border-radius: 18px;
border: transparent;
}
.btn-get-wa-started {  
  
  background-color: #57bb63;
  border-radius: 50%;
border: transparent;
}.btn-get-wa-started i {  
  font-size:25px;
}
.btn-get-started:hover {  
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block; 
  border-radius: 50px;
  transition: 0.3s;   
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);  
  padding: 15px 25px;    
  color: #1e251c;
  background-color: var(--color-primary);
  border-radius: 18px;
border: transparent;
}


#loading {
  position: fixed;
  /*display: block;*/
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.9;
  /*background-color: #fff;*/
  z-index: 99999;
}       
.loader{
position: fixed;
left: 50%;
top: 50%;
z-index: 9999;
border: 10px solid #f3f3f3;
border-radius: 50%;
border-color: var(--color-primary) transparent var(--color-primary) transparent;
width: 60px;
height: 60px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
#feedback {
   display:block;
   position: fixed;
    bottom: 0px;
    left: 5%!important;
    z-index: 9999;
}
@media only screen and (max-width: 767px){
#feedback {
	display:block;
    position: fixed;
    bottom: 0px;
    left: 5%!important;
    z-index: 9999;
}
}
/* Tab Setup
================================*/
.tabSection {
  height: auto;
  background: white;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}


/* nav-pills
================================*/
.nav {
  text-align: center;
}

.nav-pills > li.category-link {
  float: none;
  display: inline-block;
  width: 19%;
  min-height: 45px;
}

.nav-pills > li.category-link > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 15px;
  background-color: #dadada;
  text-align: left;
  border-radius: 4px;
  transition: color, background-color 0.3s ease;
  font-size: 18px;
}

.nav-pills > li.category-link.active a {
  color: #fff;
  background-color: #333333;
}

.nav-pills > li.category-link > a:hover {
  text-decoration: none;
  background-color: #333333;
  color: white;
  transition: all 0.3s ease;
}

.nav-pills > li.category-link.active::after {
  position: absolute;
  bottom: -39px;
  height: 0;
  width: 0;
  left: 50%;
  transform: rotate(180deg);
  border: 20px solid transparent;
  border-bottom-color: #333333;
  content: "";
}

a {
  color: #333333;
}

a p {
  margin-bottom: 0px;
}

/* Media Queries
================================*/

@media (max-width: 768px) {
  .hidden-xs {
    display: none;
  }

  li.visible-xs {
    display: inline-block !important;
    float: none;
  }

  .nav {
    padding: 0px;    
    bottom: 15px;
    width: 100%;
  }

  .nav-pills > li.category-link > a {
    text-align: center;
    padding: 10px 0px;
    font-size: 26px;
    min-height: 57px;
  }

  .nav-pills > li.category-link {
    float: none;
    display: inline-block;
    width: 10%;
    text-align: center;
    vertical-align: middle;
  }

  .nav-pills > li.active::after {
    display: none;
  }

  .btnPrevious,
  .btnNext {
    background-color: #dadada !important;
    color: #333333;
  }

  .btnNext:hover,
  .btnPrevious:hover {
    background-color: #dadada !important;
    color: #333333 !important;
  }
}
.nav-tabs .nav-link {
    text-align: center;
    display: inline-block;
    padding: 20px 20px;
    border: 1px solid #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;    
    font-weight: 400;
    font-size: 1rem;
    box-shadow: #00000026 0 5px 15px;  
    background: #efefef;
    color: #000;
}
.nav-tabs .nav-link:before {
    content: "";
    position: absolute;
    height: 150px;
    width: 50px;
    background: #cac4c4c7;
    right: -40px;
    top: -40px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: .3;
}
.nav-tabs .nav-link:hover:before {
  right: 105%;
}
.nav-tabs .nav-link.active {
    text-align: center;
    display: inline-block;
    padding: 20px 25px;
    border: 1px solid #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;    
    font-weight: 600;
    font-size: 1rem;
    box-shadow: #00000026 0 5px 15px;  
    background: radial-gradient(circle at 18.7% 37.8%, rgb(202 202 202) 0%, rgb(110 104 104) 90%);
    color: #fff;
}
.nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    height: 150px;
    width: 50px;
    background: #fff;
    right: -40px;
    top: -40px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: .3;
}
.nav-tabs .nav-link.active:hover:before {
  right: 105%;
}
.tab-content ul li{
    font-size: 18px;
    line-height: 30px;
}


.form-area {
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
    padding:20px 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-area .form-inner {
    width: 100%;
}
.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 19px;
    font-size: 1rem;
    line-height: 1.4;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #475F7B;
    background-color: #FFF;
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: 0 3px 8px 0 rgb(0 0 0 / 10%);
}
.intl-tel-input,
.iti{
  width: 100%;
}

.chooseus ul li  {
    padding: 15px ;
    background-color: #fff;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0px 2px 40px 0px rgba(0, 0, 0, 0.058823529411764705);
	margin-bottom:15px;
}
.chooseus ul li h5{	
	font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 600;	
}
.chooseus ul li p{	
	font-family: "Poppins", Sans-serif;
    font-size: 16px;
    
}

.cid-tLziB9VHrw {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tLziB9VHrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLziB9VHrw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLziB9VHrw .row {
  flex-direction: row-reverse;
}
.cid-tLziB9VHrw .video-wrapper iframe {
  width: 100%;
}
.cid-tLziB9VHrw .mbr-section-title,
.cid-tLziB9VHrw .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tLziB9VHrw .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLziB9VHrw .mbr-section-title {
  text-align: center;
  color: #351c75;
}
.cid-tLziB9VHrw .mbr-text {
  color: #5f6366;
  text-align: justify;
}
.cid-tR9sQWBXaU {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #674ea7;
}
.cid-tR9sQWBXaU img,
.cid-tR9sQWBXaU .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tR9sQWBXaU .item:focus,
.cid-tR9sQWBXaU span:focus {
  outline: none;
}
.cid-tR9sQWBXaU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tR9sQWBXaU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tR9sQWBXaU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tR9sQWBXaU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tR9sQWBXaU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tR9sQWBXaU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tR9sQWBXaU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tR9sQWBXaU .mbr-section-title {
  color: #ffffff;
}
.cid-tR9sQWBXaU .mbr-text,
.cid-tR9sQWBXaU .mbr-section-btn {
  text-align: left;
}
.cid-tR9sQWBXaU .item-title {
  text-align: left;
  color: #351c75;
}
.cid-tR9sQWBXaU .item-subtitle {
  text-align: left;
  color: #5f6366;
}
.cid-GpliV9Hwk2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-GpliV9Hwk2 .feature43 {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.cid-GpliV9Hwk2 .feature43:hover {
  background: #674ea7;
  border-radius: 25px;
  box-shadow: 0 1rem 3rem #674ea7;
}
.cid-GpliV9Hwk2 .feature43:hover .feature43-image {
  color: #ffffff !important;
  transform: scale(0.75);
}
.cid-GpliV9Hwk2 .feature43-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
  max-width: 96px;
  max-height: 96px;
}
.cid-GpliV9Hwk2 .feature43:hover .feature43-text {
  color: #ffffff !important;
  margin-top: 0;
}
.cid-GpliV9Hwk2 .feature43-text {
  margin-top: 20px;
  transition: all 0.5s;
}
.cid-GpliV9Hwk2 img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1600px) {
  .cid-GpliV9Hwk2 .feature43 {
    min-height: inherit;
  }
}
.cid-GpliV9Hwk2 P {
  color: #351c75;
  text-align: center;
}
.cid-GpliV9Hwk2 H2 {
  color: #351c75;
}
.cid-YHsj9vhQUD {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-YHsj9vhQUD .feature43 {
  text-align: center;
  transition: all 0.5s ease;
  min-height: 256px;
  padding: 15px;
}
.cid-YHsj9vhQUD .feature43:hover {
  background: #674ea7;
  border-radius: 25px;
  box-shadow: 0 1rem 3rem #674ea7;
}
.cid-YHsj9vhQUD .feature43:hover .feature43-image {
  color: #ffffff !important;
  transform: scale(0.75);
}
.cid-YHsj9vhQUD .feature43-image {
  display: block;
  margin: auto;
  transition: all 0.5s;
  max-width: 96px;
  max-height: 96px;
}
.cid-YHsj9vhQUD .feature43:hover .feature43-text {
  color: #ffffff !important;
  margin-top: 0;
}
.cid-YHsj9vhQUD .feature43-text {
  margin-top: 20px;
  transition: all 0.5s;
}
.cid-YHsj9vhQUD img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1600px) {
  .cid-YHsj9vhQUD .feature43 {
    min-height: inherit;
  }
}
.cid-YHsj9vhQUD P {
  color: #351c75;
}
.cid-tNh1Hd13US {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tNh1Hd13US .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNh1Hd13US .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNh1Hd13US .mbr-section-title {
  color: #ffffff;
}
.cid-tNWLdXl271 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #674ea7;
}
.cid-tNWLdXl271 .top-dec {
  text-align: right;
  margin-top: -80px;
}
.cid-tNWLdXl271 .top-dec img {
  max-width: 270px;
}
.cid-tNWLdXl271 .left-image {
  position: relative;
}
.cid-tNWLdXl271 .left-image img {
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.cid-tNWLdXl271 .left-image .info {
  position: relative;
}
.cid-tNWLdXl271 .left-image .info .inner-content {
  background-color: #ffffff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-right: 75px;
  position: absolute;
  margin-top: -100px;
  padding: 30px;
}
.cid-tNWLdXl271 .left-image ul li {
  display: inline-block;
  margin-right: 20px;
}
.cid-tNWLdXl271 .left-image ul li:last-child {
  margin-right: 0px;
}
.cid-tNWLdXl271 .left-image ul li i {
  margin-right: 8px;
}
.cid-tNWLdXl271 .left-image h4 {
  margin: 20px 0px 15px 0px;
}
.cid-tNWLdXl271 .dright {
  margin-left: 30px;
}
.cid-tNWLdXl271 .dright ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}
.cid-tNWLdXl271 .dright .left-content {
  margin-right: 45px;
}
.cid-tNWLdXl271 .dright .left-content span i {
  margin-right: 8px;
}
.cid-tNWLdXl271 .dright .left-content h4 {
  margin: 20px 0px 15px 0px;
}
.cid-tNWLdXl271 .dright .right-image img {
  width: 250px;
  border-radius: 20px;
}
.cid-tNWLdXl271 .main-blue-button a {
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  margin-top: 15px;
}
@media (max-width: 992px) {
  .cid-tNWLdXl271 .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
    overflow: visible !important;
  }
  .cid-tNWLdXl271 .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .cid-tNWLdXl271 .left-image {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .cid-tNWLdXl271 .dright {
    margin-left: 0px;
  }
  .cid-tNWLdXl271 .dright ul li {
    display: inline-block;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }
  .cid-tNWLdXl271 .dright .left-content {
    margin-right: 0px;
    width: 100%;
    margin-bottom: 15px;
  }
  .cid-tNWLdXl271 .dright .right-image,
  .cid-tNWLdXl271 .dright .right-image img {
    width: 100%;
  }
}
.cid-tNWLdXl271 LI {
  color: #000000;
}
.cid-tNWLdXl271 H4 {
  color: #ffffff;
}
.cid-tNWLdXl271 .mbr-text2 {
  color: #bbbbbb;
}
.cid-tNWLdXl271 SPAN {
  color: #fcd84e;
}
.cid-tNWLdXl271 .mbr-text {
  color: #ffffff;
}
.cid-tNWLdXl271 .mbr-texti {
  color: #5f6366;
}
.cid-tNWLdXl271 .mbr-title {
  color: #e6c63b;
}
.cid-tNWLdXl271 .styleul SPAN {
  color: #e6c63b;
}
.cid-tUgB1x98rR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUgB1x98rR h2 {
  text-align: center;
}
.cid-tUgB1x98rR h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tUgB1x98rR p {
  color: #767676;
}
.cid-tUgB1x98rR img {
  object-fit: cover;
}
.cid-tUgB1x98rR .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tUgB1x98rR .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tUgB1x98rR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tUgB1x98rR .mbr-section-subtitle {
  color: #767676;
}
.cid-tUgB1x98rR .card-title {
  font-weight: 500;
}
.cid-tUgB1x98rR .card-img {
  text-align: inherit;
}
.cid-tUgB1x98rR .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tUgB1x98rR .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tUgB1x98rR .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tUgB1x98rR .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tUgB1x98rR .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
}
.cid-tUgB1x98rR .mbr-section-text {
  text-align: left;
  color: #351c75;
}
.cid-tUgB2O85yu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUgB2O85yu .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tUgB2O85yu .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tUgB2O85yu .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-tUgB2O85yu .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tUgB2O85yu .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-tUgB2O85yu .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #674ea7;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-tUgB2O85yu .card {
  min-height: 300px;
}
.cid-tUgB2O85yu .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-tUgB2O85yu .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-tUgB2O85yu .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-tUgB2O85yu .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-tUgB2O85yu H4 {
  color: #fcd84e;
  text-align: left;
}
.cid-tUgB2O85yu P {
  text-align: left;
}
.cid-tNh7J42sHi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #674ea7;
}
.cid-tNh7J42sHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNh7J42sHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNh7J42sHi .item {
  padding-bottom: 2rem;
}
.cid-tNh7J42sHi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tNh7J42sHi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tNh7J42sHi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tNh7J42sHi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tNh7J42sHi .carousel-control,
.cid-tNh7J42sHi .close {
  background: #1b1b1b;
}
.cid-tNh7J42sHi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNh7J42sHi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNh7J42sHi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tNh7J42sHi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNh7J42sHi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tNh7J42sHi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNh7J42sHi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNh7J42sHi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tNh7J42sHi .carousel-indicators li.active,
.cid-tNh7J42sHi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNh7J42sHi .carousel-indicators li::after,
.cid-tNh7J42sHi .carousel-indicators li::before {
  content: none;
}
.cid-tNh7J42sHi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNh7J42sHi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNh7J42sHi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .carousel-indicators {
    display: none;
  }
}
.cid-tNh7J42sHi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNh7J42sHi .carousel-inner > .active {
  display: block;
}
.cid-tNh7J42sHi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNh7J42sHi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNh7J42sHi .carousel-control,
  .cid-tNh7J42sHi .carousel-indicators,
  .cid-tNh7J42sHi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNh7J42sHi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNh7J42sHi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNh7J42sHi .carousel-indicators .active,
.cid-tNh7J42sHi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNh7J42sHi .carousel-indicators .active {
  background: #fff;
}
.cid-tNh7J42sHi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNh7J42sHi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNh7J42sHi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNh7J42sHi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNh7J42sHi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNh7J42sHi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNh7J42sHi .carousel {
  width: 100%;
}
.cid-tNh7J42sHi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNh7J42sHi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNh7J42sHi .modal.fade .modal-dialog,
.cid-tNh7J42sHi .modal.in .modal-dialog {
  transform: none;
}
.cid-tNh7J42sHi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNh7J42sHi H6 {
  text-align: center;
}
.cid-tNh7J42sHi H3 {
  color: #ffffff;
}
.cid-tRkekyqWUH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #674ea7;
}
.cid-tRkekyqWUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRkekyqWUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRkekyqWUH .item {
  padding-bottom: 2rem;
}
.cid-tRkekyqWUH .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tRkekyqWUH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRkekyqWUH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tRkekyqWUH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRkekyqWUH .carousel-control,
.cid-tRkekyqWUH .close {
  background: #1b1b1b;
}
.cid-tRkekyqWUH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRkekyqWUH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRkekyqWUH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tRkekyqWUH .close::before {
  content: '\e91a';
}
.cid-tRkekyqWUH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRkekyqWUH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tRkekyqWUH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRkekyqWUH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRkekyqWUH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tRkekyqWUH .carousel-indicators li.active,
.cid-tRkekyqWUH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRkekyqWUH .carousel-indicators li::after,
.cid-tRkekyqWUH .carousel-indicators li::before {
  content: none;
}
.cid-tRkekyqWUH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRkekyqWUH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRkekyqWUH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .carousel-indicators {
    display: none;
  }
}
.cid-tRkekyqWUH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRkekyqWUH .carousel-inner > .active {
  display: block;
}
.cid-tRkekyqWUH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRkekyqWUH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRkekyqWUH .carousel-control,
  .cid-tRkekyqWUH .carousel-indicators,
  .cid-tRkekyqWUH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRkekyqWUH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRkekyqWUH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRkekyqWUH .carousel-indicators .active,
.cid-tRkekyqWUH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRkekyqWUH .carousel-indicators .active {
  background: #fff;
}
.cid-tRkekyqWUH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
@charset "UTF-8";

@font-face {
  font-family: 'Socicon';
  src:  url('../fonts/socicon.eot');
  src:  url('../fonts/socicon.eot?#iefix') format('embedded-opentype'),
    url('../fonts/socicon.woff2') format('woff2'),
    url('../fonts/socicon.ttf') format('truetype'),
    url('../fonts/socicon.woff') format('woff'),
    url('../fonts/socicon.svg#socicon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[data-icon]:before {
  font-family: "socicon" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="socicon-"], [class*=" socicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Socicon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.socicon-eitaa:before {
  content: "\e97c";
}
.socicon-soroush:before {
  content: "\e97d";
}
.socicon-bale:before {
  content: "\e97e";
}
.socicon-zazzle:before {
  content: "\e97b";
}
.socicon-society6:before {
  content: "\e97a";
}
.socicon-redbubble:before {
  content: "\e979";
}
.socicon-avvo:before {
  content: "\e978";
}
.socicon-stitcher:before {
  content: "\e977";
}
.socicon-googlehangouts:before {
  content: "\e974";
}
.socicon-dlive:before {
  content: "\e975";
}
.socicon-vsco:before {
  content: "\e976";
}
.socicon-flipboard:before {
  content: "\e973";
}
.socicon-ubuntu:before {
  content: "\e958";
}
.socicon-artstation:before {
  content: "\e959";
}
.socicon-invision:before {
  content: "\e95a";
}
.socicon-torial:before {
  content: "\e95b";
}
.socicon-collectorz:before {
  content: "\e95c";
}
.socicon-seenthis:before {
  content: "\e95d";
}
.socicon-googleplaymusic:before {
  content: "\e95e";
}
.socicon-debian:before {
  content: "\e95f";
}
.socicon-filmfreeway:before {
  content: "\e960";
}
.socicon-gnome:before {
  content: "\e961";
}
.socicon-itchio:before {
  content: "\e962";
}
.socicon-jamendo:before {
  content: "\e963";
}
.socicon-mix:before {
  content: "\e964";
}
.socicon-sharepoint:before {
  content: "\e965";
}
.socicon-tinder:before {
  content: "\e966";
}
.socicon-windguru:before {
  content: "\e967";
}
.socicon-cdbaby:before {
  content: "\e968";
}
.socicon-elementaryos:before {
  content: "\e969";
}
.socicon-stage32:before {
  content: "\e96a";
}
.socicon-tiktok:before {
  content: "\e96b";
}
.socicon-gitter:before {
  content: "\e96c";
}
.socicon-letterboxd:before {
  content: "\e96d";
}
.socicon-threema:before {
  content: "\e96e";
}
.socicon-splice:before {
  content: "\e96f";
}
.socicon-metapop:before {
  content: "\e970";
}
.socicon-naver:before {
  content: "\e971";
}
.socicon-remote:before {
  content: "\e972";
}
.socicon-internet:before {
  content: "\e957";
}
.socicon-moddb:before {
  content: "\e94b";
}
.socicon-indiedb:before {
  content: "\e94c";
}
.socicon-traxsource:before {
  content: "\e94d";
}
.socicon-gamefor:before {
  content: "\e94e";
}
.socicon-pixiv:before {
  content: "\e94f";
}
.socicon-myanimelist:before {
  content: "\e950";
}
.socicon-blackberry:before {
  content: "\e951";
}
.socicon-wickr:before {
  content: "\e952";
}
.socicon-spip:before {
  content: "\e953";
}
.socicon-napster:before {
  content: "\e954";
}
.socicon-beatport:before {
  content: "\e955";
}
.socicon-hackerone:before {
  content: "\e956";
}
.socicon-hackernews:before {
  content: "\e946";
}
.socicon-smashwords:before {
  content: "\e947";
}
.socicon-kobo:before {
  content: "\e948";
}
.socicon-bookbub:before {
  content: "\e949";
}
.socicon-mailru:before {
  content: "\e94a";
}
.socicon-gitlab:before {
  content: "\e945";
}
.socicon-instructables:before {
  content: "\e944";
}
.socicon-portfolio:before {
  content: "\e943";
}
.socicon-codered:before {
  content: "\e940";
}
.socicon-origin:before {
  content: "\e941";
}
.socicon-nextdoor:before {
  content: "\e942";
}
.socicon-udemy:before {
  content: "\e93f";
}
.socicon-livemaster:before {
  content: "\e93e";
}
.socicon-crunchbase:before {
  content: "\e93b";
}
.socicon-homefy:before {
  content: "\e93c";
}
.socicon-calendly:before {
  content: "\e93d";
}
.socicon-realtor:before {
  content: "\e90f";
}
.socicon-tidal:before {
  content: "\e910";
}
.socicon-qobuz:before {
  content: "\e911";
}
.socicon-natgeo:before {
  content: "\e912";
}
.socicon-mastodon:before {
  content: "\e913";
}
.socicon-unsplash:before {
  content: "\e914";
}
.socicon-homeadvisor:before {
  content: "\e915";
}
.socicon-angieslist:before {
  content: "\e916";
}
.socicon-codepen:before {
  content: "\e917";
}
.socicon-slack:before {
  content: "\e918";
}
.socicon-openaigym:before {
  content: "\e919";
}
.socicon-logmein:before {
  content: "\e91a";
}
.socicon-fiverr:before {
  content: "\e91b";
}
.socicon-gotomeeting:before {
  content: "\e91c";
}
.socicon-aliexpress:before {
  content: "\e91d";
}
.socicon-guru:before {
  content: "\e91e";
}
.socicon-appstore:before {
  content: "\e91f";
}
.socicon-homes:before {
  content: "\e920";
}
.socicon-zoom:before {
  content: "\e921";
}
.socicon-alibaba:before {
  content: "\e922";
}
.socicon-craigslist:before {
  content: "\e923";
}
.socicon-wix:before {
  content: "\e924";
}
.socicon-redfin:before {
  content: "\e925";
}
.socicon-googlecalendar:before {
  content: "\e926";
}
.socicon-shopify:before {
  content: "\e927";
}
.socicon-freelancer:before {
  content: "\e928";
}
.socicon-seedrs:before {
  content: "\e929";
}
.socicon-bing:before {
  content: "\e92a";
}
.socicon-doodle:before {
  content: "\e92b";
}
.socicon-bonanza:before {
  content: "\e92c";
}
.socicon-squarespace:before {
  content: "\e92d";
}
.socicon-toptal:before {
  content: "\e92e";
}
.socicon-gust:before {
  content: "\e92f";
}
.socicon-ask:before {
  content: "\e930";
}
.socicon-trulia:before {
  content: "\e931";
}
.socicon-loomly:before {
  content: "\e932";
}
.socicon-ghost:before {
  content: "\e933";
}
.socicon-upwork:before {
  content: "\e934";
}
.socicon-fundable:before {
  content: "\e935";
}
.socicon-booking:before {
  content: "\e936";
}
.socicon-googlemaps:before {
  content: "\e937";
}
.socicon-zillow:before {
  content: "\e938";
}
.socicon-niconico:before {
  content: "\e939";
}
.socicon-toneden:before {
  content: "\e93a";
}
.socicon-augment:before {
  content: "\e908";
}
.socicon-bitbucket:before {
  content: "\e909";
}
.socicon-fyuse:before {
  content: "\e90a";
}
.socicon-yt-gaming:before {
  content: "\e90b";
}
.socicon-sketchfab:before {
  content: "\e90c";
}
.socicon-mobcrush:before {
  content: "\e90d";
}
.socicon-microsoft:before {
  content: "\e90e";
}
.socicon-pandora:before {
  content: "\e907";
}
.socicon-messenger:before {
  content: "\e906";
}
.socicon-gamewisp:before {
  content: "\e905";
}
.socicon-bloglovin:before {
  content: "\e904";
}
.socicon-tunein:before {
  content: "\e903";
}
.socicon-gamejolt:before {
  content: "\e901";
}
.socicon-trello:before {
  content: "\e902";
}
.socicon-spreadshirt:before {
  content: "\e900";
}
.socicon-500px:before {
  content: "\e000";
}
.socicon-8tracks:before {
  content: "\e001";
}
.socicon-airbnb:before {
  content: "\e002";
}
.socicon-alliance:before {
  content: "\e003";
}
.socicon-amazon:before {
  content: "\e004";
}
.socicon-amplement:before {
  content: "\e005";
}
.socicon-android:before {
  content: "\e006";
}
.socicon-angellist:before {
  content: "\e007";
}
.socicon-apple:before {
  content: "\e008";
}
.socicon-appnet:before {
  content: "\e009";
}
.socicon-baidu:before {
  content: "\e00a";
}
.socicon-bandcamp:before {
  content: "\e00b";
}
.socicon-battlenet:before {
  content: "\e00c";
}
.socicon-mixer:before {
  content: "\e00d";
}
.socicon-bebee:before {
  content: "\e00e";
}
.socicon-bebo:before {
  content: "\e00f";
}
.socicon-behance:before {
  content: "\e010";
}
.socicon-blizzard:before {
  content: "\e011";
}
.socicon-blogger:before {
  content: "\e012";
}
.socicon-buffer:before {
  content: "\e013";
}
.socicon-chrome:before {
  content: "\e014";
}
.socicon-coderwall:before {
  content: "\e015";
}
.socicon-curse:before {
  content: "\e016";
}
.socicon-dailymotion:before {
  content: "\e017";
}
.socicon-deezer:before {
  content: "\e018";
}
.socicon-delicious:before {
  content: "\e019";
}
.socicon-deviantart:before {
  content: "\e01a";
}
.socicon-diablo:before {
  content: "\e01b";
}
.socicon-digg:before {
  content: "\e01c";
}
.socicon-discord:before {
  content: "\e01d";
}
.socicon-disqus:before {
  content: "\e01e";
}
.socicon-douban:before {
  content: "\e01f";
}
.socicon-draugiem:before {
  content: "\e020";
}
.socicon-dribbble:before {
  content: "\e021";
}
.socicon-drupal:before {
  content: "\e022";
}
.socicon-ebay:before {
  content: "\e023";
}
.socicon-ello:before {
  content: "\e024";
}
.socicon-endomodo:before {
  content: "\e025";
}
.socicon-envato:before {
  content: "\e026";
}
.socicon-etsy:before {
  content: "\e027";
}
.socicon-facebook:before {
  content: "\e028";
}
.socicon-feedburner:before {
  content: "\e029";
}
.socicon-filmweb:before {
  content: "\e02a";
}
.socicon-firefox:before {
  content: "\e02b";
}
.socicon-flattr:before {
  content: "\e02c";
}
.socicon-flickr:before {
  content: "\e02d";
}
.socicon-formulr:before {
  content: "\e02e";
}
.socicon-forrst:before {
  content: "\e02f";
}
.socicon-foursquare:before {
  content: "\e030";
}
.socicon-friendfeed:before {
  content: "\e031";
}
.socicon-github:before {
  content: "\e032";
}
.socicon-goodreads:before {
  content: "\e033";
}
.socicon-google:before {
  content: "\e034";
}
.socicon-googlescholar:before {
  content: "\e035";
}
.socicon-googlegroups:before {
  content: "\e036";
}
.socicon-googlephotos:before {
  content: "\e037";
}
.socicon-googleplus:before {
  content: "\e038";
}
.socicon-grooveshark:before {
  content: "\e039";
}
.socicon-hackerrank:before {
  content: "\e03a";
}
.socicon-hearthstone:before {
  content: "\e03b";
}
.socicon-hellocoton:before {
  content: "\e03c";
}
.socicon-heroes:before {
  content: "\e03d";
}
.socicon-smashcast:before {
  content: "\e03e";
}
.socicon-horde:before {
  content: "\e03f";
}
.socicon-houzz:before {
  content: "\e040";
}
.socicon-icq:before {
  content: "\e041";
}
.socicon-identica:before {
  content: "\e042";
}
.socicon-imdb:before {
  content: "\e043";
}
.socicon-instagram:before {
  content: "\e044";
}
.socicon-issuu:before {
  content: "\e045";
}
.socicon-istock:before {
  content: "\e046";
}
.socicon-itunes:before {
  content: "\e047";
}
.socicon-keybase:before {
  content: "\e048";
}
.socicon-lanyrd:before {
  content: "\e049";
}
.socicon-lastfm:before {
  content: "\e04a";
}
.socicon-line:before {
  content: "\e04b";
}
.socicon-linkedin:before {
  content: "\e04c";
}
.socicon-livejournal:before {
  content: "\e04d";
}
.socicon-lyft:before {
  content: "\e04e";
}
.socicon-macos:before {
  content: "\e04f";
}
.socicon-mail:before {
  content: "\e050";
}
.socicon-medium:before {
  content: "\e051";
}
.socicon-meetup:before {
  content: "\e052";
}
.socicon-mixcloud:before {
  content: "\e053";
}
.socicon-modelmayhem:before {
  content: "\e054";
}
.socicon-mumble:before {
  content: "\e055";
}
.socicon-myspace:before {
  content: "\e056";
}
.socicon-newsvine:before {
  content: "\e057";
}
.socicon-nintendo:before {
  content: "\e058";
}
.socicon-npm:before {
  content: "\e059";
}
.socicon-odnoklassniki:before {
  content: "\e05a";
}
.socicon-openid:before {
  content: "\e05b";
}
.socicon-opera:before {
  content: "\e05c";
}
.socicon-outlook:before {
  content: "\e05d";
}
.socicon-overwatch:before {
  content: "\e05e";
}
.socicon-patreon:before {
  content: "\e05f";
}
.socicon-paypal:before {
  content: "\e060";
}
.socicon-periscope:before {
  content: "\e061";
}
.socicon-persona:before {
  content: "\e062";
}
.socicon-pinterest:before {
  content: "\e063";
}
.socicon-play:before {
  content: "\e064";
}
.socicon-player:before {
  content: "\e065";
}
.socicon-playstation:before {
  content: "\e066";
}
.socicon-pocket:before {
  content: "\e067";
}
.socicon-qq:before {
  content: "\e068";
}
.socicon-quora:before {
  content: "\e069";
}
.socicon-raidcall:before {
  content: "\e06a";
}
.socicon-ravelry:before {
  content: "\e06b";
}
.socicon-reddit:before {
  content: "\e06c";
}
.socicon-renren:before {
  content: "\e06d";
}
.socicon-researchgate:before {
  content: "\e06e";
}
.socicon-residentadvisor:before {
  content: "\e06f";
}
.socicon-reverbnation:before {
  content: "\e070";
}
.socicon-rss:before {
  content: "\e071";
}
.socicon-sharethis:before {
  content: "\e072";
}
.socicon-skype:before {
  content: "\e073";
}
.socicon-slideshare:before {
  content: "\e074";
}
.socicon-smugmug:before {
  content: "\e075";
}
.socicon-snapchat:before {
  content: "\e076";
}
.socicon-songkick:before {
  content: "\e077";
}
.socicon-soundcloud:before {
  content: "\e078";
}
.socicon-spotify:before {
  content: "\e079";
}
.socicon-stackexchange:before {
  content: "\e07a";
}
.socicon-stackoverflow:before {
  content: "\e07b";
}
.socicon-starcraft:before {
  content: "\e07c";
}
.socicon-stayfriends:before {
  content: "\e07d";
}
.socicon-steam:before {
  content: "\e07e";
}
.socicon-storehouse:before {
  content: "\e07f";
}
.socicon-strava:before {
  content: "\e080";
}
.socicon-streamjar:before {
  content: "\e081";
}
.socicon-stumbleupon:before {
  content: "\e082";
}
.socicon-swarm:before {
  content: "\e083";
}
.socicon-teamspeak:before {
  content: "\e084";
}
.socicon-teamviewer:before {
  content: "\e085";
}
.socicon-technorati:before {
  content: "\e086";
}
.socicon-telegram:before {
  content: "\e087";
}
.socicon-tripadvisor:before {
  content: "\e088";
}
.socicon-tripit:before {
  content: "\e089";
}
.socicon-triplej:before {
  content: "\e08a";
}
.socicon-tumblr:before {
  content: "\e08b";
}
.socicon-twitch:before {
  content: "\e08c";
}
.socicon-twitter:before {
  content: "\e08d";
}
.socicon-uber:before {
  content: "\e08e";
}
.socicon-ventrilo:before {
  content: "\e08f";
}
.socicon-viadeo:before {
  content: "\e090";
}
.socicon-viber:before {
  content: "\e091";
}
.socicon-viewbug:before {
  content: "\e092";
}
.socicon-vimeo:before {
  content: "\e093";
}
.socicon-vine:before {
  content: "\e094";
}
.socicon-vkontakte:before {
  content: "\e095";
}
.socicon-warcraft:before {
  content: "\e096";
}
.socicon-wechat:before {
  content: "\e097";
}
.socicon-weibo:before {
  content: "\e098";
}
.socicon-whatsapp:before {
  content: "\e099";
}
.socicon-wikipedia:before {
  content: "\e09a";
}
.socicon-windows:before {
  content: "\e09b";
}
.socicon-wordpress:before {
  content: "\e09c";
}
.socicon-wykop:before {
  content: "\e09d";
}
.socicon-xbox:before {
  content: "\e09e";
}
.socicon-xing:before {
  content: "\e09f";
}
.socicon-yahoo:before {
  content: "\e0a0";
}
.socicon-yammer:before {
  content: "\e0a1";
}
.socicon-yandex:before {
  content: "\e0a2";
}
.socicon-yelp:before {
  content: "\e0a3";
}
.socicon-younow:before {
  content: "\e0a4";
}
.socicon-youtube:before {
  content: "\e0a5";
}
.socicon-zapier:before {
  content: "\e0a6";
}
.socicon-zerply:before {
  content: "\e0a7";
}
.socicon-zomato:before {
  content: "\e0a8";
}
.socicon-zynga:before {
  content: "\e0a9";
}
