
/***********************************************************
                GENERAL CLASSES
***********************************************************/
body{
    font-family:"Inter" Sans,sans-serif;
    font-weight: 300;
    line-height: 1.7;
    font-size: .875rem;
    color: #525f7f;
}
h1, h2, h3, h4, h5, h6{ font-family:"Inter" Sans,sans-serif!important;}
h4{ font-weight: 400!important;}
.btn{text-transform: uppercase; font-weight:600!important}
.btn-light{color:#5e72e4;}
.bg-light-gray{background: #fafafa;}
.bg-white{background: white;}
.bg-light-blue{background: rgba(138,152,235,.5);}
.bg-light-green{background-color: rgba(84,218,161,.5);}
.bg-light-orange{background-color: rgba(252,140,114,.5);}
.text-color-purple{color: #7795f8;}
.bg-blue{background: linear-gradient(150deg,#7795f8 15%,#6772e5 70%,#555abf 94%);}
.shape-bg.shape-bg-blue{background: linear-gradient(150deg,#7795f8 15%,#6772e5 70%,#555abf 94%);}
.rounded-circle {border-radius: 50%!important;}
.shape-bg.shape-bg-orange{background: linear-gradient(87deg,#fb6340,#fbb140)!important;}
.py-100{padding: 100px 0;}
.navbar-dark .navbar-nav .nav-link{color: white;}
.link{cursor: pointer;}
.dropdown-item:focus {background: #fafafa!important;}
.btn-blue{
    color: #fff;
    background-color: #5e72e4;
    border-color: #5e72e4;
}
.floating:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.floating {
    -webkit-animation: floating 3s ease infinite;
    animation: floating 3s ease infinite;
    will-change: transform;
}
.icon-shape {
    padding: 12px;
    text-align: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}
.icon-shape.icon{
    width: 3rem;
    height: 3rem;
}
.icon-shape.icon-lg {
    width: 4rem;
    height: 4rem;
    font-size: 1.625rem;
}

/***********************************************************
                TOP NAVBAR
***********************************************************/

nav#topnav {
    position: absolute;
    width:100%;
    z-index:1030;

}
nav#topnav.fixed-top{
    position: fixed;
    width:unset;
}
nav#topnav .options-topnav{
    background: #4354d8;
    height: 38px;
}
nav#topnav .options-topnav a{
    color: white;
}
nav#topnav .options-topnav .dropdown-menu a{
    color: #7795f8;
}

nav#topnav .main-topnav{
    color:white;
    height:70px;
}
nav#topnav .main-topnav a{
    color:white;
    text-decoration:none;
}
nav#topnav .main-topnav .link{
    font-weight:bold;
}
nav#topnav .main-topnav .logo-white{
    margin-top:-15px;
    margin-left:-25px;
    height:60px;
}


/***********************************************************
                MENU ICON
***********************************************************/
#menu-icon{
	display:none;
	margin-top:7px;
  	width: 30px;
  	height: 30px;
  	position: relative;
  	-webkit-transform: rotate(0deg);
  	-moz-transform: rotate(0deg);
  	-o-transform: rotate(0deg);
  	transform: rotate(0deg);
  	-webkit-transition: .5s ease-in-out;
  	-moz-transition: .5s ease-in-out;
  	-o-transition: .5s ease-in-out;
  	transition: .5s ease-in-out;
  	cursor: pointer;
}

#menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#menu-icon span:nth-child(1) {
  top: 0px;
}

#menu-icon span:nth-child(2),#menu-icon span:nth-child(3) {
  top: 9px;
}

#menu-icon span:nth-child(4) {
  top: 18px;
}

#menu-icon.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

#menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#menu-icon.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

/**************************************************************
 				  MOBILE MENU
/*************************************************************/
#mobile-menu {
	width: 280px;
	background: #fff;
	position: fixed;
	height: 100%;
	overflow-y: scroll;
	right: -280px;
  	top: 0;
  	padding:120px 20px;
  	font-size: 26px;
  	color: #14304c;
  	z-index: 1000;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07)!important;
    box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07)!important;
}
#mobile-menu.is-open {
  right: 0px;
}
#mobile-menu ul li {
  padding: 10px 0;
  color: #5e72e4;
  font-weight:bold;
}
#mobile-menu ul li a{
    color: #5e72e4;
    text-decoration:none;
  }
#mobile-menu .small-link {
  font-size:12px;
  color:#131923;
}
.menu-div {
  height: 100%;
}

/***********************************************************
                SHAPE SECTION
***********************************************************/
section.section-shaped#page-title{
    min-height: 280px;
}
section.section-shaped#page-title h1{
font-size: 50px!important;
}
/* Shaped Background */
section.section-shaped{
    position: relative;
}
section.section-shaped .shape-bg{
    -webkit-transform: skewY(-8deg);
    transform: skewY(-8deg);
    -webkit-transform-origin: 0;
    transform-origin: 0;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
section.section-shaped .shape-bg.shape-low{
    -webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
}
/* BUBBLES */
section.section-shaped .shape-bg span{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    transform: skew(8deg);
}
section.section-shaped .shape-bg :first-child{
    left: -4%;
    bottom: auto;
    background: hsla(0,0%,100%,.1);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(2){
    right: 4%;
    top: 10%;
    background: hsla(0,0%,100%,.1);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(3){
    top: 280px;
    right: 5.66666%;
    background: hsla(0,0%,100%,.3);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(4){
    top: 320px;
    right: 7%;
    background: hsla(0,0%,100%,.15);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(5){
    top: 38%;
    left: 1%;
    right: auto;
    background: hsla(0,0%,100%,.05);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(6){
    width: 200px;
    height: 200px;
    top: 44%;
    left: 10%;
    right: auto;
    background: hsla(0,0%,100%,.15);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(7){
    bottom: 50%;
    right: 36%;
    background: hsla(0,0%,100%,.04);
    position: absolute;
}
section.section-shaped .shape-bg :nth-child(8){
    bottom: 70px;
    right: 11%;
    background: hsla(0,0%,100%,.2);
    
}
section.section-shaped .shape-bg :nth-child(9){
    bottom: 10%;
    right: 20%;
    background: hsla(0,0%,100%,.1);
    position: absolute;
}

/***********************************************************
                WELCOME BANNER
***********************************************************/
section#welcome-banner div.container{
    padding-top:100px;
    min-height:900px;
    font-size:20px;
}

/***********************************************************
            CARDS AND INSURANCE OPTIONS
***********************************************************/
section#insurance-options{
    margin-top: -290px;
}
.card {
    border:unset;
    position: relative;
    -webkit-transition: all .12s ease;
    transition: all .12s ease;
    -webkit-box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07)!important;
    box-shadow: 0 15px 35px rgba(50,50,93,.1),0 5px 15px rgba(0,0,0,.07)!important;
}
section#insurance-options .card:hover{
    margin-top:-20px;
}
section#insurance-options .card-body .card-title{
    height: 45px;
}
section#insurance-options .card-body .card-text{
    height: 260px;
}
section#insurance-options .card-body .btn-primary{
    width:100%;
}
section#insurance-options .card-body .btn-primary{
    width:100%;
}
section#whatwedo .card-body .description{
    height: 150px;
}




/* Section our-approach */
section#our-approach{
    font-size: 16px;
}

/* Section what we do */
section#whatwedo{
    font-size: 16px;
}

section#interface{
/*  */
}

section#our-team{
/*  */
}

/***********************************************************
            FOOTER
***********************************************************/
footer .logo-purple{
    height:60px;
    margin-left:-30px;
}    
footer .footer-options a{
    font-size:18px;
    color:gray;
}   



/***********************************************************
                MOBILE DEVICES
***********************************************************/
@media (max-width: 991px){

    section#insurance-options .col-xs-12:nth-child(4) .card-body .card-text,
    section#insurance-options .col-xs-12:nth-child(5) .card-body .card-text{
        height: 320px;
    }
}
/***********************************************************
                MOBILE DEVICES
***********************************************************/
@media (max-width: 767px){
    section#application{
        margin-top:-200px;
    }
    section#insurance-options .card-body ul{
        height: 150px;
    }
    section#insurance-options .col-xs-12:nth-child(4) .card-body .card-text,
    section#insurance-options .col-xs-12:nth-child(5) .card-body .card-text{
        height: 480px;
    }
}
/***********************************************************
                PHONES
***********************************************************/
@media (max-width: 575px){

    section#insurance-options .card-body ul{
        height: unset;
    }
    section#whatwedo .card-body .description{
        height: unset;
    }

    section#programs .cta-buttons .btn-lg{
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
    section#insurance-options .card-body .card-text{
        height: auto;
    }
    section#insurance-options .col-xs-12:nth-child(4) .card-body .card-text,
    section#insurance-options .col-xs-12:nth-child(5) .card-body .card-text{
        height: auto;
    }
}






