@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600);
/* @import url(https://fonts.googleapis.com/css?family=Montserrat:400,500); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:'Open Sans', 'Arial', sans-serif;
    color:#444;
}

.header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100px;
    background:#eee;
    padding:10px 20px;
}

.header .logo-container {

}

.header .logo-container img {
    height:100px;
    width:100%;
    object-fit:contain;
}

.trail {
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#eee;
    padding:10px 20px;
}

.trail-socials {
    display:flex;
    align-items:center;
    gap:10px;
}

.align-center {
    text-align: center;
}

.hero {
    display:flex;
    height:500px;
    background:#ddd;
}

.hero .hero-image {
    height:100%;
    width:70%;
    background:gold;
}

.hero .hero-image img {
    height:100%;
    width:100%;
    object-fit:cover;
}

.hero .hero-text {
    width:30%;
    padding:20px;
    background:#274C9D;
    color:#fff;
}

.block-text-wrapper {
    padding:50px 150px
}

.block-text-wrapper p {
    font-weight: 400;
    font-style: normal;
    color: #111;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.block-products-services {
    display:flex;
    justify-content:center;
    padding: 50px 150px;
}

.block-products-services .container {
    display:flex;
    flex-wrap:wrap;
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px;
}

.block-products-services .product-service {
    display:flex;
    flex-direction:column;
    background:#f5f5f5;
    border-radius:10px;
    overflow:hidden;
    min-width:300px;
    flex: min-content;
}

.block-products-services .product-service img {
    height:100px;
    width:100%;
    object-fit:cover;
}

.block-products-services .product-service .product-service-text {
    padding:20px;
}

.block-photo-wrapper {
    clear: both;
    width: 100%;
    max-width: 100%;
    display: flex;
    padding: 50px 150px;
    background: #f7f7f7;
    overflow: hidden;
}

.block-photo-wrapper .photo {
    width:40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius:15px;
    overflow:hidden;
    background:gold;
}

.block-photo-wrapper .photo img {
    height:100%; width:100%;
    object-fit:cover;
}

.block-photo-wrapper .content {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.block-photo-wrapper .content p {
    font-weight: 400;
    font-style: normal;
    color: #111;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
}

.block-banner {
    clear: both;
    position: relative;
    width: 100%;
    height: auto;
    background: #000;
    overflow: hidden;
}

.block-banner img {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 400px;
    position: relative;
    z-index: 8;
    object-fit: cover;
    opacity: .5;
}

.block-banner .overlay {
    z-index: 9;
    width: 50%;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.block-banner .overlay .heading {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.block-banner .overlay p {
    color: #fff;
    font-weight: 300;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 20px;
}

.footer-info {
    display:flex;
    padding:10px 20px;
}

.footer-info-section {
    display:flex;
    flex-direction:column;
    min-width:250px;
    max-width:400px;
}

.footer-info-accreditations {
    display:flex;
}

.footer {
    display:flex;
    justify-content:space-between;
    height:100px;
    background:#111;
    padding:10px 20px;
}

