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

Name: main.css
Version: 1.0

-------------------------------------

Table of contents
        
    01. Navbar
    02. Slider
    03. About Us
    04. Some Facts
    14. Contact
    15. Footer
    16. Page Loading
    17. Media Query
*/

body {
    font-family: 'Rubik', sans-serif;
}

/*--------------------------------------------------
[1. Start Navbar]
--------------------------------------------------*/
.navbar {
    background: linear-gradient(135deg, rgba(42, 36, 43, 0) 0%, rgba(42, 36, 43, 0) 100%);
    padding: 20px 0;
    border-bottom: 3px double rgba(255, 255, 255, 0.06);
}

.navbar .nav-item {
    margin-left: 25px;
    
}

.navbar .nav-item .nav-link {
    padding: 0;
    padding-left: 25px;
    margin: 0;
    border-left: .5px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    color: #c7d3dd;
    font-weight: 500;
    transition: all .4s ease-in-out;
}

.navbar .nav-item .no-border {
    border: 0;
}

.navbar .nav-item .nav-link:hover {
    color: #2AAFC0;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
    margin-top: 25px;
    background: #142a32;
}

.navbar .navbar-nav .dropdown span {
    font-size: 10px;
    margin-left: 3px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a:hover {
    background: #13b1c5;
}


/*--------------------------------------------------
[2. Start Slider]
--------------------------------------------------*/
.slider {
    background: #192b3c;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
}

.slider .content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.slider .content h1 {
    font-size: 60px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    margin-top: 70px;
}

.slider .content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #eeeeee;
    word-spacing: 2px;
    padding: 0;
    margin: 5px 0 25px 0;
}

.slider .content .btn {
    padding: 10px 40px;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 300;
    background: #2AAFC0;
    color: #ffffff;
    margin: 0;
    border: 1px solid #2AAFC0;
    transition: all .6s ease-in-out;
}

.slider .content .btn:hover {
    background: transparent;
    border: 1px solid #fff;
}

#particles-js {
    height: 100vh;
}
  

/*--------------------------------------------------
[3. Start About]
--------------------------------------------------*/

.about-us {
    padding: 95px 0 100px 0;
}


.about-us .heading i {
    font-size: 30px;
    color: #2AAFC0;
    margin-bottom: 20px;
}

.about-us .heading h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.about-us .heading h2 span {
    color: #2AAFC0;
}

.about-us .heading p {
    font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 60px;
}

.about-us .box {
    padding: 40px 30px;
    border: 1px solid #eeeded;
    border-radius: 5px;
    margin-bottom: 30px;
}

.about-us .box .line {
    width: 30px;
    height: 2px;
    background: #2AAFC0;
    
}

.about-us .box .icon {
    font-size: 40px;
    color: #2AAFC0;
    margin-bottom: 30px;
}

.about-us .box h3 {
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    color: #212529;
    margin: 20px 0 10px 0;
}

.about-us .box p {
    font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
}

/*--------------------------------------------------
[4. Start Some Fact]
--------------------------------------------------*/

.some-facts {
    background: #192b3c;
    background-size: cover;
    color: #fff;
    padding: 50px 0;
}

.some-facts .items .icon {
    color: #2AAFC0;
    font-size: 40px;
}

.some-facts .items .counter {
    font-size: 35px;
    font-weight: 600;
    margin: 30px 0;
}

.some-facts .items .line {
    width: 30px;
    height: 2px;
    background: #2AAFC0;
    margin-bottom: 10px;
}

.some-facts .items h4 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    font-weight: 500;
}


/*--------------------------------------------------
[14. Start Contact us]
--------------------------------------------------*/
.contact {
    padding: 100px 0;
}

.contact .heading .icon {
    font-size: 30px;
    color: #2AAFC0;
    margin-bottom: 20px;
}

.contact .heading h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.contact .heading h2 span {
    color: #2AAFC0;
}

.contact .heading p {
    font-size: 15px;
    font-weight: 400;
    color: #999;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 60px;
}

.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border: 0;
    border-radius: 10px;
}

.contact button.btn {
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    background: #2AAFC0;
    color: #ffffff;
}

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

.contact .title p {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 40px;
}

.contact .content .info {
    margin-top: 30px;
}

.contact .content .info .icon {
    font-size: 30px;
    padding: 0;
    margin: 0;
    color: #02434b;
    margin-right: 20px;
}

.contact .content .info h4 {
    font-size: 13px;
    line-height: 1.4;
}

.contact .content .info h4 span {
    font-size: 13px;
    font-weight: 300;
    color: #999999;
}


/*--------------------------------------------------
[15. Start Footer]
--------------------------------------------------*/
.footer {
    padding: 30px 0;
    background: #192b3c;
    background-size: cover;
}

.footer .social-icons {
    margin: 0 0 20px 0;
    padding: 0;
}

.footer .social-icons a {
    text-decoration: none;
}

.footer .social-icons i {
    font-size: 15px;
    line-height: 42px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: #2AAFC0;
    border-radius: 50%;
    margin: 0 3px;
    transition: all .5s ease-in-out;
}

.footer .social-icons i:hover {
    background: #02434b;
}

.footer p {
    font-size: 14px;
    font-weight: 300;
    color: #cacaca;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------
[16. Start Page Loading]
--------------------------------------------------*/
.no-js #loader {
     display: none; 
     }

.js #loader {
     display: block; position: absolute; left: 100px; top: 0;
     }

.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../img/loader/Preloader_2.gif) center no-repeat #fff;
}




/*--------------------------------------------------
[17. Start Media Query]
--------------------------------------------------*/

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* Navbar */
    .navbar {
        padding: 20px;
        background: #21353e !important;
    }
    .navbar .nav-item {
        margin-left: 0;
        
    }
    .navbar .nav-item .nav-link {
        padding: 0;
        margin: 25px 0  0;
    }

    /* Slider */
    .slider .content {
        padding: 0 30px;
    }

.slider .content h1 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    margin-top: 70px;
}

    /* Some Facts */
    .some-facts {
        padding: 30px 0;
    }
    .some-facts .items {
        margin: 25px 0;
    }

    /* Contact Us */
    .contact .content {
        margin-bottom: 30px;
    }
}


/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .navbar {
        padding: 20px;
        background: #21353e !important;
    }
    .navbar .nav-item {
        margin-left: 0;
        
    }
    .navbar .nav-item .nav-link {
        padding: 0;
        margin: 25px 0  0;
    }

    /* Some Facts */
    .some-facts {
        padding: 30px 0;
    }
    .some-facts .items {
        margin: 25px 0;
    }

    /* Contact Us */
    .contact .content {
        margin-bottom: 30px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .navbar {
        padding: 20px;
        background: #21353e !important;
    }
    .navbar .nav-item {
        margin-left: 0;
        
    }
    .navbar .nav-item .nav-link {
        padding: 0;
        margin: 25px 0  0;
    }

    /* Some Facts */
    .some-facts {
        padding: 40px 0;
    }
    .some-facts .items {
        margin: 25px 0;
    }

}