@font-face {
    font-family: "GothamPro";
    src: url("../fonts/GothamPro.ttf");
}

@font-face {
    font-family: "GothamPro-Black";
    src: url("../fonts/GothamPro-Black.ttf");
}

* {
    font-family: "GothamPro";
}

body {
    background-color: #000;
}

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.mt-5r {
    margin-top: 5rem;
}

.fixed {
    background-color: #35363a;
}

.current-menu-item a {
    color: #ff0101 !important;
}

.title {
    text-align: center;
}

.title h2 {
    position: relative;
    padding: 3rem 0;
    line-height: 0.7;
    display: inline-block;
    text-align: center;
    font-size: 160px;
    color: #fff;
    font-weight: 900;
    font-family: "GothamPro-Black";
    text-transform: uppercase;
}

.title h2 .line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 105%;
    height: 5px;
    background-color: #ff0101;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: -1;
}

#pre-loader {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

#pre-loader video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100vh;
}

header {
    display: none;
    position: fixed;
    top: 0;
    z-index: 22;
    width: 100%;
    transition: 0.5s ease-in-out;
}

header a {
    color: #fff;
    transition: 0.3s all ease;
}

header .navbar-easy {
    padding: 20px 0;
}

header .navbar-easy .logo img {
    width: 80%;
}

header .navbar-easy .nav {
    display: inline-block;
    padding-left: 40px;
    list-style-type: none;
}

header .navbar-easy .nav li {
    display: inline-block;
}

header .navbar-easy .nav li a {
    display: inline-block;
    font-size: 14px;
    padding: 10px 15px;
}

header .navbar-easy .nav li:hover a {
    color: #ff0101;
}

header .navbar-easy .nav li.active a {
    color: #ff0101;
}

header .navbar-easy .nav li.active a:hover {
    color: #ff0101;
}

header .navbar-easy .button-nav {
    float: right;
    padding: 6px 20px;
    border: 2px solid rgba(255, 255, 255, 0.0666666667);
    font-size: 14px;
    color: #fff;
    border-radius: 30px;
}

header .navbar-easy .button-nav:hover {
    background-color: #ff0101;
    border-color: #ff0101;
}

header .navbar-easy .hamburger {
    display: none;
    position: relative;
    width: 28px;
    height: 32px;
    float: right;
}

header .navbar-easy .hamburger span {
    position: absolute;
    top: 15px;
    width: 100%;
    height: 2px;
    display: block;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
}

header .navbar-easy .hamburger::before {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 4px;
    height: 2px;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

header .navbar-easy .hamburger::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 26px;
    height: 2px;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}

header .navbar-easy .hamburger:hover::before {
    top: 7px;
}

header .navbar-easy .hamburger:hover::after {
    top: 23px;
}

header .navbar-easy .hamburger.active span {
    opacity: 0;
}

header .navbar-easy .hamburger.active::before {
    top: 40%;
    transform: rotate(45deg);
}

header .navbar-easy .hamburger.active::after {
    top: 40%;
    transform: rotate(-45deg);
}

.mobile-nav {
    overflow: hidden;
    position: relative;
}

.mobile-nav .header-overlay {
    position: fixed;
    width: 0;
    height: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(0, 0, 0);
    transition: 0.5s ease-in-out;
    z-index: 999;
}

.mobile-nav .mobile-content {
    position: fixed;
    width: 300px;
    right: 0;
    padding-top: 20px;
    background-color: #35363a;
    height: 100vh;
    transition: 0.8s all ease;
    transform: translateX(100%);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1019607843);
    z-index: 2000;
}

.mobile-nav .mobile-content .mobile-header {
    padding: 0 20px 30px 20px;
    width: 100%;
}

.mobile-nav .mobile-content .mobile-header .close-menu {
    position: relative;
    float: right;
    margin-top: 8px;
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
    top: -20px;
}

.mobile-nav .mobile-content .mobile-header .close-menu span {
    display: inline-block;
    padding: 0 0 20px 15px;
}

.mobile-nav .mobile-content .mobile-header .close-menu span::before,
.mobile-nav .mobile-content .mobile-header .close-menu span::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 30px;
    background: #fff;
}

.mobile-nav .mobile-content .mobile-header .close-menu span::before {
    transform: rotate(45deg);
}

.mobile-nav .mobile-content .mobile-header .close-menu span::after {
    transform: rotate(-45deg);
}

.mobile-nav .mobile-content .body-menu {
    padding: 0 20px 20px 20px;
}

.mobile-nav .mobile-content .body-menu ul {
    padding: 0;
    margin: 0;
}

.mobile-nav .mobile-content .body-menu ul li a {
    font-size: 14px;
    padding: 5px 20px;
    color: #fff;
    display: block;
    transition: 0.3s all ease;
}

.mobile-nav .mobile-content .body-menu ul li a:hover {
    color: #ff0101;
}

.mobile-nav .mobile-content .body-menu ul li.active a {
    color: #ff0101;
}

.mobile-nav .mobile-content .body-menu ul li.active a:hover {
    color: #ff0101;
}

.mobile-nav.active .header-overlay {
    width: 100vw;
    height: 100vh;
    opacity: 0.3;
    visibility: visible;
}

.mobile-nav.active .mobile-content {
    transform: translateX(0);
}

.banner {
    display: none;
    position: relative;
    background-color: #000;
    z-index: 1;
    padding-bottom: 3rem;
}

.banner .logo {
    width: 80%;
}

.banner p {
    text-align: justify;
    margin-top: 30px;
    color: #fff;
    font-size: 20px;
    width: 80%;
}

.banner .right img {
    width: 100%;
}

.seeMore {
    position: absolute;
    right: -8%;
    bottom: -4%;
    z-index: 1;
}

.seeMore a {
    display: inline-block;
    padding: 54px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.3s ease-in-out;
}

.seeMore a span {
    line-height: 1.1;
    display: inline-block;
    color: #000;
    width: 83px;
    font-size: 38px;
    font-weight: 900;
    font-family: "GothamPro-Black";
    text-transform: uppercase;
}

.seeMore a:hover {
    transform: scale(1.1);
}

.seeMore .pulse {
    width: 191px;
    height: 191px;
    border-radius: 50%;
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    z-index: -1;
}

.seeMore .pulse:after,
.seeMore .pulse:before {
    content: "";
    display: block;
    width: 191px;
    height: 191px;
    border-radius: 50%;
}

.seeMore .yes:before,
.seeMore .yes:after {
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #fff;
    animation: pulse 1.5s linear infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.work {
    opacity: 0;
    visibility: hidden;
    height: 0;
    background-color: #000;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.work marquee {
    color: #f2f2f2;
    font-size: 86px;
    font-weight: 900;
    font-family: "GothamPro-Black";
    line-height: 1.1;
}

.work .video {
    overflow: hidden;
    position: relative;
}

.work .video:hover .play {
    opacity: 1;
    visibility: visible;
}

.work .video .play {
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.work .video .play i {
    color: #fff;
    font-size: 55px;
    background-color: rgba(0, 0, 0, 0.4666666667);
    padding: 30px 37px;
    border-radius: 50%;
}

.work .right-see {
    position: relative;
}

.gallery {
    overflow: hidden;
    display: none;
    padding-bottom: 5rem;
    background-color: #000;
    position: relative;
    z-index: 1;
}

.gallery .element {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery .images .col-lg-4 {
    min-height: 400px;
}

.gallery .images .mb-3 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.gallery .images img {
    width: 100%;
}

.gallery .last {
    position: relative;
}

.partner {
    padding-top: 3rem;
    display: none;
    background-image: url("../images/partner/partner-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.partner .partner-logo {
    margin: auto;
    width: 80px;
    padding: 1rem;
    height: 80px;
    margin-bottom: 0.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#footer {
    overflow: hidden;
    display: none;
    background-color: #000;
    padding: 15rem 0 0;
}

#footer .content {
    border: 2px solid #fff;
    border-radius: 20px;
    padding-top: 7rem;
    padding-bottom: 3rem;
    position: relative;
}

#footer .content h4 {
    font-size: 29px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

#footer .content .title-sm {
    display: none;
}

#footer .content p {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
}

#footer .content a {
    margin-bottom: 10px;
    display: inline-block;
}

#footer .content a span {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    width: 200px;
    text-align: start;
}

#footer .content a i {
    font-size: 36px;
    padding: 8px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

#footer .content a i:hover {
    transform: scale(1.1);
}

#footer .content a i.fa-facebook-f {
    padding: 8px 12px;
}

#footer .content .profile {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 250px;
    box-shadow: 0px 0px 130px -35px rgb(255, 255, 255);
    z-index: 2;
}

#footer .content .pulse {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: absolute;
    display: inline-block;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#footer .content .pulse:after,
#footer .content .pulse:before {
    content: "";
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

#footer .content .yes:before {
    position: absolute;
    top: 0;
    right: 0;
    border: 2px solid #fff;
    animation: pulse 2s ease infinite;
    opacity: 0;
    z-index: -1;
}

#footer .content .yes:after {
    position: absolute;
    top: 0;
    right: 0;
    border: 2px solid #fff;
    animation: pulse 3s ease infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.copyright {
    text-align: center;
    margin-bottom: 5rem;
}

.copyright span {
    color: #fff;
}

@media (max-width: 992px) {

    header .nav,
    header .button-nav {
        display: none !important;
    }

    header .hamburger {
        display: inline-block !important;
    }

    .title h2 {
        font-size: 100px;
    }

    .seeMore {
        left: 0;
        right: auto;
        transform: translateX(-50%);
    }

    .banner p {
        font-size: 16px;
    }

    .videos video {
        height: 600px !important;
        width: auto !important;
    }

    .videos img {
        height: 600px !important;
    }

    .gallery .images {
        padding-left: 30px;
        padding-right: 30px;
    }

    .gallery .images .left-img {
        padding-top: 1rem;
    }

    .gallery .images .right-img {
        padding-top: 4rem;
    }

    .see-center {
        position: relative;
    }

    .photosSec {
        padding-top: 0 !important;
    }

    .partner {
        height: auto;
    }

    .partner .row .mb-5 {
        margin-bottom: 1rem !important;
    }

    .partner h2 {
        padding-bottom: 0;
    }

    .partner img {
        height: 60px;
    }

    #footer .content .title-sm {
        display: block;
        padding-top: 4rem;
        margin-bottom: 20px;
    }

    #footer .content .title-xl {
        display: none;
    }

    #footer .content .col-lg-4+.col-lg-4 {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .title h2 {
        font-size: 74px;
    }

    .banner .left {
        text-align: center;
    }

    .banner p {
        margin-left: auto;
        margin-right: auto;
    }

    .work .d-none-mob {
        display: none;
    }

    .seeMore {
        left: 50%;
    }

    .seeMore a span {
        width: 66px;
        font-size: 30px;
    }

    .seeMore .pulse {
        width: 174px;
        height: 174px;
    }

    .seeMore .pulse:after,
    .seeMore .pulse:before {
        width: 174px;
        height: 174px;
    }
}

@media (max-width: 548px) {
    .title h2 {
        font-size: 40px;
    }

    .banner p {
        font-size: 14px;
    }

    .counter .count-nm {
        font-size: 70px;
    }

    .counter .plus {
        font-size: 70px;
    }

    .counter .content {
        font-size: 18px;
    }

    .work video {
        height: 260.86px !important;
    }

    .work img {
        height: 260.86px !important;
    }

    .gallery {
        padding-top: 3rem;
    }

    .partner h2 {
        font-size: 35px;
    }
}

/*# sourceMappingURL=style.css.map */
