@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --background-color: #fff;
    --primary-color: #F9650B;
    --secondary-color: #333647;
}

[data-theme="dark"] {
    --background-color: #333647;
    --primary-color: #F9650B;
    --secondary-color: #bbbbbb;
    --text-color: #fff;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color) !important;
    overflow: hidden;
    user-select: none;
    /* supported by Chrome and Opera */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
<<<<<<< HEAD
    transition: background-color 1s;
=======
>>>>>>> parent of a08aac3... changes
}

;

h1, h2, h3, h4, h5, h6, p, span, td, a {
    cursor: pointer;
}

canvas.particles-js-canvas-el {
    position: absolute;
    height: 100% !important;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: -10000;
    margin: 0px;
}

.hero_section .row {
    display: flex;
    align-items: center;
    height: 100vh;
}

.hero_section .row h1, h2, h3, p {
    color: var(--text-color);
}

.hero_section .row h3 {
    font-size: 19px;
    font-weight: 30px;
    margin-bottom: 15px;

}

.hero_section .row h3::after {
    content: '';
    position: absolute;
    text-align: center;
    top: 10px;
    width: 90px;
    height: 2px;
    background-color: var(--secondary-color);
    margin-left: 6px;
}

.hero_section .row h1 {
    font-size: 65px;
    font-weight: 800;

}

.hero_section .row h2 {
    font-size: 20px;
    font-weight: 100;
    margin: 8px 0px;
}

.hero_section .row p {
    font-size: 13px;
    margin-top: 13px;
    line-height: 21px;
    color: var(--secondary-color);
}

.hero_section .row button {
    border-radius: 10px;
    font-size: 19px;
    color: white;
    background-color: var(--primary-color);
    border: 3px solid var(--primary-color);
    width: 113px;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.hero_section .row button:hover {
    animation: swing;
    animation-duration: 0.5s;
    background: white;
    color: black;
    border-color: white;
}

.hero_section .row img {
    width: 80%;
    border-radius: 50%;
}

@media (max-width: 1200px) and (min-width: 993px) {
    .hero_section .row h1 {
        font-size: 58px;
    }
}

@media (max-width: 993px) and (min-width: 763px) {
    .hero_section .row h1 {
        font-size: 42px;
    }

    .hero_section .row h2 {
        font-size: 15px;
    }

    .hero_section .row p {
        font-size: 11px;
    }

    .hero_section .row h3 {
        font-size: 15px;
    }

    .hero_section .row button {
        font-size: 15px;
    }
}

@media (max-width: 763px) and (min-width: 500px) {
    .hero_section {
        margin: 55px 0px;
    }

    .hero_section .row h1 {
        font-size: 46px;
        text-align: center;
    }

    .hero_section .row h2 {
        font-size: 15px;
        text-align: center;
    }

    .hero_section .row p {
        font-size: 11px;
        text-align: center;
    }

    .hero_section .btn_container {
        justify-content: center;
        text-align: center;
    }

    .hero_section .row h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 0px;
    }

    .hero_section .row h3::after {
        width: 0px;
    }

    .hero_section .btn_container button {
        width: 100px;
        height: 43px;
        font-size: 15px;
        text-align: center;
    }

    .hero_section img {
        width: 60%;
        margin-top: 20px;
    }
}

.theme-switch-wrapper {
    display: flex;
    position: relative;
    left: 10px;
    top: 10px;

    align-items: center;

    em {
        margin-left: 10px;
        font-size: 1rem;
    }
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider {
    background: -webkit-linear-gradient(60deg, #FABA1E, #F84704);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.theme-switch-wrapper em {
    color: var(--secondary-color)
}

img {
    pointer-events: none;
}

/* transition */
html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 400ms !important;
  transition-delay: 0 !important;
}