﻿.team {
	width: 100%;
}
.team .container {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
.team .container .section-title h2{
	font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
	text-align: center;
	z-index: -1;
}

.team .container .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.team .container .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.team .container .section-title p {
	text-align: center;
	line-height: 45px;
}
.team .container .row {
	display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
   
}
.team .container .row .item {
	width: 540px;
	box-shadow: 0 2px 15px rgba(0,0,0,.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: .5s;
	box-sizing: border-box;
	margin: 5px; 
}
.team .container .row .item .member .pic {
	overflow: hidden;
    width: 180px;
    border-radius: 50%;
}
.team .container .row .item .member {
	display: flex;
}

.team .container .row .item .member .pic .img-fluid {
    max-width: 100%;
    height: auto;
	transition: ease-in-out .3s;
	vertical-align: middle;
    border-style: none;
}
.team .container .row .item .member .member-info {
	padding-left: 30px;
	
}

.team .container .row .item .member .member-info h4 {
	font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #37517e;
}
.team .container .row .item .member .member-info span {
	display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .container .row .item .member .member-info span::after {
	content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}
.team .container .row .item .member .member-info p {
	margin: 10px 0 0;
    font-size: 14px;
}

.faq {
	width: 100%;
	padding: 15px 0;
	background-color:#f3f5fa;
}
.faq .container {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
.faq .container .section-title h2{
	font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
	text-align: center;
}

.faq .container .section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.faq .container .section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.faq .container .section-title p {
	text-align: center;
	line-height: 45px;
}

.faq .faq-list {
    padding: 0 100px
}

.faq .faq-list ul {
    padding: 0;
    list-style: none
}

.faq .faq-list li+li {
    margin-top: 15px
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: poppins,sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
	color: #37517e;
    transition: .3s;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #47b2e4
}

.faq .faq-list .icon-show,.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0
}

.faq .faq-list .icon-show {
    display: none
}

.faq .faq-list a.collapsed {
    color: #37517e;
    transition: .3s
}

.faq .faq-list a.collapsed:hover {
    color: #47b2e4
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block
}

.faq .faq-list a.collapsed .icon-close {
    display: none
}

.newsletter {
	width: 100%;
	padding: 15px 0;
	background-color: #f3f5fa;
}
.newsletter .container {
	width: 100%;
	max-width: 1100px;
	margin: auto;
}
.newsletter .container .row {
	text-align: center;
}
.newsletter .container .row h4{
	font-size: 24px;
    margin: 0 0 20px;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    color: #37517e;
}
@media screen and (max-width: 700px) {
	.team .container .row .item .member .pic {
		overflow: inherit;
	}
	.faq .faq-list {
		padding: 0 10px
	}
}