body {
    background: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 17px;
    line-height: 24px;
    color: #121212;
    word-break: break-word; 
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
a {
    color: var(--tempBtnColor);
}
a:hover {
    color:var(--tempBtnColor);
    text-decoration: none;
}
.errorMsg,.successMsg {
    text-align: center;
    color: red;
    margin-top: 8px;
}
.successMsg{
	color:green;
}
.ca_iframe_wrapper iframe {
    width: 100% !important;
}
header {
    background: url('images/header-background.png') no-repeat top center;
    -webkit-background-size: cover;
    background-size: cover;
    color: #fff;
    padding: 24px 0;
}
.hide{
	display:none !important
}
.site-logo img {
    max-height: 40px;
}
.menu-toggle {
    float: right;
    margin: 7px 10px;
    cursor: pointer;
}
.site-nav {
    display: none;
    background: #283647;
    padding: 15px;
    position: absolute;
    top: 88px;
    width: 100%;
    z-index: 9999;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-nav ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #293c52;
}
.site-nav ul li:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.site-nav ul li span {
    display: block;
	word-break: break-all;
}
.site-nav ul li span:first-of-type {
    font-weight: 400;
}
.hero {
    padding: 34px 0;
}
header h1 {
    font-size: 34px;
    letter-spacing: -0.5px;
}
header h4 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.467;
    margin-bottom: 20px;
}
button,a[data-attr="banner_btn"] {
    background:var(--tempBtnColor);
    border: none;
    padding: 20px 34px;
    line-height: 1;
    border-radius: 4px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    max-width: 260px;
	outline:none !important;
}
button:hover ,a[data-attr="banner_btn"]:hover{
    background: var(--tempBtnColor);
}
section {
    padding: 40px 0;
    border-bottom: 1px solid #efefef;
}
section h3 {
    text-align: center;
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 30px;
}
.benefit {
    text-align: center;
    padding: 0 40px;
    margin-bottom: 10px;
}
.icon {
    background: var(--tempBtnColor);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 15px;
}
.benefit h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.team {
    text-align: center;
    margin-bottom: 20px;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

img {vertical-align: middle;}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.profile-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
    cursor: pointer;
}
.team_wraper{
	padding-bottom:64px; 
}
.profile-wrapper>img {
    height: 280px;
    width:100%;
    object-fit: cover;
}
.bio {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: -100%;
    left: 0;
    padding: 30px;
    text-align: center;
    color: #fff;
    background: var(--tempBtnColor);
    display:flex;
    align-items:center;
    -webkit-transition: bottom .1s linear;
    transition: bottom .1s linear;
}
.profile-wrapper:hover .bio {
    bottom: 0;
}
.bio p {
    display: inline-block;
    margin-left: -4px;
    line-height: 1.367;
    margin: 0;
}
.team h5 {
    margin-bottom: 0;
    line-height: 1.1;
}
.team h5 + span {
    color: var(--tempBtnColor);
    letter-spacing: -0.3px;
}
.contact-form {
    background: #f6f6f6;
    padding: 18px 15px;
    border-radius: 6px;
    border: 1px solid #ececec;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    line-height: 1;
    border: 1px solid #dadada;
    border-radius: 4px;
    color: #797979;
}
.contact-form button {
    max-width: 100%
}
.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.contact-details ul li {
    margin-bottom: 20px;
	position:relative;
	padding-left:58px; 
	min-height: 48px;
}
.contact-details .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    background: #212121;
    float: left;
    margin: 0 10px 0 0;
	position:absolute;
	left:0;
}
.contact-details .icon + span {
    display: block;
    line-height: 1.3;
	word-break: break-all;

}

.mobile{
    font-size: 200px;
    font-weight: 600;
}
footer {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 24px 0;
    font-size: 14px;
    font-weight: 600;
}
footer p {
    margin-bottom: 0;
}
footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer li {
    display: inline-block;
    margin: 0 30px;
}
footer a {
    color: #212121;
} 


@media (min-width: 992px) {
.contact-form {
    background: none;
    padding: 0;
    border: none;
}
.site-nav ul {
    width: max-content;
    float: right;
}
header {
    padding: 34px 0;
}
.site-logo img {
    max-height: 50px;
}
.site-nav {
    display: block !important;
    background: none;
    top: auto;
    position: relative;
    padding: 0;
}
.site-nav ul li {
    float: left;
    padding: 0 0 0 40px;
    max-width: 234px;
    margin-bottom: 0;
    border-bottom: none;
}
}
@media (min-width: 1200px) {
.hero{
    padding: 140px 0;
}
header h1 {
    font-size: 50px;
}
header h4 {
    font-size: 19px;
    margin-bottom: 30px;
    line-height: 1.67;
}
section {
    padding: 84px 0;
    border-bottom: 1px solid #eee;
}
.section-wrapper {
    min-height: 420px;
}
section h3 {
    font-size: 36px;
    margin-bottom: 40px;
	word-break: break-word;
}
.benefit {
    padding-left: 36px;
    padding-right: 36px;
    margin-bottom: 0;
}
.benefit p {
    margin-bottom: 0;
}
footer {
    padding: 44px 0;
}
footer ul {
    float: right;
}
}

#error-msg{
	color: red !important;
	padding-top: 5px;
	text-align: center;
}