/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --red: #571b61;
    --lightred: #003100;
    --blue: #0d5c97;
    --lightblue: #b3cfe6;
    --white: #fff;
}

body {
    background: var(--white);
    color: #2f3138;
    font-family: "Open Sans", sans-serif;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: var(--red);
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: var(--blue);
}

.main-page {
    margin-top: 70px;
}


/* Prelaoder */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: var(--white) url("../img/preloader.svg") no-repeat center center;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--red);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--lightred);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/* Sections Header
--------------------------------*/

.section-header {
    margin-bottom: 60px;
    margin-top: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--lightred);
    bottom: 0;
    left: calc(50% - 50px);
}

.section-header h2 {
    font-size: 36px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

@media (max-width: 574px) {
    .section-header {
        margin: 30px 0;
    }
    .section-header h2 {
        font-size: 30px;
    }
}

.section-header p {
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: rgb(127, 127, 127);
}

.section-with-bg {
    background-color: rgb(245, 248, 251);
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 90px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header.header-scrolled,
#header.header-inner {
    background: var(--white);
    height: 70px;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 span {
    color: var(--red);
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}

@media (max-width: 992px) {
    #header #logo img {
        max-height: 35px;
    }
}


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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 12px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue);
    font-family: "arial", sans-serif;
    font-weight: 600;
    font-size: 15pt;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    padding: 6px 4px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 14pt;
    line-height: 0;
    margin-left: 5px;
}

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--red);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--blue);
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--blue);
    font-size: 32px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--blue);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--blue);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--red);
}

.navbar-mobile .getstarted {
    margin: 15px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero-bg.jpg) top center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

#hero:before {
    content: "";
    /* background: #ffffffcb; */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero #wordmark {
    margin: 20px 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 50px;
    left: 0;
    top: 0px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 10px;
}

@media (max-width: 991px) {
    #hero .hero-container {
        top: 70px;
    }
}

#hero p {
    color: var(--lightred);
    font-weight: 700;
    font-size: 20pt;
}

@media (max-width: 991px) {
    #hero p {
        font-size: 16px;
    }
}

#hero .about-btn {
    font-family: "montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: var(--white);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: var(--blue);
}

#hero .about-btn:hover {
    background: var(--red);
    color: var(--white);
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
About us
--------------------------------------------------------------*/

#aboutus {
    padding: 50px 350px;
}

#aboutus .whyus h1 {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    color: var(--red);
    text-align: left;
}

#aboutus .whyus h1 li {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    margin: 20px;
    color: var(--lightred);
}

@media (max-width: 574px) {
    #aboutus .whyus h1 li {
        font-size: 20px;
    }
    #aboutus {
        padding: 15px 20px;
    }
}


/*--------------------------------------------------------------
why choose us
--------------------------------------------------------------*/

#venue {
    padding: 50px 350px;
}


/* #venue .container-fluid {
    margin: 3px;
} */

#venue .whyus h1 {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    color: var(--red);
    text-align: left;
}

#venue .whyus h1 li {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    margin: 20px;
}

@media (max-width: 574px) {
    #venue .whyus h1 li {
        font-size: 20px;
    }
    #venue {
        padding: 15px 20px;
    }
}


/* Section why captives */

#whycaptives {
    padding: 50px 350px;
}

#whycaptives .whyus h1 {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    color: var(--blue);
    text-align: left;
}

#whycaptives .whyus h1 li {
    font-family: 'Montserrat';
    font-size: 26px;
    font-weight: 500;
    margin: 20px;
}

@media (max-width: 574px) {
    #whycaptives .whyus h1 li {
        font-size: 20px;
    }
    #whycaptives {
        padding: 15px 20px;
    }
}

#whycaptives .whyus p {
    color: var(--lightred);
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

#contact {
    padding: 60px 0;
}

#contact .contact-info {
    margin-bottom: 20px;
    text-align: center;
}

#contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--red);
}

#contact .contact-info address,
#contact .contact-info p {
    margin-bottom: 0;
    color: var(--blue);
}

#contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--blue);
}

#contact .contact-info a {
    color: var(--lightblue);
}

#contact .contact-info a:hover {
    color: var(--red);
}

#buttons {
    justify-content: center;
    margin-bottom: 50px;
    ;
}

#buttons button {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12pt;
    letter-spacing: 1px;
    display: block;
    padding: 12px 22px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    margin: 5px;
    background: var(--red);
}

#buttons button:hover {
    background-color: var(--lightred);
    color: #fff;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
}

@media (min-width: 768px) {
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

#contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

#contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #0f8a48;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #22d15d;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

#contact .php-email-form input:focus,
#contact .php-email-form textarea:focus {
    border-color: var(--red);
}

#contact .php-email-form input {
    padding: 10px 15px;
}

#contact .php-email-form textarea {
    padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
    background: var(--red);
    border: 0;
    padding: 10px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
    background: var(--lightred);
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


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

#footer {
    background: var(--blue);
    color: #eee;
    font-size: 14px;
}

#footer .footer-top {
    background: var(--blue);
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 10px;
}

#footer .footer-contact img {
    height: 40px;
    margin: 0px 10px 20px 0;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

.footer-download img {
    height: 36px;
    margin-right: 5px;
}

#footer .footer-top .social-links a {
    display: inline-block;
    background: #222636;
    color: #eee;
    line-height: 1;
    margin-right: 4px;
    margin-bottom: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .social-links a i {
    line-height: 0;
    font-size: 12pt;
}

#footer .footer-top .social-links a:hover {
    background: #bf1e2e;
    color: #fff;
}

#footer .footer-top h4 {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px solid #bf1e2e;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    text-align: center;
    font-size: 13px;
    color: #ddd;
}