/*--------------------------------------------------------------
----------------------------------------------------------------

    / Capital Markets Club
    / 01.26.2022

----------------------------------------------------------------
--------------------------------------------------------------*/



/*--------------------------------------------------------------
//   Global Style
--------------------------------------------------------------*/

.menu-wrap input[type=checkbox] {
    display: block;
}
body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #333;
}
h1, h2 {
    font-weight: 300;
    line-height: 1.2;
    margin: 10px 0;
}
img {
    width: 100%;
}

/*   Global Style // Layout   */
/*------------------------------------------------------------*/

.container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}
.container-wrap {
    margin-top: 100px;
    margin-bottom: 100px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #5c768d;
}
.section-title p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}
.section-img, .section-img2, .section-img3 {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.section-img .section-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 0.3s;
    text-align: center;
    background: rgba(31, 53, 72, 0.6);
    padding-bottom: 30px;
}
.section-copy h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
.section-img:hover .section-copy {
    opacity: 1;
    padding-bottom: 0;
}
.section-img img, .section-img2 img, .section-img3 img {
    transition: 0.3s;
    transform: scale(1.1);
}
.section-img:hover img {
    transform: scale(1.2);
}
.section-img3, .section-img3 img {
    opacity: 0;
}
#header {
    width: 100%;
    height: auto;
    max-height: 550px;
    padding: 0;
    overflow: hidden;
}
#header h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 400;
    text-align: left;
}
#header .container {
    display: flex;
    max-height: 550px;
    align-items: center;
    height: 100%;
}
.header-container {
    width: 100%;
    height: calc(100vh - 300px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

/*   Global Style // Grid   */
/*------------------------------------------------------------*/

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: visible;
}
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid-1{
    display: grid;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid-33{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 80px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.grid-5{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 20px;
}
.grid-team {
    display: grid;
    margin-inline-start: 26.5%;
    grid-template-columns: repeat(2, 1fr) 35%;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 10px;
}
.grid-team3 {
    display: grid;
    margin-inline-start: 12%;
    grid-template-columns: repeat(3, 1fr) 12%;
    gap: 10px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/*   Global Style // Buttons   */
/*------------------------------------------------------------*/

.btn {
    width: 260px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
  }
  .btn a {
    background-color: #428bca;
    margin-top: 40px;
    padding: 10px 30px;
    border: 0;
    color: #fff;
    transition: 0.4s;
}
.btn a:hover {
    background-color: #acb2b4;
}
.btn2 {
    width: 260px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
  }
.btn2 a {
    background-color: #acb2b4;
    margin-top: 40px;
    padding: 10px 30px;
    border: 0;
    color: #fff;
    transition: 0.4s;
}
.btn2 a:hover {
    background-color: #428bca;
}
.showcase .caption .btn-more {
    width: 160px;
    border-radius: 5px;
    display: inline-block;
    align-items: center;
    margin-top: 20px;
    padding: 10px 10px;
    background-color: #fff;
    text-align: center;
    opacity: .4;
    transition: 0.4s;
}
.showcase .caption .btn-more a {
    color: var(--copy-color);
}
.showcase .caption .btn-more:hover {
    opacity: 1;
    transition: 0.4s;
}
.php-email-form button[type=submit] {
    background-color: #428bca;
    display: block;
    align-items: left;
    font-size: 16px;
    text-align: center;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
}
.php-email-form button[type=submit]:hover {
    background-color: #acb2b4;
}
.social, .social2 {
    display: block;
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}
.social a {
    font-size: 14px;
    line-height: 50px;
    display: inline-block;
    background-color: #acb2b4;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}
.social2 a {
    font-size: 14px;
    line-height: 50px;
    display: inline-block;
    background-color: #acb2b4;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}
.social a:hover, .social2 a:hover {
    background-color: #428bca;
    color: #fff;
    transition: 0.3s;
}

/*   Global Style // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    .container {
        max-width: 860px;
        margin: 0 auto;
        overflow: auto;
        padding: 0 40px;
    }
    .container-wrap {
        margin-top: 50px;
        margin-bottom: 50px;
        transition: 0.6s ease;
    }
    .section-title h2 {
        font-size: 26px;
        transition: 0.6s ease;
    }
    .section-title p {
        font-size: 14px;
        margin-bottom: 30px;
        text-align: center;
        transition: 0.6s ease;
    }
    .section-copy h4 {
        font-size: 14px;
        transition: 0.6s ease;
    }
    .grid-3 {
        gap: 15px;
        padding: 0 10px;
        transition: 0.6s ease;
    }
    .grid-4{
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        transition: 0.6s ease;
    }
    #section-2-divisions .grid-4{
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
        transition: 0.6s ease;
    }
    .grid-5 {
        margin-bottom: 10px;
        gap: 10px;
        transition: 0.6s ease;
    }
    .grid-team {
        margin-bottom: 10px;
        transition: 0.6s ease;
    }
    #header h2 {
        margin-bottom: 25px;
        font-size: 40px;
        font-weight: 400;
		transition: 0.6s ease;
    }
    .header-container {
        width: 100%;
        height: calc(100vh - 500px);
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
        overflow: hidden;
    }
    .grid-33{
        padding: 0 100px;
    }
}

/*   Global Style // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    .container {
        max-width: 580px;
        margin: 0 auto;
        overflow: auto;
        padding: 0 10px;
    }
    .section-title h2 {
        font-size: 20px;
        margin-bottom: 5px;
        transition: 0.6s ease;
    }
    .section-title p {
        font-size: 12px;
        margin-bottom: 0;
        text-align: center;
        transition: 0.6s ease;
    }
    .grid-3 {
        display: flex;
        gap: 5px;
        padding: 0;
        flex-direction: column;
        transition: 0.6s ease;
    }
    .grid-4{
        display: flex;
        padding: 0 5px;
        flex-direction: column;
        background-color: #fff;
        transition: 0.6s ease;
    }
    #section-2-divisions .grid-4{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        transition: 0.6s ease;
    }
    .section-img {
        max-width: 200px;
        margin-bottom: 15px;
        height: auto;
    }
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 10px;
        gap: 10px;
        transition: 0.6s ease;
    }
    .section-img2, .section-img2 img {
        display: none;
        transition: 0.6s ease;
    }
    .grid-team {
        display: grid;
        margin-inline-start: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 10px;
        transition: 0.6s ease;
    }
    .grid-team3 {
        display: grid;
        margin-inline-start: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        transition: 0.6s ease;
    }
    .grid-1 {
        display: flex;
        padding: 0 10px;
        flex-direction: column;
        transition: 0.6s ease;
    }
    #contact .grid {
        grid-template-columns: 100%;
        gap: 0;
        transition: 0.6s ease;
    }
    #contact .grid-1 {
        display: grid;
        padding-top: 10px;
        grid-template-columns: 100%;
        justify-content: center;
        align-items: center;
        height: 100%;
        transition: 0.6s ease;
    }
    .php-email-form button[type=submit] {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        transition: 0.4s;
    }
    #header h2 {
        margin-bottom: 12px;
        font-size: 22px;
        font-weight: 400;
		transition: 0.6s ease;
    }
    .header-container {
        width: 100%;
        height: calc(100vh - 500px);
        background-size: cover;
        background-position: top right;
        background-repeat: no-repeat;
        overflow: hidden;
    }
    .grid-33{
        padding: 0;
    }
}

/*--------------------------------------------------------------
//   Hamburger Menu
--------------------------------------------------------------*/

.menu-wrap {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
}
.menu-wrap .toggler {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: none;
    opacity: 0;
}
.menu-wrap .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 60px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-wrap .hamburger > div {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #fff;
    opacity: .3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.menu-wrap .toggler:hover ~ .hamburger > div {
    display: block;
    opacity: 1;
    transition: all 0.4s ease;
}
.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
}
.menu-wrap .hamburger > div:after {
    top: 10px;
}
.menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
}
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
}
.menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}
.menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.75s;
}
.menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease;
}
.menu-wrap .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}
.menu-wrap .menu > div {
    background-color: rgba(24, 39, 51, 0.90);
    visibility: visible;
    border-radius: 50%;
    width: 300vw;
    height: 300vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.4s ease;
}
.menu-wrap .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 14px;
    padding: 18px;
}
.menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li > a:hover {
    opacity: 1;
    color:#000;
    background-color: #999;
    padding: 8px;
    transition: opacity 0.5s ease;
}

/*   Hamburger // Tablet   */
/*------------------------------------------------------------*/

@media(min-width: 900px) {
    .menu-wrap {
        visibility: hidden;
        display: none;
        opacity: 0;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   Navbar
--------------------------------------------------------------*/

#navbar {
    background-color: #2b3e44;
    height: 70px;
    position: sticky;
    width: 100vw;
    top: 0;
    z-index: 100;
}
.logo-nav img {
    width: 280px;
    margin-top: 5px;
}
.navbar ul {
    display: flex;
    padding: 0;
}
.navbar ul li{
    display: inline-block;
    position: relative;
    line-height: 21px;
    text-align: left;
    margin-right: -15px;
}
.navbar ul li a{
    display: block;
    padding: 8px 15px;
    color: #fff;
    opacity: 0.5;
}
.navbar ul li a:hover{
    opacity: 1;
}
.navbar ul li ul.dropdown{
    width: 350px;
    background: #2b3e44;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
}
.navbar ul li:hover ul.dropdown{
    display: block;
    padding-bottom: 10px;
}
.navbar .flex {
    justify-content: space-between;
}

/*   Navbar // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #navbar {
        height: 100px;
        transition: 0.6s ease;
    }
    .navbar .flex {
        display: block;
        left: 0;
        top: 0;
        transition: 0.6s ease;
    }
    .navbar ul {
        width: 10px;
        top: 0;
        left: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.6s ease;
    }
    .navbar ul li{
        visibility: hidden;
        opacity: 0;
        line-height: 10px;
        text-align: left;
        margin-right: 0;
    }
    .navbar ul li a{
        visibility: hidden;
        opacity: 0;
        padding: 0px;
    }
    .navbar ul li ul.dropdown{
        visibility: hidden;
        opacity: 0;
        width: 10px;
    }
    .logo-nav img {
        width: 250px;
        margin-top: 40px;
        transition: 0.6s ease;
    }
}

/*   Navbar // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    .logo-nav img {
        width: 160px;
        margin-top: 40px;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   Hero
--------------------------------------------------------------*/

#hero {
	height: calc(100vh - 70px);
	overflow:hidden;
	position: relative;
}
.showcase .slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1; 
	display: none;
	animation: slide 2s ease;
}
.showcase .slide.active {
	display: flex;
}
@keyframes slide {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
.showcase .container {
    margin-top: auto;
    margin-bottom: auto;
}
.showcase .caption {
   width:70%;
   overflow-y: hidden;
}
.showcase .copyBox {
    overflow-y: hidden;
}
.showcase .caption h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 400;
    text-align: left;
    overflow-y: hidden;
}
.showcase .caption p {
    width: 90%;
    font-weight: 500;
    color: #fff;
    text-align: left;
    overflow-y: hidden;
}
.showcase .slide.active .caption h2 {
	opacity:0;
	animation: moveDown 1s ease forwards;
    overflow-y: hidden;
	animation-delay: .4s;
}
.showcase .slide.active .caption .copyBox {
	opacity: 0;
	animation: moveUp 1s ease forwards;
    overflow-y: hidden;
	animation-delay: .8s;
}
.showcase .slide.active .caption .btn-more {
    overflow-y: hidden;
	animation: moveUpBtn 2s ease-in-out none;
}
@keyframes moveDown {
	0% {
		opacity:0; transform: translateY(-40px);
	}
	100%{
	 opacity:1; transform: translateY(0px);	
	}
}
@keyframes moveUp {
	0% {
		opacity:0; transform: translateY(40px);
	}
	100%{
	 opacity:1; transform: translateY(0px);	
	}
}
@keyframes moveUpBtn {
	0% {
		opacity:0; transform: translateY(40px);
	}
	100%{
	 opacity:.4; transform: translateY(0px);	
	}
}
.showcase .controls .prev,
.showcase .controls .next {
 position: absolute;
 z-index:2;
 top:50%;
 height:60px;
 width: 60px;
 margin-top: -20px;
 color:#fff;
 opacity: .5;
 text-align: center;
 line-height: 62px;
 font-size:30px;
 cursor:pointer;
 transition: all .5s ease;
}
.showcase .controls .prev:hover,
.showcase .controls .next:hover {
	background-color: #999;
    opacity: 1;
}
.showcase .controls .prev {
 left:0;
}
.showcase .controls .next {
 right:0;
}
.showcase .indicator {
	position: absolute;
	cursor:pointer;
	left:50%;
	bottom:30px;
	z-index: 2;
	transform: translateX(-50%);
}
.showcase .indicator div {
	display: inline-block;
	width:20px;
	height: 20px;
	color:#ffffff;
	opacity: .2;
	background-color: #fff;
	border-radius:50%;
	text-align: center;
	line-height: 18px;
	margin:0 10px;
}
.showcase .indicator div.active{
 background-color: #fff;
 opacity: .7;
}

/*   Hero // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #hero {
        height: 500px;
        transition: 0.6s ease;
    }
    .controls{
		display: none;
		visibility: hidden;
    	opacity: 0;
		transition: 0.6s ease;
	}
	.showcase .caption {
		width:90%;
		transition: 0.6s ease;
	}
	.showcase .caption h2 {
		margin-bottom: 25px;
		font-size: 40px;
		font-weight: 400;
		transition: 0.6s ease;
	}
	.showcase .caption p {
		width: 95%;
		font-weight: 400;
		transition: 0.6s ease;
	}
    .showcase .indicator div {
        line-height: 10px;
        width:15px;
        height: 15px;
        transition: 0.6s ease;
    }
}

/*   Hero // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #hero {
        height: 300px;
        transition: 0.6s ease;
    }
    .showcase .caption {
		width:100%;
        overflow-y: hidden;
		transition: 0.6s ease;
	}
    .showcase .copyBox {
        overflow-y: hidden;
    }
    .showcase .caption h2 {
		margin-bottom: 25px;
		font-size: 20px;
		font-weight: 400;
		transition: 0.6s ease;
	}
	.showcase .caption p {
        font-size: 12px;
		width: 95%;
		font-weight: 400;
		transition: 0.6s ease;
	}
    .showcase .btn-more{
		display: none;
		visibility: hidden;
    	opacity: 0;
		transition: 0.6s ease;
	}
    .showcase .indicator div {
        line-height: 7px;
        width:10px;
        height: 10px;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   SECTION 1 - About
--------------------------------------------------------------*/

#section-1 {
    background-color: #f5f9fc;
    overflow: hidden;
    position: relative;
}
#section-1 .section-title {
    max-width: 1000px;
    overflow-y: hidden;
}
#section-1 .section-title p {
    text-align: left;
    font-style: italic;
    overflow-y: hidden;
    color: #666;
}
.about-container {
    max-width: 1100px;
    overflow-y: hidden;
    margin-right: auto;
    margin-left: auto;
    padding: 40px;
    margin-top: 100px;
    margin-bottom: 100px;
    background-color: #fff;
    box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}
#section-1 .grid-1 {
    display: flex;
    flex-direction: column;
}
.about-img {
    padding-bottom: 30px;
}

/*   SECTION 1 - About // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    .about-container {
        margin-top: 50px;
        margin-bottom: 50px;
        transition: 0.6s ease;
    }
    #section .section-title {
        padding: 0 100px;
        text-align: center;
        overflow: hidden;
        transition: 0.6s ease;
    }
}

/*   SECTION 1 - About // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    .about-container {
        padding: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
        overflow-y: hidden;
        transition: 0.6s ease;
    }
    #section .section-title {
        padding: 0 10px;
        overflow-y: hidden;
        transition: 0.6s ease;
    }
    /*.about-img img {
    margin-bottom: -20px;
    }*/
}

/*--------------------------------------------------------------
//   SECTION 2 - Divisions
--------------------------------------------------------------*/

#section-2 {
    background-color: #fff;
    position: relative;
}

/*   SECTION 2 - Divisions // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #section-2 .section-title p {
        margin-bottom: 20px;
    }
}

/*--------------------------------------------------------------
//   SECTION 3 - Quote
--------------------------------------------------------------*/

#section-3 {
    width: 100%;
    height: auto;
    max-height: 550px;
    padding: 0;
    overflow: hidden;
}
#section-3 h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 500;
}
#section-3 p {
    font-style: italic;
    color: #fff;
}
#section-3 .container {
    display: flex;
    max-height: 550px;
    align-items: center;
    height: 100%;
}
.quote-container {
    width: 100%;
    height: calc(100vh - 300px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

/*   SECTION 3 - Quote //  Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #section-3, .quote-container {
        max-height: 350px;
        transition: 0.6s ease;
    }
    #section-3 h2 {
        font-size: 38px;
        font-weight: 600;
        margin-bottom: 16px;
    }
}

/*   SECTION 3 - Quote // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #section-3, .quote-container {
        max-height: 190px;
        transition: 0.6s ease;
    }
    #section-3 h2 {
        font-size: 20px;
        margin-bottom: 12px;
        transition: 0.6s ease;
    }
    #section-3 h2 br {
        display: none;
    }
    #section-3 p {
        font-style: italic;
        font-size: 13px;
        color: #fff;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   SECTION 4 - Team
--------------------------------------------------------------*/

#section-4 {
    background-color: #fff;
}
#section-4 .section-wrap {
    max-width: 1000px;
    justify-content: center;
    overflow-y: hidden;
    margin-left: auto;
    margin-right: auto;
}

/*   SECTION 4 - Team // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    /*#section-4 .section-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        max-width: 500px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        transition: 0.6s ease;
    }*/
}

/*   SECTION 4 - Team // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #section-4 .section-title p {
        margin-bottom: 20px;
    }
    #section-4 .section-wrap {
        display: grid;
        margin-inline-start: 0;
        overflow-y: hidden;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 5px;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   SECTION 5 - Members
--------------------------------------------------------------*/

#section-5 {
    background-color: #f5f9fc;
    position: relative;
}

/*   SECTION 5 - Members // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #section-5 .section-title p {
        margin-bottom: 20px;
    }
    #section-5 .section-img img {
        transform: scale(1.3);
    }
    #section-5 .section-img img {
        transition: 0.3s;
        transform: scale(1.3);
    }
    #section-5 .section-img:hover img {
        transform: scale(1.4);
    }
    #section-5 .section-img {
        max-width: 400px;
        margin-bottom: 15px;
        height: auto;
    }
}

/*--------------------------------------------------------------
//   SECTION 6 - Contact
--------------------------------------------------------------*/

#contact {
    background-color: #fff;
}
#contact .section-wrap {
    margin-top: 100px;
}
.contact-container {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    margin-top: 40px;
}
.php-email-form .form-row {
    margin-bottom: 20px;
    opacity: .5;
}
.php-email-form input, .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    background-color: #fff;
}
.php-email-form input::focus, .php-email-form textarea::focus {
    background-color: #428bca;
}
.php-email-form input {
    padding: 10px 15px;
}
.php-email-form textarea {
    padding: 12px 15px;
}
.php-email-form .my-3 .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
.php-email-form .my-3 .error-message br + br {
    margin-top: 25px;
  }
.php-email-form .my-3 .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
.php-email-form .my-3 .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
.php-email-form .my-3 .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
}

/*   SECTION 6 - Contact // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #contact .section-wrap {
        margin-top: 60px;
        transition: 0.6s ease;
    }
}

/*   SECTION 6 - Contact // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #contact .section-wrap {
        margin-top: 40px;
        transition: 0.6s ease;
    }
    #contact .section-title p br {
        display: none;
    }
}

/*--------------------------------------------------------------
//   ( NEW PAGE ) - Divisions
--------------------------------------------------------------*/

#section-1-divisions {
    background-color: #fff;
}
#section-2-divisions {
    background-color: #f5f9fc;
}
#section-3-divisions {
    background-color: #fff;
}
#section-1-divisions .container, #section-2-divisions .container {
    max-width: 1000px;
}

/*--------------------------------------------------------------
//   ( NEW PAGE ) - Members
--------------------------------------------------------------*/

#section-1a-members, #section-2a-members, #section-3a-members {
    padding-top: 150px;
    padding-bottom: 40px;
    background-color: #f5f9fc;
}
#section-1b-members, #section-2b-members, #section-3b-members {
    background-color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}
.mem-a {
    height: 300px;
    width: auto;
    background-color: #f5f9fc;
    padding: 30px 10px 20px 30px;
}
.mem-b {
    height: 300px;
    width: auto;
    background-color: #999;
    opacity: .2;
    padding: 30px 10px 20px 30px;
}
.mem-b h5, .mem-b h4, .mem-b ul li, .mem-b .social {
    opacity: 0;
}
.mem-a h5 {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    color: #9eccf4;
    margin: 0;
    padding: 0;
}
.mem-a h4 {
    font-size: 22px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
    color: #5c768d;
}
.mem-a ul li {
    font-size: 15px;
    color: #888;
}
.mem-a .social {
    text-align: left;
    opacity: .4;
}
hr { 
    width: 100%;
    height: 5px;
    border: 0 none;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    margin-bottom:50px;
    background-color: #2b3e44;
    opacity: .2;
}

/*   NEW PAGE - Members // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    .mem-a h4 {
        font-size: 20px;
        margin: 20px 0;
        transition: 0.3s;
    }
    .mem-a ul li {
        font-size: 13px;
        transition: 0.3s;
    }
    .mem-a .social a {
        font-size: 10px;
        line-height: 42px;
        width: 32px;
        height: 32px;
        transition: 0.3s;
    }
    hr { 
        height: 4px;
        transition: 0.6s ease;
    }
}

/*   NEW PAGE - Members // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    .mem-a, .mem-b {
        height: 235px;
        width: 250px;
        padding: 20px 10px 20px 10px;
        margin: 5px;
       text-align: center;
    }
    .mem-a h4 {
        text-align: center;
        font-size: 17px;
        margin: 10px 0;
        transition: 0.3s;
    }
    .mem-a ul li {
        text-align: center;
        font-size: 12px;
        transition: 0.3s;
    }
    .mem-a .social a {
        text-align: center;
        font-size: 10px;
        line-height: 42px;
        width: 32px;
        height: 32px;
        transition: 0.3s;
    }
    .mem-a .social {
        text-align: center;
    }
    hr { 
        height: 3px;
        transition: 0.6s ease;
    }
}

/*--------------------------------------------------------------
//   ( NEW PAGE ) - Executive Team
--------------------------------------------------------------*/

#section-1-ext .section-wrap {
    margin-top: 100px;
    margin-bottom: 100px;
}
.executive-image {
    margin-bottom: auto;
}
.executive-bio {
    top: 0;
    margin-bottom: auto;
}
.executive-info1 ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #5c768d;
    font-size: 14px;
}
.executive-info1 a {
    color: #999;
    padding-right: 12px;
    padding-left: 12px;
}
.executive-info1 a:hover {
    color: #000;
}
.executive-info1 {
    background-color: #eee;
    padding: 30px;
    box-shadow: 0px 0 30px rgba(31, 53, 72, 0.08);
    margin-bottom: 30px;
}
.executive-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(31, 53, 72, 0.08);
    margin-bottom: 30px;
}
.executive-info h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.executive-info ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.executive-info .social {
    text-align: left;
}
.executive-description h2 {
    margin-top: 40px;
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
    color: #666;
}
.executive-description h6 {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #666;
}
.executive-description p {
    color: #666;
    font-weight: 400;
    font-size: 16px;
    padding-right: 50px;
    padding-top: 20px;
}

/*   NEW PAGE - Executive Team // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #section-1-ext .grid {
        display: flex;
        flex-direction: column;
        gap: 2px;
        transition: 0.6s ease;
    }
    .executive-bio {
        margin: 0 10px;
        text-align: center;
        align-items: center;
        transition: 0.6s ease;
    }
    .executive-description p {
        padding-right: 0;
        transition: 0.6s ease;
    }
    .executive-info .social {
        text-align: center;
        transition: 0.6s ease;
    }
}

/*   NEW PAGE - Executive Team // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    .executive-bio {
        width: auto;
        transition: 0.6s ease;
    }
    #section-1-ext h3 {
        font-size: 24px;
        margin-bottom: 0;
        margin-top: 10px;
        transition: 0.6s ease;
    }
    #section-1-ext ul {
        font-size: 12px;
        transition: 0.6s ease;
    }
    #section-1-ext h2 {
        font-size: 20px;
        transition: 0.6s ease;
    }
    #section-1-ext p {
        margin-top: 10px;
        font-size: 12px;
        transition: 0.6s ease;
    }
    .executive-description h6 {
        margin-bottom: 0;
        margin-top: 10px;
    }
    .executive-info {
        margin-top: 0;
		transition: 0.6s ease;
    }
    .executive-info1 {
        margin-bottom: 0;
        display: none;
		visibility: hidden;
    	opacity: 0;
		transition: 0.6s ease;
    }
    #section-1-ext .section-wrap {
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
//   Footer
--------------------------------------------------------------*/

#footer {
    background-color: #2b3e44;
    height: 300px;
    width: 100vw;
    position: relative;
    overflow: hidden;
}
.footer-img-logo {
    display: block;
    align-items: center;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
}
#footer img {
    height: 110px;
    width: auto;
}
#footer p {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #fff;
    opacity: 50%;
}

/*   Footer // Tablet   */
/*------------------------------------------------------------*/

@media(max-width: 900px) {
    #footer {
        height: 200px;
        transition: 0.6s ease;
    }
    .footer-img-logo {
        margin-top: 50px;
        transition: 0.6s ease;
    }
    #footer img {
        height: 80px;
        transition: 0.6s ease;
    }
    #footer p {
        padding-top: 5px;
        font-size: 11px;
        transition: 0.6s ease;
    }
}

/*   Footer // Mobile   */
/*------------------------------------------------------------*/

@media(max-width: 600px) {
    #footer {
        height: 140px;
        transition: 0.6s ease;
    }
    .footer-img-logo {
        margin-top: 25px;
        transition: 0.6s ease;
    }
    #footer img {
        height: 45px;
        transition: 0.6s ease;
    }
    #footer p {
        padding-top: 2px;
        font-size: 7px;
        transition: 0.6s ease;
    }
}