@charset "utf-8";
/* CSS Document */

.logo1{ float: right; width: 30%}


.RequestCallbackContainer
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mr-36, .mh-36 {
    margin-right: 36px;
}

.RequestCallbackContainer__button

{
    background: #FFFFFF;
    border: 1px solid #2196F3;
    color: #2196F3;
    border-radius: 4px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3px 12px;
}

.RequestCallbackContainer__button__label {
    font-weight: bold;
    font-size: 14px;
    font-family: 'Proxima Nova', sans-serif;
}

.col-center {
	margin: 0 auto;
	float: none !important;
}
h1 {
  text-align: center;
  color: #76d0f5;
  margin: 80px 0;
}
.carousel {
	margin: 0 auto;
	padding: 0;
}
.carousel .item {
	color: #999; font-size: 14px;
    text-align: center;
	overflow: hidden;
    min-height: 250px;
}
.carousel .item .img-box {
	width: 135px;
	height: 135px;
	margin: 0 auto;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 50%;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.carousel .testimonial {
	padding: 0px 0 10px;
}
.carousel .overview {	
	font-style: italic;
}
.carousel .overview b {
	text-transform: uppercase;
	color: #76d0f5;
}
.carousel .carousel-control {
	width: 40px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
	background: none;
}
.carousel-control i {
    font-size: 68px;
	line-height: 42px;
    position: absolute;
    display: inline-block;
	color: rgba(0, 0, 0, 0.8);
    text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel .carousel-indicators {
	bottom: 15px;
	z-index:999;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 12px;
	height: 0px;
	margin: 1px 3px;
	border-radius: 13%;
}
.carousel-indicators li {	
	background: #7b0000!important;
	border-color: transparent;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
	cursor:pointer;
}
.carousel-indicators li.active {	
	background: #555;		
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}

.carousel .testimonial p::before {
    content: '\94';
    color: #fff;
    font-weight: bold;
    font-size: 68px;
    line-height: 70px;
    position: absolute;
    left: -25px;
    top: 0;
}

/* Pop Up */

 .box {
         width: 18%;
         margin: 0;
         background: #76d0f5;
         padding: 0;
         border: 2px solid #fff;
         border-radius: 20px/50px;
         background-clip: padding-box; 
         text-align: center;
         }
         .button {
         font-size: 1em;
         padding: 10px;
         color: #fff;
         border: 1px solid #ccc;
         border-radius: 20px/50px;
         text-decoration: none;
         cursor: pointer;
         transition: all 0.3s ease-out; 
         }
         .button:hover {
         background: #76d0f5; color: #fff;
         }
         .overlay {
         position: fixed;
         top: -90px;
         bottom: 0;
         left: 0;
         right: 0;
         background: rgba(0, 0, 0, 0.7);
         transition: opacity 500ms;
         visibility: hidden;
         opacity: 0;
         }
         .overlay:target {
         visibility: visible;
         opacity: 1;
         }
         .popup {
         margin: 70px auto;
         padding: 20px;
         background: #fff;
         border-radius: 5px;
         width: 35%;
         position: relative;
         transition: all 5s ease-in-out;
         }
         .popup h2 {
         margin-top: 0;
         color: #333;
         font-family: Tahoma, Arial, sans-serif;
         }
         .popup .close {
         position: absolute;
         top: 20px;
         right: 30px;
         transition: all 200ms;
         font-size: 30px;
         font-weight: bold;
         text-decoration: none;
         color: #333;
         }
         .popup .close:hover {
         color: #06D85F;
         }
         .popup .content {
         max-height: 30%;
         overflow: auto;
         }
         @media screen and (max-width: 700px){
         .box{
         width: 70%; margin: 15px 0 15px 57px;
         }
         .popup{
         width: 100%; margin: 70px 0;
         }
         }