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

body {
    background: #fff;
    color: #666666;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}

a {
    color: #ffffff;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #003366;
    outline: none;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Copperplate', fantasy;
    font-weight: 400;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}


/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: rgb(15, 15, 15);
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s ease;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #fff;
    transition: background 0.5s ease;
}

.back-to-top:hover {
    background: rgb(61, 61, 61);
}

.back-to-top i:hover {
    padding-top: 12px;
    color: rgba(0, 140, 255, 1);
}


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

#header {
    background: rgba(4, 32, 61, 0);
    height: 85px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}

#header #nav-menu-container {
    padding: 30px 10px;
}

#header.header-scrolled {
    background: rgba(2, 10, 18, 0.658);
    height: 80px;
    transition: all 0.5s;
}

#header #logo {
    float: left;
}

header #logo img {
    width: 85px;
    height: 85px;
    padding: 3px;
    margin: 0 0 0px 0;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
    display: table;
    width: 100%;
    height: 100vh;
    background: #000;
}

#intro .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: visible;
    overflow-y: hidden;
}

#intro .carousel-item::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow-x: visible;
    overflow-y: hidden;
}

#intro .carousel-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#intro .carousel-background img {
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

#intro .carousel-content {
    text-align: center;
    text-shadow: 0 0 15px #000000, 0 0 15px #000000;
}

#intro h1 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 700;
}

#intro h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
}

#intro p {
    width: 80%;
    margin: 0 auto 30px auto;
    color: #fff;
}

#intro .carousel-fade {
    overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    opacity: 1;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
    width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    padding-bottom: 60px;
    line-height: 1;
}

#intro .carousel-indicators li {
    cursor: pointer;
}

#intro .btn-get-started {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: #fff;
    background: #1f20229f;
}

#intro .btn-get-started:hover {
    background: rgba(255, 255, 255, 0.568);
    color: #000000;
}


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


/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu>li {
    float: left;
}

.nav-menu li:hover>ul,
.nav-menu li.sfHover>ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}


/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}


/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}


/* Nav Meu Styling */

.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: Copperplate, Papyrus, fantasy;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    outline: none;
    transition: all 0.5s ease;
}

.nav-menu li:hover>a {
    color: rgb(0, 247, 255);
}

.nav-menu>.menu-active>a {
    color: #16f559;
}

.nav-menu>li {
    margin-left: 10px;
}

.nav-menu ul {
    margin: 4px 0 0 0;
    padding: 10px;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

.nav-menu ul li {
    transition: 0.3s;
}

.nav-menu ul li a {
    padding: 10px;
    color: #333;
    transition: 0.3s;
    display: block;
    font-size: 13px;
    text-transform: none;
}

.nav-menu ul li:hover>a {
    color: #1686f5;
}

.nav-menu ul ul {
    margin: 0;
}


/*Social Media*/

.social-menu {
    position: fixed;
    z-index: 10;
    top: 420px;
    right: 0;
    height: 50px;
    width: 50px;
    border-radius: 5px 0px 0px 5px;
    background-color: rgb(255, 255, 255, 0);
    box-shadow: -4px 7px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
}

.social-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    display: flex;
    background-color: rgb(255, 255, 255, 0.00000000001);
    width: max-content;
    height: 410px;
    flex-direction: column;
    max-height: 80vh;
    border-radius: 3px;
}

.social-menu ul li {
    margin: 0 10px;
    padding: 0px 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.social-menu ul li .fa {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    transition: .5s;
    z-index: 9999;
}

.social-menu ul li .fa:hover {
    color: #ffffff;
}

.social-menu ul li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    transition: 0.6s;
    transform: translate(0, 0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}

.social-menu ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}

.social-menu ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}

.social-menu ul li:nth-child(2) a:hover {
    background-color: #55acee;
}

.social-menu ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}

.social-menu ul li:nth-child(5) a:hover {
    background-color: #cd201f;
}

.social-menu ul li:nth-child(4) a:hover {
    background-color: #0077B5;
}

.social-menu ul li:nth-child(6) a:hover {
    background-color: #FF0000;
}


/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}


/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(62, 64, 69, 1.0);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    border-bottom: 1px solid #072e2d;
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 22px 10px 0px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
    color: #1686f5;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: #1686f5;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #1686f5;
}

#mobile-nav ul .menu-has-children li a {
    text-transform: none;
}

#mobile-nav ul .menu-item-active {
    color: #1686f5;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}


/* Mobile Nav body classes*/

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/******************* Notice Box and Who Are We ********************/

.float-container {
    /* padding: 30px; */
    padding-bottom: 300px;
    /* padding-top: 50px; */
}

.who-are-we {
    width: 60%;
    float: left;
    padding: 0px 40px 40px 40px;
    /* padding-top: 70px; */
    padding-left: 100px;
}

.notice-box {
    width: 40%;
    float: left;
    padding: 0px 40px 40px 40px;
    /* padding-top: 70px; */
    /* padding-left: 100px; */
    /* padding-left: 30px;
    padding-bottom: 20px; */
}

.who-are-we p {
    font-weight: 500;
}

#tasks .copperplate h2 {
    font-family: 'Copperplate', fantasy;
}


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

.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #0480b5;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
}


/* Section with background
--------------------------------*/

.section-bg {
    background: #f7f7f7;
}


/* promote
--------------------------------*/

#promote .grid1 {
    padding: 3vw 5vw 5vw 5vw;
    margin-bottom: 50px;
    background-color: #222;
    color: #ffffff;
}

#promote .grid2 {
    padding: 5vw 5vw 5vw 10vw;
}

#promote i {
    padding-left: 35px;
}

#sank {
    font-family: 'Copperplate', fantasy;
    font-weight: normal;
    font-size: 60px;
    /* align-content: center; */
}

#promote .card {
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border: 0;
    border-radius: 6px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#promote .card:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 140, 255, 1) 0%, rgba(0, 140, 255, 1) 15%, rgba(34, 34, 34, 0.01) 64%, rgba(34, 34, 34, 0.01) 100%, rgba(255, 255, 255, 1) 100%);
}

#promote .card .box {
    transition: all 0.3s ease;
    left: 50%;
    /* position: center; */
}

#promote .card:hover .box {
    transform: scale(1.05);
}

#promote .card i {
    font-size: 50px;
    color: rgb(0, 140, 255);
    transition: color 0.3s ease;
}

#promote .card:hover i {
    color: #fff;
}

#promote .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}


/* #### Generated By: http://www.cufonfonts.com #### */

@font-face {
    font-family: 'Samarkan Normal';
    font-style: normal;
    font-weight: normal;
    src: local('Samarkan Normal'), url('../dependencies/SAMARN__ (1).woff') format('woff');
}


/* Task id
--------------------------------*/

#tasks .row img {
    padding-bottom: 60px;
}

#tasks .cn1 h3 {
    color: #465270;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
    #tasks .grid2 {
        padding-right: 15px;
    }
}


/* Newsletter */

#newsletter {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    min-height: 50px;
    /* background-color: #35424a; */
    color: #222;
}

#newsletter h1 {
    float: left;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Copperplate', fantasy;
    letter-spacing: 1.4;
}

#newsletter form {
    float: right;
    margin-top: 20px;
}

#newsletter input {
    height: 2.7rem;
    width: 18rem;
    border-radius: 4px;
    border: 1px solid lightgray;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    /* transition: all 0.3s ease; */
    margin-right: 10px;
    padding-left: 10px;
    /* font-weight: 650; */
    color: rgb(49, 46, 46);
    transition: all 0.7s ease;
}

#newsletter input:hover {
    border: 2px solid rgb(177, 174, 174);
}


/* #newsletter input:hover {
    box-shadow: 0 0 1em rgb(27, 27, 27), 0 0 1em rgb(27, 27, 27);
} */

#newsletter button {
    margin-left: 5px;
    height: 2.7rem;
    width: 8.5rem;
    background-color: rgba(0, 140, 255, 1);
    border: 2px solid rgba(0, 140, 255, 1);
    color: rgb(255, 255, 255);
    /* font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; */
    font-size: 18px;
    font-weight: 550;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s ease;
}

#newsletter button:hover {
    color: rgba(0, 140, 255, 1);
    background: none;
}


/* Facts Section
--------------------------------*/

#facts {
    background: url("../images/wall1.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 120px 0;
    position: relative;
}

#facts::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(192, 192, 192, 0.6);
    z-index: 9;
}

#facts .container {
    position: relative;
    z-index: 10;
}


/*#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #003366;
}*/

#facts .lll1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 35px;
    display: block;
    color: #003366;
}

#facts .lll1 li {
    display: inline-block;
}

#facts .cou {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 110%;
    color: #003366;
}

#facts .counters p {
    padding-top: 20px;
    margin: 0 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #111;
}


/*#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}*/

#homegal {
    background-color: #808080;
    padding-top: 20px;
    padding-bottom: 15px;
}

.aa {
    width: 100%;
    height: 100%;
}

.fwb {
    width: 90%;
    color: white;
    background-color: #001933;
    text-align: center;
    height: 10vh;
    line-height: 8vh;
}

.fwb :hover {
    color: #20effa;
}


/* Youtube Player */

.youtube {
    background: #222;
    padding-top: 20px;
    padding-bottom: 40px;
}

.youtube .youtube-player-wrapper {
    display: flex;
    justify-content: center;
}

.youtube .youtube-player {
    height: 400px;
    width: 800px;
}

.youtube .youtube-header {
    font-family: 'Copperplate', fantasy;
    color: rgb(255, 255, 255);
    text-align: center;
    font-size: 40px;
    font-weight: 600;
}


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

#footer {
    background: #222;
    padding: 0 0 30px 0;
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

#footer .footer-top {
    background: #ffffff;
    padding: 60px 0 30px 0;
    /* color: #000; */
}

#footer .footer-top .social-links a {
    font-size: 26px;
    display: inline-block;
    background: #333;
    color: #eee;
    line-height: 1;
    padding: 12px 12px 12px 12px;
    margin-top: 10px;
    margin-right: 12px;
    border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

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

#footer .footer-top .footer-newsletter li a {
    color: white;
}

#footer .footer-top .footer-newsletter li a:hover {
    color: #07abf7;
}

#footer .footer-links a {
    color: rgb(0, 0, 0)
}

#footer .footer-links a:hover {
    color: rgba(0, 140, 255, 0.829);
}

#footer .footer-top h4 {
    font-size: 30px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    position: relative;
    padding: 0 0 12px 0;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0px;
}

#footer a:hover {
    color: rgba(255, 255, 255, 0.74);
}

#footer .footer-top h4::before {
    right: 0;
    background: #555;
}

#footer .footer-top h4::after {
    background: rgba(0, 140, 255, 1);
    width: 180px;
    height: 3px;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    line-height: 26px;
}

#footer .footer-top .footer-newsletter {
    margin-bottom: 30px;
}

#footer .footer-contact a {
    color: rgb(17, 2, 2);
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: rgb(255, 255, 255);
    background: #222;
}

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


/* contact */

#footer form .fields {
    display: flex;
}

#footer form .field,
#footer form .fields .field {
    height: 45px;
    width: 70%;
    margin-bottom: 15px;
}

#footer form .textarea {
    height: 100px;
    width: 100%;
}

#footer .name {
    margin-right: 10px;
}

#footer .email {
    margin-left: 10px;
}

#footer .field input,
#footer .textarea textarea {
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.7s ease;
}

#footer .field input:hover,
#footer .textarea textarea:hover {
    border: 2px solid rgb(177, 174, 174);
}

#footer .field input:focus,
#footer .textarea textarea:focus {
    border-color: #b3b3b3;
}

#footer .textarea textarea {
    padding-top: 10px;
    resize: none;
}

#footer .button {
    height: 47px;
    width: 170px;
}

#footer .button button {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 140, 255, 1);
    background: rgba(0, 140, 255, 1);
    color: #fff;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease;
}

#footer .button button:hover {
    color: rgba(0, 140, 255, 1);
    background: none;
}


/* #footer .footer-flex {
    flex: 0 0 75%;
    max-width: 75%;
} */

@media (min-width: 768px) {
    #contact .contact-address,
    #contact .contact-phone,
    #contact .contact-email {
        padding: 20px 0;
    }
    #contact .contact-phone {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }
}

@media (max-width:991px) {
    #footer .footer-top {
        padding-left: 0
    }
}

@media (min-width: 992px) {
    #testimonials .testimonial-item p {
        width: 80%;
    }
}

@media (min-width: 1024px) {
    #intro p {
        width: 60%;
    }
    #intro .carousel-control-prev,
    #intro .carousel-control-next {
        width: 5%;
    }
    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
    #header #logo img {
        width: 80px;
        height: 80px;
        margin: 0 0 0px 0;
    }
    #intro h2 {
        font-size: 28px;
    }
    #nav-menu-container {
        display: none;
    }
    #mobile-nav-toggle {
        display: inline;
    }
}

@media (max-width: 576px) {
    #intro {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    #promote .grid2 {
        padding-left: 125px;
    }
}