/*---------------------------------------------------------------
Variables-----------------------------------------------------*/
:root {
  --pvt-primary: #4865AC;
  --pvt-solid: #000000;
  --pvt-fucshia: #FF00A7;
  --pvt-green: #02D040;
  --pvt-green-pale: #86FBAA;
  --pvt-blue-pale: #86A3FB66;
  
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: var(--pvt-solid);
}

a {
  color: #1977cc;
  text-decoration: none;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.brand-text-color{
    color:var(--pvt-primary);
}
.pink-text-color{
    color:var(--pvt-fucshia);
}
/*--------------------------------------------------------------- 
Buttons -----------------------------------------------------------*/
.pvt_brand_button{
color: #FFF;
font-family: Montserrat;
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: normal; 
border-radius: 100px;
background: var(--CTA, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));
border:none;
padding:20px 30px;
}
.pvt_brand_button_blue{
color: #B1E5FF;
font-family: Montserrat;
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: normal; 
border-radius: 100px;
background: var(--CTA, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));
border:none;
padding:20px 30px;
}
.pvt_brand_button_small{
color: #FFF;
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal; 
border-radius: 100px;
background: var(--CTA, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));
border:none;
padding:15px 25px;
}
.pvt_small_button{
color: #FFF;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal; 
border-radius: 100px;
background: var(--CTA, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));
border:none;
padding:15px 25px;
}
.pvt_action_button{
color: var(--pvt-primary);
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal; 
border-radius: 100px;
background: #D3D5D9;
border:none;
padding:15px 25px;
}

.pvt_brand_button_transparent{
color: var(--pvt-primary);
font-family: Montserrat;
font-size: 1rem;
font-style: normal;
font-weight: 500;
line-height: normal;
border-radius: 100px;
background: var(--pvt-green-pale); 
border:1.5px solid var(--pvt-primary);
padding:20px 30px;
}
.pvt_small_button_logout {
	color: #6C6C6C;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border-radius: 7px;
	background: var(--CTA, linear-gradient(180deg, #E3E3E3 0%, #cecece 100%));
	border: none;
	padding: 7px 15px;
}
.pvt_small_button_active {
	color: #FFF;
	font-family: Montserrat;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border-radius: 100px;
	background: var(--CTA, linear-gradient(180deg, #1FA81B 0%, #48AC95 100%));
	border: none;
	padding: 15px 25px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1977cc;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--pvt-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--pvt-primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #1977cc;
}

#topbar .contact-info i {
  color: #1977cc;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #437099;
  padding-left: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #1977cc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  top: 0;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 40px;
}

/**
* Appointment Button *
*/
.appointment-btn {
  margin-left: 25px;
  background: #1977cc;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: black;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
}

.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: var(--pvt-primary);
  border-color: var(--pvt-primary);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.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: #1977cc;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
  #header {
  padding: 15px 0;
}

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1977cc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #1977cc;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*-----------------HERO--------------*/
#hero-area{
    padding:120px 0 100px 0;
    background:#eef2ff;
    
}

.hero-img{
    width:100%;
}
.hero-text-one{
    font-size:3.5rem;
    line-height:1;
    font-weight:bold;
}
.hero-text-two{
    font-size:1rem;
    line-height:1.2;
    font-weight:300;
}
@media(max-width:1200px){
   .hero-text-one{
    font-size:2.4rem;
} 
.hero-text-two{
    font-size:1rem;
}
}
@media(max-width:992px){
    .pad-text-l5{
        padding: 0 15% 0 15%;
    }
    .bottom-padding-l50{
    padding-bottom:50px;
}
}
@media(max-width:768px){
   .hero-text-one{
    font-size:2.5rem;
    text-align:center;
} 
.hero-text-two{
    font-size:1rem;
    text-align:center;
}
.btn-area{
    text-align:center;
}
.top-padding-m100{
    padding-top:100px;
}
.bottom-padding-m50{
    padding-bottom:50px;
}
}
@media(max-width:576px){
   .pad-text-s5{
        padding: 0 5% 0 5%;
    }
}

/*---------------------------Bullet ----------------*/
.bullet_area{
    background: var(--Gradient, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));;
    min-height: 100px;
}


/*-------------------- About Us ------------------------------*/
.about_us_area{
    background: var(--pvt-blue-pale); 
    min-height: 100px;
    padding:100px 0;
}
.products_area{
   min-height: 100px;
   padding:50px 0; 
   text-align:center;
}
.select-mode-widget{
    min-width:100px;
    width:auto;
    min-height:50px;
    border-radius: 100px;
    border: 2px solid #4865AC;
    padding:3px;
}
.select-mode-widget-btn{
    border-radius: 100px;
    color: var(--pvt-primary);
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding:15px 30px;
    cursor:pointer;
}
.mode-active{
    background: var(--Gradient, linear-gradient(180deg, #1B43A8 0%, #4865AC 100%));
    color: #FFF;
    font-weight: 600;
}
.product-item-group{
    margin:50px 0 50px 0;
    display: flex;
  align-items: stretch;
}
.product-item{
    /*width: 290px;*/
    height: auto;
    border-radius: 12px;
    border:2px solid var(--pvt-primary);
    background: #FFF;
    font-size:15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.splide_two{
    margin:0 auto;
    max-width:800px;
}
.product-item-image{
    width:100%;
    height:150px;
    border-bottom:1px solid var(--pvt-primary);
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    object-fit: cover; 
    object-position: center; 
    background:#ddd;
}
.product-item-content{
    position:relative;
    min-height:auto;
    text-align:left;
    padding:20px;
}
.product-item-cta{
    position:absolute;
    bottom:20px;
    left:20px;
    font-weight:600;
    color:var(--pvt-primary);
}
.splide__pagination__page.is-active {
	background: var(--pvt-primary);
}
@media(max-width:576px){
     .product-item-image{
    height:250px;
}
}
/*------------ how it works----------*/
.how_it_works_area{
    padding:70px 0 100px 0;
}
.how_it_works_box{
    margin:0 auto;
    width:88%;
    height:auto;
    border-radius: 40px;
    background: var(--pvt-blue-pale);
    padding:20px;
    
}
.how_it_works_text_sub{
    font-size:20px;
    line-height:normal;
    font-weight:400;
    padding:30px 30%;
    text-align:center;
}

.how_it_works_img {
    position: relative;
    background: #ddd url('https://140pro.com/proto/pvcoop/assets/jpegs/how-it-works.jpg') no-repeat center center;
    border-radius: 30px;
    height: 500px;
}

.how_it_works_bullets{
    border-left:3px solid var(--pvt-primary);
    padding-left:10px;
    font-size:15px;
}
.how_it_works_italics{
    /*font-style: italic;*/
    font-size:15px;
}
@media(max-width:991px){
    .product-item-image{
    height:200px;
}
.how_it_works_img{
   margin-bottom:40px; 
}
.how_it_works_text_sub {
    padding: 0 10% 30px 10%;
}
}

@media(max-width:768px){
    .how_it_works_box{
    width:95%;
}
.how_it_works_text_sub {
    padding: 0 10% 30px 10%;
}
}
@media(max-width:576px){
     .how_it_works_img{
    height:400px;
}
}