/*---------------------------------------------------------------------
File Name: style.css
UPDATED COLOR SCHEME – Flash Soccer Camps
---------------------------------------------------------------------*/

/*---------------------------------------------------------------------
IMPORT FONTS
---------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

/*---------------------------------------------------------------------
RESET / BASE
---------------------------------------------------------------------*/
* { box-sizing: border-box !important; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background: #f4f4f4;
    line-height: 1.8;
}

a {
    color: #0b2545;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
}

a:hover { color: #1f7a1f; }

img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
    color: #0b2545;
    font-weight: 600;
    margin: 0;
}

p {
    font-size: 17px;
    line-height: 26px;
}

/*---------------------------------------------------------------------
HEADER / NAV
---------------------------------------------------------------------*/
.header {
    width: 100%;
    height: 107px;
    padding: 27px 30px;
    background: #0b2545;
    position: absolute;
    z-index: 999;
}

.navigation.navbar-dark .navbar-nav .nav-link {
    padding: 15px 30px;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 30px;
}

.navigation.navbar-dark .navbar-nav .nav-link:hover,
.navigation.navbar-dark .navbar-nav .active > .nav-link {
    background: #1f7a1f;
    color: #ffffff;
}

/*---------------------------------------------------------------------
BANNER / SLIDER
---------------------------------------------------------------------*/
.full_bg { background: #f4f4f4; }

.relative h3 {
    font-size: 68px;
    color: #0b2545;
    font-weight: bold;
    padding: 60px 0;
}

#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next {
    width: 66px;
    height: 66px;
    background-color: #0b2545;
    color: #fff;
    border-radius: 50%;
}

#carouselExampleIndicators .carousel-control-prev:hover,
#carouselExampleIndicators .carousel-control-next:hover {
    background-color: #1f7a1f;
}

/*---------------------------------------------------------------------
FEATURE / CLASS BOXES
---------------------------------------------------------------------*/
.class {
    padding: 140px 0 60px;
}

.class_box {
    background: #1f7a1f;
    border-radius: 10px;
    padding: 40px 50px 75px;
    transition: all .4s ease;
}

.class_box h3,
.class_box p {
    color: #ffffff;
}

.blue {
    background: #0b2545;
}

/*---------------------------------------------------------------------
ABOUT SECTION
---------------------------------------------------------------------*/
.about {
    background: linear-gradient(
        rgba(11,37,69,0.9),
        rgba(11,37,69,0.9)
    ), url(../images/about_bg.jpg);
    background-size: cover;
    padding-top: 90px;
}

.about .titlepage h2,
.about .titlepage p {
    color: #ffffff;
}

.about .read_more {
    background: #1f7a1f;
    color: #ffffff;
}

/*---------------------------------------------------------------------
TESTIMONIALS
---------------------------------------------------------------------*/
.testimonial {
    background: #0b2545;
    padding: 90px 0;
}

.testimonial .titlepage h2 {
    color: #ffffff;
}

.test_box {
    background: #1f7a1f;
    border-radius: 20px;
    padding: 0 20px 40px;
}

.test_box h4,
.test_box p {
    color: #ffffff;
}

.white_bg {
    background: #f4f4f4;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

/*---------------------------------------------------------------------
BUTTONS
---------------------------------------------------------------------*/
.read_more {
    font-weight: bold;
    text-transform: uppercase;
    color: #0b2545;
}

.read_more:hover {
    color: #1f7a1f;
}

.subsci_btn,
.send_btn {
    background: #1f7a1f;
    color: #ffffff;
    border-radius: 10px;
}

.subsci_btn:hover,
.send_btn:hover {
    background: #0b2545;
}

/*---------------------------------------------------------------------
CONTACT
---------------------------------------------------------------------*/
.contact {
    background: #f4f4f4;
    padding: 90px 0;
}

.main_form input,
.main_form textarea {
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(31,122,31,0.4);
}

/*---------------------------------------------------------------------
FOOTER
---------------------------------------------------------------------*/
.footer {
    padding-top: 120px;
    background: #0b2545;
    color: #ffffff;
    text-align: center;
}

.footer a { color: #ffffff; }

.footer a:hover { color: #1f7a1f; }

ul.social_icon li a {
    background: #163a6b;
}

ul.social_icon li a:hover {
    background: #1f7a1f;
}

.copyright {
    margin-top: 90px;
    padding: 25px 0;
    background: #1f7a1f;
}

.copyright p {
    color: #ffffff;
    font-size: 16px;
}
