@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('../css/bootstrap.min.css');

body {
    color: var(--black-color);
    font-family: var(--main-font);
    font-weight: normal;
    margin: 0px;
    overflow-x: hidden;
    padding: 0px;
}

:root {
    --main-font: 'Catamaran', sans-serif, Arial, Helvetica;
    --main-color: #34344C;
    --white-color: #ffffff;
    --black-color: #000000;
    --green-color: #D03A3A;
    --deep-color: #D03A3A;
    --grey-color: #F2F2F2;
    --button-color: #ffffff;
}

a {
    color: #08559B;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

*:focus {
    outline: none;
}

button:active, button:focus, .btn:active, .btn:focus {
    box-shadow: none;
    outline: none !important;
}

.img-responsive, .navbar-brand > img {
    display: inline-block;
    width: 200px;
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--main-color);
    font-family: var(--main-font);
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

h4 {
    font-size: 22px;
}

p, li {
    color: var(--main-color);
    font-family: var(--main-font);
    font-size: 15px;
    font-weight: 400;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p strong {
    font-weight: 700;
}

.clearfix {
    clear: both;
    margin: 0px;
    padding: 0px;
}

nav{
    margin-bottom: 10px;
}
.center {
    text-align: center;
}

.navbar .navbar-brand {
    margin: 0 1rem 0 0;
    max-width: 126px;
}

.navbar .navbar-nav {
    margin-top: 5%;
}

.navbar .navbar-nav .nav-item {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
}

.navbar .navbar-nav .nav-link {
    color: var(--main-color);
    padding: .5rem 0rem;
    margin-left: 5rem;
}

.navbar .navbar-nav .nav-link:hover {
    border-bottom: 1px solid var(--green-color);
}

.navbar .navbar-nav .nav-link.active {
    border-bottom: 1px solid var(--green-color);
}

.nav-expander {
    display: none;
}

body.nav-expanded {
    margin-left: 0em;
    position: relative;
    transition: right 0.4s ease-in-out 0s;
    -webkit-transition: right 0.4s ease-in-out 0s;
    -moz-transition: right 0.4s ease-in-out 0s;
    -o-transition: right 0.4s ease-in-out 0s;
    overflow: hidden;
}

.nav-expanded aside {
    left: 0;
}

aside {
    background-color: var(--main-color);
    height: 100%;
    min-height: 100%;
    padding: 15px 15px;
    left: -100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2000;
    transition: left 0.3s ease-in-out 0s;
    -webkit-transition: left 0.3s ease-in-out 0s;
}

aside #nav-close {
    display: inline-block;
    float: right;
}

aside .navbar-nav {
    margin: 50% auto 0px;
    text-align: center;
}

aside .navbar-nav .nav-item {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

aside .navbar-nav .nav-link {
    color: var(--white-color);
}

aside .navbar-nav .nav-link.active {
    color: var(--green-color);
}

.talk {
    background: url("../images/talk_bg.svg") no-repeat bottom right / contain;
    height: 100px;
    margin-top: -.5rem;
    position: absolute;
    right: 0px;
    top: 0px;
    text-align: right;
    width: 410px;
}

.talk p {
    color: var(--white-color);
    font-size: 16px;
    margin: 0px 10% 0px 0px;
    padding-top: 8%;
}

.talk p strong {
    font-weight: 600;
}

.banner {
    clear: both;
    padding: 0px;
    position: relative;
    width: 100%;
}

.banner .overlay {
    margin-top: 9%;
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
}

.banner .caption {
    background-color: var(--green-color);
    padding: 7% 5% 5% 8%;
}

.banner .caption h1 {
    color: var(--white-color);
    font-weight: 600;
}

.banner .olywwd {
    margin-top: 5%
}

.intro {
    clear: both;
    margin-bottom: 5%;
    width: 100%;
}

.intro .col:last-child {
    display: grid;
    align-content: center;
}

.intro article {
    max-width: 75%;
}

.intro article p {
    font-size: 18px;
    font-weight: 300;
}

@media only screen and (min-width: 1199px) {
    .intro article p {
        font-size: 21px;
    }
}

.mission {
    background-color: var(--white-color);
    box-shadow: 0px 3px 20px rgba(52, 52, 76, 16%);
    clear: both;
    margin-bottom: -40px;
    padding: 5% 0px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.mission h2 {
    font-weight: 300;
}

.mission h2 strong {
    line-height: 20px;
}

.mission-link {
    color: var(--black-color);
    font-weight: bold;
    text-decoration: underline;
}

.mission-link:hover {
    color: var(--black-color);
    text-decoration: underline;
}


.btn-primary {
    background-color: var(--green-color);
    border: none;
    color: var(--button-color);
    font-size: 17px;
    font-weight: 600;
    line-height: 50px;
    margin-left: 6%;
    max-width: 220px;
    width: 100%;
}

.btn-primary:hover {
    background-color: var(--deep-color);
    color: var(--white-color);
}

footer {
    background-color: var(--main-color);
    color: var(--white-color);
    clear: both;
    font-size: 14px;
    font-weight: 300;
    padding: 60px 0px 40px;
    width: 100%;
}

footer .col:last-of-type {
    text-align: right;
}

footer a {
    color: var(--white-color);
    margin: 0px .5rem;
}

footer a:hover {
    color: var(--green-color);
}

.key {
    clear: both;
    padding: 5% 0px;
    text-align: center;
    width: 100%;
}

.key h3 {
    font-weight: 300;
}

.key h3 strong {
    font-weight: 700;
}

.feature {
    background-color: var(--grey-color);
    clear: both;
    margin-bottom: 5%;
    width: 100%;
}

.feature:nth-child(even) {
    background: none;
}

.feature .col:first-of-type {
    padding: 0px;
}

.feature .col:last-of-type {
    display: grid;
    align-content: center;
}

.feature article {
    max-width: 380px;
}

.feature h4 {
    font-weight: 700;
}

.feature p {
    font-size: 17px;
}

.dk-hide {
    display: none !important;
    padding: 0px;
    visibility: hidden !important;
}

.sm-hide {
    display: block !important;
    padding: 0px;
    visibility: visible !important;
}

.contact {
    clear: both;
    width: 100%;
}

.contact .col:last-of-type {
    padding: 0px;
}

.contact h1 {
    font-weight: bold;
    margin-bottom: 45px;
}

.contact h3 {
    font-weight: 300;
    margin-bottom: 45px;
}

.contact address {
    background-color: var(--green-color);
    clear: both;
    padding: 65px;
    max-width: 450px;
	color: white;
	font-weight: 300;
	font-size: 23px;
}

.contact address a{
	color: white;
	text-decoration: underline;
}

/*---------------
    Media Query
-------------------------*/
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    .col {
        flex-basis: auto;
    }

    .navbar .navbar-brand {
        margin-top: 30px;
        max-width: 113px;
    }

    .navbar .navbar-nav {
        display: none;
    }

    .nav-expander {
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 45px;
        z-index: 2;
    }

    .talk {
        background-position: 220% bottom;
    }

    .talk p {
        margin-right: 15px;
        padding-top: 5%;
    }

    .banner .overlay {
        background-color: var(--green-color);
        margin: 0px 0px 30px;
        position: relative;
    }

    .banner .caption {
        padding: 15% 15px;
    }

    .banner h1 {
        margin: 0 auto;
        max-width: 230px;
    }

    .mission {
        padding: 30px 30px;
        text-align: center;
    }


    .mission h2 {
        margin-bottom: 35px;
    }

    .btn-primary {
        line-height: 40px;
    }

    footer {
        font-size: 20px;
    }

    footer .col:last-of-type {
        margin-top: 35px;
        text-align: left;
    }

    footer a {
        margin: 0px .1rem;
    }

    footer .dk-hide {
        height: 100px;
    }

    .feature .col:first-of-type {
        padding: 0px 13px;
    }

    .feature {
        background: none;
    }

    .feature article {
        margin-top: 30px;
    }

    .dk-hide {
        display: block !important;
        visibility: visible !important;
    }

    .sm-hide {
        display: none !important;
        visibility: hidden !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 23px;
    }

    .navbar-nav {
        flex-direction: row;
    }

    .navbar .navbar-brand {
        margin: 20px 0px;
        max-width: 113px;
    }

    .navbar .navbar-nav .nav-link {
        margin-left: 2.5rem;
    }

    .banner .overlay {
        margin-top: 5%;
    }

    .btn-primary {
        line-height: 40px;
    }

    .banner .olywwd h1 {
        font-size: 30px;
    }

    .banner .olywwd .caption {
        padding: 5% 3% 3% 7%;
    }

    .feature article {
        max-width: 290px;
    }

    .feature p {
        font-size: 15px;
    }

    .contact article {
        margin-left: 8%;
    }

    .contact h3 {
        font-size: 18px;
    }

    .contact figure {
        width: 270px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .banner .olywwd .caption {
        padding: 5% 3% 3% 7%;
    }
}
