@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --blue: #124072;
    --darkblue: #232e42;
    --footer: #0a1428;
    --orange: #c80d23;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

ul {
    text-decoration: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    margin: 0;
}

a {
    text-decoration: none;
    all: unset;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: auto;
}

/* Navbar */
nav {
    background: #000;
    height: 80px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: space-around;
}

.logo {
    width: 79px;
}

.logo img {
    width: 79px;
    height: auto;
    margin-top: 5px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 20px;
}

nav ul li a {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

nav ul li a.active,
nav ul li a:hover {
    color: var(--orange);
    transition: 0.5s;
    cursor: pointer;
}

.checkbtn {
    font-size: 30px;
    color: var(--white);
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 952px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
    }

    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    nav {
        display: block;
        padding: 0px 20px;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: var(--darkblue);
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all 0.5s;
    }

    nav ul li {
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: none;
        color: var(--white);
    }

    #check:checked ~ ul {
        left: 0;
    }

    .logo {
        margin-left: 30px;
    }
}

/* Hero Banner Section */
.hero-banner-section {
    height: 100vh;
    background-image: url(../img/hero-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-banner-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 200px;
}

.hero-banner-info h5 {
    font-size: 35px;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-banner-info h1 {
    font-size: 114px;
    font-family: "Dela Gothic One", sans-serif;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin-bottom: 50px;
}

.hero-banner-info button {
    border: none;
    color: var(--blue);
    background-color: var(--white);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

/* Join Us Section */
.join-us-section {
    overflow: hidden;
}

.join-us-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 200px 200px 200px;
}

.join-us-title h3 {
    font-size: 40px;
    font-family: "Dela Gothic One", sans-serif;
    text-transform: uppercase;
    line-height: 1;
    color: var(--darkblue);
    margin-top: 20px;
}

.join-us-title p {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: var(--blue);
    margin-top: 5px;
}

.join-us-region-title h4 {
    font-size: 40px;
    font-family: "Dela Gothic One", sans-serif;
    color: var(--darkblue);
    text-transform: uppercase;
}

.join-us-regions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.join-us-region {
    margin: 0px 30px;
}

.join-us-region p {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: var(--darkblue);
}

.join-us-region img {
    width: 162px;
    height: 162px;
}

/* Why Us Section */
.why-us-container {
    display: flex;
    background-color: var(--blue);
}

.why-crazii-container {
    padding: 90px 50px 0px 130px;
}

.why-crazii-container h3 {
    font-size: 40px;
    font-family: "Dela Gothic One", sans-serif;
    text-transform: uppercase;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
}

.why-crazii-container p {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: var(--white);
}

.why-us-big-image img {
    margin-top: -160px;
    margin-right: -200px;
    margin-bottom: -10px;
}

.our-features {
    margin-top: 40px;
}

.our-features h3 {
    margin-bottom: 40px;
}

.our-feature-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.our-feature-wrap img {
    margin-right: 20px;
}

.why-crazii-container h5 {
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    font-weight: bold;
}

/* Play Safely Section */
.play-safely-section {
    padding: 100px 50px 100px 0px;
}

.play-safely-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.phone-img img {
    width: 630px;
    height: auto;
}

.play-safely-right {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}

.play-safely-title {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 40px;
    color: var(--darkblue);
    line-height: 1.2;
    margin-bottom: 30px;
    width: 340px;
}

.description-box {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 20px;
}

.icon-box {
    background-color: var(--orange);
    width: 104px;
    height: 104px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    width: 70%;
}

.description h2 {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.1;
}

.description p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--blue);
    line-height: 1.3;
}

/* Join Now Section */
.join-section {
    padding: 160px 50px;
}

.join-container {
    text-align: center;
}

.join-container h2 {
    font-family: "Dela Gothic One", sans-serif;
    font-size: 40px;
    color: var(--darkblue);
    text-transform: uppercase;
    line-height: 1.3;
}

.join-container p {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: var(--blue);
    margin-top: 20px;
}

.join-container button {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    color: var(--white);
    background-color: var(--orange);
    border-radius: 32px;
    border: none;
    padding: 12px 70px;
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: var(--footer);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 170px 200px 80px 200px;
    /* position: fixed;
    bottom: 0; */
    width: 100%;
}

.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 0px 20px;
    flex-wrap: wrap;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    padding-right: 200px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 3px;
    font-size: 18px;
    font-weight: 500;
}

.social-icon img {
    width: 31px;
    height: auto;
}

.right-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.right-icon img {
    width: 22px;
    height: auto;
}

.footer-logo img {
    width: 106px;
    height: auto;
}

footer hr {
    border: 1px solid var(--white);
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.copyright-box {
    font-size: 16px;
    font-weight: 400;
}

.right-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 50px;
}

.right-logo-box img {
    height: 27px;
    width: auto;
}

@media (max-width: 1356px) {
    .why-us-big-image img {
        margin-top: -160px;
        margin-right: -250px;
        margin-bottom: -20px;
    }

    .why-crazii-container h3 {
        font-size: 35px;
    }

    .why-crazii-container p {
        font-size: 18px;
    }

    .why-crazii-container h5 {
        font-size: 20px;
    }

    .our-feature-wrap img {
        width: 50px;
        height: auto;
    }

    .why-us-big-image img {
        width: 800px;
        height: auto;
    }
}

@media (max-width: 1312px) {
    .hero-banner-info h1 {
        font-size: 106px;
    }
}

@media (max-width: 1210px) {
    footer {
        padding: 170px 100px 80px 100px;
    }
}

@media (max-width: 1200px) {
    .phone-img img {
        width: 580px;
    }
}

@media (max-width: 1190px) {
    .why-crazii-container {
        padding: 70px 50px 0px 90px;
    }

    .why-us-big-image img {
        margin-top: -140px;
    }

    .why-crazii-container h3 {
        font-size: 30px;
    }

    .why-crazii-container p {
        font-size: 16px;
    }

    .why-crazii-container h5 {
        font-size: 18px;
    }

    .our-feature-wrap img {
        width: 46px;
    }

    .why-us-big-image img {
        width: 750px;
    }
}

@media (max-width: 1100px) {
    .hero-banner-container {
        padding: 0px 100px;
    }

    .hero-banner-info h1 {
        font-size: 90px;
    }

    .phone-img img {
        width: 560px;
    }

    .play-safely-title {
        font-size: 35px;
    }

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

    .icon-box {
        width: 85px;
        height: 85px;
    }

    .icon-box img {
        width: 38px;
    }

    .icon-box.long-icon img {
        width: 50px;
    }

    .description h2 {
        font-size: 22px;
    }
}

@media (max-width: 1030px) {
    .why-crazii-container {
        padding: 50px 50px 0px 50px;
    }

    .why-us-big-image img {
        margin-top: -120px;
        margin-right: -260px;
        margin-bottom: -20px;
    }

    .why-crazii-container h3 {
        font-size: 28px;
    }

    .why-crazii-container p {
        font-size: 14px;
    }

    .our-feature-wrap img {
        width: 46px;
    }

    .why-us-big-image img {
        width: 700px;
    }

    .our-features h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 1000px) {
    .phone-img img {
        width: 500px;
    }

    .join-us-container {
        padding: 100px 80px 200px 80px;
    }

    .join-us-img img {
        width: 500px;
        height: auto;
    }

    .join-us-region {
        margin: 0px 20px;
    }

    .join-us-region img {
        width: 132px;
        height: 132px;
    }
}

@media (max-width: 1000px) {
    footer {
        padding: 170px 50px 80px 50px;
    }
}

@media (max-width: 930px) {
    .phone-img img {
        width: 450px;
    }

    .hero-banner-info h1 {
        font-size: 60px;
    }

    .hero-banner-info h5 {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .social-icon-box {
        gap: 30px;
        padding-right: 0px;
    }
}

@media (max-width: 860px) {
    .why-crazii-container {
        padding: 50px 70px 0px 70px;
    }

    .why-us-container {
        display: flex;
        flex-direction: column;
    }

    .why-us-big-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .why-us-big-image img {
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: -10px;
    }

    .why-us-big-image img {
        width: 600px;
        height: auto;
    }

    .our-feature-wrap {
        display: flex;
        justify-content: start;
        align-items: center;
        margin: 20px 0px;
    }
}

@media (max-width: 850px) {
    .phone-img img {
        width: 400px;
    }
}

@media (max-width: 830px) {
    .social-icon-box {
        gap: 30px;
        padding-right: 0px;
    }

    .social-icon {
        font-size: 16px;
    }

    .social-icon img {
        width: 26px;
    }

    .copyright-box {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .play-safely-section {
        padding: 100px 0px;
    }

    .play-safely-container {
        flex-direction: column;
        padding: 0px 70px;
    }

    .play-safely-title {
        width: 100%;
    }

    .description-box {
        justify-content: space-around;
        gap: 20px;
    }

    .description h2 {
        font-size: 20px;
    }

    .description {
        width: 75%;
    }

    .join-us-container {
        padding: 100px 50px 100px 50px;
    }

    .join-us-title h3,
    .join-us-region-title h4 {
        font-size: 35px;
    }

    .join-us-img img {
        width: 450px;
    }

    .join-us-region {
        margin: 0px 15px;
    }

    .join-us-region img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 767px) {
    .footer-logo img {
        width: 80px;
    }

    .social-icon {
        font-size: 15px;
    }

    .social-icon img {
        width: 24px;
    }

    .copyright-box {
        font-size: 14px;
    }

    .right-logo-box {
        gap: 30px;
    }

    .right-logo-box img {
        height: 24px;
    }
}

@media (max-width: 680px) {
    .footer-logo img {
        width: 80px;
    }

    .social-icon {
        font-size: 13px;
    }

    .social-icon-box {
        gap: 10px;
    }

    .social-icon img {
        width: 24px;
    }

    .copyright-box {
        font-size: 12px;
    }

    .right-logo-box {
        gap: 20px;
    }

    .right-logo-box img {
        height: 22px;
    }
}

@media (max-width: 676px) {
    .hero-banner-container {
        padding: 0px 50px;
    }

    .hero-banner-info h1 {
        font-size: 50px;
    }

    .hero-banner-info h5 {
        font-size: 25px;
    }

    .hero-banner-info button {
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 20px;
    }

    .join-us-container {
        padding: 100px 30px 100px 30px;
    }

    .join-us-title h3,
    .join-us-region-title h4 {
        font-size: 25px;
    }

    .join-us-img img {
        width: 400px;
    }

    .join-us-region img {
        width: 75px;
        height: 75px;
    }

    .join-us-title p {
        font-size: 15px;
    }

    .why-us-big-image img {
        width: 500px;
    }

    .why-crazii-container h3 {
        font-size: 30px;
    }

    .why-crazii-container p {
        font-size: 16px;
    }

    .why-crazii-container h5 {
        font-size: 20px;
    }
}

@media (max-width: 610px) {
    .join-section {
        padding: 50px 50px 150px 50px;
    }
}

@media (max-width: 600px) {
    .play-safely-container {
        padding: 0px 50px;
    }

    .phone-img img {
        width: 400px;
    }

    .play-safely-title {
        font-size: 30px;
    }

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

    .icon-box {
        width: 75px;
        height: 75px;
    }

    .icon-box img {
        width: 33px;
    }

    .hero-banner-container {
        padding: 0px 40px;
    }

    .hero-banner-info h1 {
        font-size: 40px;
    }

    .hero-banner-info h5 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 170px 30px 80px 30px;
    }

    .footer-top-container {
        flex-direction: column;
        align-items: start;
        gap: 20px;
        padding: 0px;
    }

    .social-icon {
        font-size: 12px;
    }

    .social-icon-box {
        gap: 10px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .copyright-box {
        margin-right: 10px;
        font-size: 13px;
    }

    .right-logo-box {
        width: 100%;
        justify-content: space-between;
    }

    .right-logo-box img {
        height: 25px;
    }
}

@media (max-width: 580px) {
    .why-crazii-container {
        padding: 50px 46px 0px 46px;
    }

    .why-us-big-image img {
        margin-bottom: -20px;
    }

    .why-us-big-image img {
        width: 380px;
    }

    .why-crazii-container h3 {
        font-size: 25px;
    }

    .why-crazii-container p {
        font-size: 14px;
    }

    .why-crazii-container h5 {
        font-size: 15px;
    }

    .our-feature-wrap img {
        width: 36px;
        height: auto;
    }
}

@media (max-width: 530px) {
    .join-section {
        padding: 50px 50px 150px 50px;
    }

    .join-container h2 {
        font-size: 30px;
    }

    .join-container p {
        font-size: 18px;
    }

    .join-container button {
        font-size: 23px;
        border-radius: 32px;
        padding: 12px 70px;
    }
}

@media (max-width: 502px) {
    .join-us-container {
        padding: 60px 20px 60px 20px;
    }

    .join-us-title h3,
    .join-us-region-title h4 {
        font-size: 30px;
    }

    .join-us-img img {
        width: 300px;
    }

    .join-us-region img {
        width: 60px;
        height: 60px;
    }

    .join-us-region {
        margin: 0px 10px;
    }

    .join-us-region p {
        font-size: 15px;
    }
    .join-us-title p {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .phone-img img {
        width: 100%;
    }

    .play-safely-title {
        font-size: 23px;
    }

    .description-box {
        gap: 15px;
    }

    .description h2 {
        font-size: 16px;
    }

    .description p {
        font-size: 12px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box img {
        width: 26px;
    }

    .icon-box.long-icon img {
        width: 35px;
    }

    .why-crazii-container {
        padding: 50px 36px 0px 36px;
    }

    .why-us-big-image img {
        margin-bottom: -30px;
    }

    .why-us-big-image img {
        width: 300px;
    }

    .why-crazii-container h3 {
        font-size: 22px;
    }

    .why-crazii-container p {
        font-size: 12px;
    }

    .why-crazii-container h5 {
        font-size: 14px;
    }

    .our-feature-wrap img {
        width: 34px;
    }
}

@media (max-width: 432px) {
    .join-us-container {
        padding: 40px 15px 40px 15px;
    }

    .join-us-title h3,
    .join-us-region-title h4 {
        font-size: 20px;
    }

    .join-us-img img {
        width: 250px;
    }

    .join-us-region img {
        width: 56px;
        height: 56px;
    }

    .join-us-region p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {
    .join-container h2 {
        font-size: 25px;
    }

    .join-container p {
        font-size: 16px;
    }

    .join-container button {
        font-size: 20px;
        border-radius: 32px;
        padding: 12px 60px;
    }

    .join-section {
        padding: 50px 30px 150px 30px;
    }
}

@media (max-width: 400px) {
    .play-safely-container {
        padding: 0px 30px;
    }
}

@media (max-width: 350px) {
    .join-container h2 {
        font-size: 23px;
    }

    .join-container p {
        font-size: 14px;
    }

    .join-container button {
        font-size: 18px;
        padding: 10px 50px;
    }
}

@media (max-width: 346px) {
    .join-us-title h3,
    .join-us-region-title h4 {
        font-size: 18px;
        line-height: 1.1;
    }

    .join-us-img img {
        width: 200px;
    }

    .join-us-region img {
        width: 52px;
        height: 52px;
    }

    .join-us-region {
        margin: 0px 4px;
    }

    .join-us-region p {
        font-size: 10px;
    }

    .join-us-title p {
        font-size: 12px;
        line-height: 1.1;
    }
}

.join-container-button {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    color: var(--white);
    background-color: var(--orange);
    border-radius: 32px;
    border: none;
    padding: 12px 70px;
    margin-top: 5px;
}