/*
========================
GOBAL CSS START
========================
*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #000;
    color: #fff;
}

:root {
    --selection-bg: #0078d7;
    --selection-color: #fff;
    --scroll-top-bg: #0078d7;
    --scroll-top-color: #fff;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

/*===============
 GOBAL CSS END  
 ============== */

.hero-area {
    position: relative;
    z-index: 2;
    font-family: 'Raleway', sans-serif;
    color: #fff;
}

.hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-wrapper {
    min-height: 100dvh;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.hero-content p {
    font-size: 35px;
    font-weight: 400;
}

.hero-action-btn {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-action-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 50px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
}

.hero-action-btn .sign-up-btn {
    background: #FF3131;
    font-weight: 700;
    color: #000;
}

.hero-action-btn .watch-ned-btn {
    background: #fff;
    font-weight: 700;
    color: #000;
}

.hero-action-btn a:hover {
    background: #000;
    color: #fff;
}

.hero-bg-mobile {
    display: none;
}

/* hero area end hare  */

/* about area style start hare  */

.about-area {
    padding-block: 100px;
    font-family: 'Raleway', sans-serif;
}

.about-top-wp {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-top-wp h5 {
    font-weight: 700;
    font-size: 20px;
}

.about-top-wp h2 {
    font-size: 58px;
    font-weight: 600;
}

.about-top-wp p {
    font-size: 24px;
    font-family: Helvetica, sans-serif;
    font-weight: 700;
}

.about-main-row {
    display: flex;
    gap: 90px;
    padding-top: 100px;
}

.about-video-area {
    flex: 1;
    max-width: 500px;
    overflow:hidden;
}

.about-video-area video {
    margin-top:-100px;
    margin-bottom:-50px;
    width: 100%;
}

.about-content-wp {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-family: Helvetica, sans-serif;
}

.about-content-wp h2 {
    font-size: 36px;
    font-weight: 700;
}

.about-content-wp p {
    line-height: 1.5;
    font-size: 22px;
}

.about-content-wp p span {
    font-style: italic;
}

.about-content-wp a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 50px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 18px;
    background: #FF3131;
    font-weight: 700;
    color: #000;
}

.about-content-wp a:hover {
    background: #fff;
}

/* about area style end hare  */

/* footer area style start hare  */

.footer-area {
    padding-block: 100px;
    background: #282C2F;
}

.footer-wrapper {
    max-width: 1100px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    font-family: Arial, Helvetica, sans-serif;
    gap: 20px;
}

.footer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.single-contact-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.single-contact-item .icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #34383B;
}

.single-contact-item .icon svg {
    width: 30px;
    height: 30px;
}

.single-contact-item p,
.single-contact-item a {
    line-height: 1.3;
    font-size: 18px;
    transition: 0.3s;
}

.single-contact-item a:hover {
    color: #ddd;
}

.footer-about-card {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-about-card h2 {
    font-family: Helvetica, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 25px;
}

.footer-about-card p {
    font-size: 18px;
    line-height: 1.5;
    color: #ddd;
}

.footer-social ul {
    display: flex;
    gap: 8px;
}

.footer-social ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: #2C3133;
    transition: 0.3s;
}

.footer-social ul a svg {
    width: 25px;
    height: 25px;
}

.footer-social ul a:hover {
    background: #000;
}

/*================== Video Modal ============ */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*================== Responsive area ============ */

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}

/*
====================================
Medium Screen - Others
====================================
*/

@media screen and (min-width: 992px) and (max-width: 1200px) {
    .hero-wrapper {
        padding: 50px 40px;
    }
    /* about area  */
    .about-main-row {
        gap: 30px;
    }
    .about-content-wp h2 {
        font-size: 30px;
    }
}

/*
====================================
Small Screen - Tablet
====================================
*/

@media screen and (min-width: 768px) and (max-width: 991px) {
    .hero-wrapper {
        padding: 50px 20px;
    }
    .hero-content h2 {
        font-size: 45px;
        line-height: 1.2;
    }
    /* about area  */
    .about-area {
        padding-block: 80px;
    }
    .about-main-row {
        gap: 30px;
        padding-top: 50px;
    }
    .about-content-wp h2 {
        font-size: 24px;
    }
    .about-top-wp h2 {
        font-size: 45px;
    }
    .about-content-wp p {
        font-size: 18px;
    }
    .about-content-wp {
        gap: 15px;
    }
    .about-content-wp a {
        padding: 20px 50px;
        font-size: 16px;
    }
    .about-top-wp {
        gap: 16px;
    }
    .about-video-area video {
        margin-top:-150px;
        margin-bottom:-100px;
    }
    /* footer area  */
    .footer-area {
        padding-block: 80px;
    }
    .single-contact-item {
        gap: 20px;
    }
}

/*
====================================
Small Screen - Mobile
====================================
*/

@media screen and (max-width: 767px) {
    .hero-wrapper {
        padding: 50px 20px;
    }
    .hero-content h2 {
        font-size: 40px;
        line-height: 1.2;
    }
    .hero-content p {
        font-size: 30px;
        text-align: center;
        margin-top: 10px;
    }
    .hero-action-btn a {
        padding: 20px 50px;
    }
    .hero-bg {
        display: none;
    }
    .hero-bg-mobile {
        display: block;
    }
    /* about area  */
    .about-area {
        padding-block: 60px;
    }
    .about-main-row {
        gap: 30px;
        padding-top: 50px;
        flex-direction: column;
    }
    .about-content-wp h2 {
        font-size: 24px;
    }
    .about-top-wp h2 {
        font-size: 40px;
    }
    .about-content-wp p {
        font-size: 18px;
    }
    .about-content-wp {
        gap: 15px;
    }
    .about-content-wp a {
        padding: 20px 50px;
        font-size: 16px;
    }
    .about-top-wp {
        gap: 12px;
    }
    .about-video-area {
        max-width: 100%;
    }
    /* footer area  */
    .footer-area {
        padding-block: 50px;
    }
    .single-contact-item {
        gap: 20px;
    }
    .footer-wrapper {
        flex-direction: column-reverse;
        gap: 50px;
    }
    .single-contact-item .icon {
        width: 50px;
        height: 50px;
    }
    .single-contact-item .icon svg {
        width: 24px;
        height: 24px;
    }
}

/*
====================================
Xtra Small Screen - Small Mobile
====================================
*/

@media screen and (max-width: 576px) {
    .hero-wrapper {
        padding: 40px 0;
    }
    .hero-content h2 {
        font-size: 35px;
    }
    .hero-content p {
        font-size: 22px;
    }
    .hero-action-btn a {
        padding: 20px 40px;
        font-size: 16px;
    }
    .hero-action-btn {
        width: 100%;
    }
    .hero-logo img {
        max-width: 100px;
    }
    .about-area {
        padding-block: 35px;
    }
    .about-top-wp h5 {
        font-size: 18px;
    }
    .about-top-wp h2 {
        font-size: 32px;
    }
    .about-top-wp p {
        font-size: 20px;
    }
    .about-main-row {
        padding-top: 30px;
    }
    .about-content-wp a {
        font-size: 16px;
        display: flex;
    }
    .footer-contact-card {
        gap: 25px;
    }
}