/* main style */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

@media screen and (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
	color: var(--bs-navbar-active-color);
	font-weight: 500;
}

.btn {
    border-radius: 3px;
    padding: 10px 30px;
}

header {
	box-shadow: 0px -6px 25px 4px #000000ad;
	z-index: 5;
	position: relative;
}

.logo {
	max-width: 200px;
}

@media screen and (min-width: 1600px) {
	.logo {
		max-width: 250px;
	}

	nav .navbar-nav .nav-link {
		padding: 0 2rem !important;
		font-size: 1.1rem;
	}
}

nav .navbar-nav .nav-link {
	padding: 0 1.2rem !important;
	font-size: 1rem;
}

.carousel-indicators{
	bottom: 15px !important;
}

.carousel-indicators [data-bs-target] {
	height: 5px;
	width: 20px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	width: 3.5rem;
	height: 3.5rem;
}

.section {
	padding: 120px 0;
}

.about-wrapper {
	padding-right: 10%;
	padding-top: 4%;
}

.about img{
    transition: all 500ms ease;
}

.about-img img {
	max-width: 90%;
}

.about img:hover {
	filter: grayscale(80%);
}

.highlights .img-box img {
	width: 100%;
	transition: all .5s ease-in-out;
}

.highlights .img-box:hover img {
	scale: 1.1;
}

.highlights .img-box {
    position: relative;
}

.highlights .img-box {
	position: relative;
	overflow: hidden;
}

.highlights .img-box .wrapper {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0, 0.3);
	color: #fff;
	display: flex;
	text-align: center;
	flex-direction: column;
	justify-content: center;
	transition: all .5s ease-in-out;
}

.highlights .img-box:hover .wrapper{
    border: 1px solid #ccc;
    background: rgba(0,0,0, 0.6);
}

.getInTouch {
	padding: 120px 0;
	background-image: url('../images/bg_ab2.jpg');
}

.getInTouch h1 {
	font-size: 3.5rem;
	letter-spacing: 2px;
	margin-bottom: 2rem;
}

.getInTouch .btn {
	padding: 1rem 3rem;
	font-size: 1.3rem;
	border-radius: 0;
}

.btn-dark:hover {
	background-color: #960b15;
}


.members {
	padding: 120px 0;
	background: #edf1f4;
}

.members .member-box {
	background: #fff;
	margin-bottom: 15px;
    text-align: center;
    transition: all 500ms ease;
    height: 100%;
}

.members .member-box:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.10);
	border: 1px solid #960b15;
}

.member-box h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

.member-box p {
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0;
}

.members .member-box img {
	width: 200px;
	margin: 15% auto 10%;
	border-radius: 50%;
}

.footer {
	background: rgb(63, 68, 72);
	padding: 120px 0;
	color: #b9b9b9;
}

.social-links {
	margin-top: 15px;
}

.social-links li a {
	background-color: transparent;
	--icon-padding: 0.8em;
	border-style: solid;
	border-width: 2px;
	border-color: #ffffff1a;
	color: #ccc;
	padding: 10px;
	margin-top: 10px;
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
}

.social-links li a:hover {
	background: #960b15;
  }

.footer-menu .footer-link {
	color: #9ea0a6;
	text-decoration: none;
}

.footer-menu .footer-link:hover {
	color:  #ef5050;
	text-decoration: underline;
}

.footer-menu li{
    margin-bottom: 6px;
}


.page-hero-banner {
	padding: 120px 0;
	background: url(../images/bg-breadcrumb.jpg) no-repeat;
	color: #fff;
	background-size: cover;
}

.leadership {
	padding: 120px 0;
}

#ContactForm input, #ContactForm textarea {
	min-height: 40px;
	padding: 15px;
	border-radius: 0;
	border-color:#d7dae1;
}

.form-msg .close-btn {
	position: absolute;
	height: 35px;
	width: 35px;
	text-align: center;
	color: #fff;
	top: -15px;
	right: -10px;
}

@media screen and (max-width: 768px) {
    .section, .page-hero-banner, .leadership, .footer {
    	padding: 60px 0;
    }
    .about-img img {
    	max-width: 100%;
    }
}