@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root{
    --background-color: #333647;
    --pink-color: #f87652;
    --secondary-color: #bbbbbb;
    --link-color: #fff;
    --link-hover-color: #8FA9FD;
}
*{
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: var(--background-color) !important;
}
h1,h2,h3,h4,h5,h6,p,span,td,a{
    
}
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: white;
}
.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: white;
    margin-left: 6px;
}
.hero_section .row h1{
    font-size: 45px;
    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{
    text-decoration: none;
    display: unset;
    border-radius: 10px;
    font-size: 19px;
    color: white;
    background-color: var(--pink-color);
    border: 3px solid var(--pink-color);
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
    width: calc(100% - 50px);
}

.hero_section .row button:hover{
    animation: pulse;
    animation-duration: 0.5s;
    background: white;
    color: black;
    border-color: white;
}
.hero_section .row img{
    width: 80%;
    margin-bottom: 40px;
}

.hero_section .button_row {
    display: block;
    position: relative;
}

.hero_section .button_row input[type="text"]{
    width: 100%;
    font-size: 12px;
    margin-bottom: 8px;
    margin-top: 14px
}


.hero_section .row .copy,
.copy {
    margin-left: 10px;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23efefef'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 40px;
    height: 46.5px;
    line-height: 40px;
    display: inline-block;
    outline: 1px solid #555;
}

.hero_section .row .copy:hover{
    animation: none;
    animation-duration: 0.0s;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23000000'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z'/%3E%3C/svg%3E");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}


.msg_container {
    max-width: 480px;
    margin: 30px auto;
    position: relative;
    display: block;
}

.msg {
    position: absolute;
    width: 100%;
    border-radius: 15px;
    outline: 3px solid #eee;
    background-color: #3c3c3e;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    text-align: center;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.msg:empty {
    display: none;
    width:0;
    height:0;
    margin:0;
    padding: 0;
}

.col > h2 > a,
.col > p > a {
    color: var(--link-color);
    text-decoration: underline;
}
.col > p > a:hover,
.col > h2 > a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

a.external-link:after {
    display: inline-block;
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%23007bff'%3E%3Cpath d='M0 0h24v24H0V0z' fill='none'/%3E%3Cpath d='M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    scale: 0.6;
    margin-top: -3px;
}
a:hover.external-link:after {
    opacity: 0.5;
}
.hero_section img.product-photo {
    width: auto;
    border-radius: unset;
    max-width: 100%;
    display: inline-block;
}
.journal-links a {
    font-size: 1.4em;
    margin-right: 10px;
}


@media (max-width: 1200px) and (min-width: 993px) {
    .hero_section .row h1{
        font-size: 48px;
    }
}
@media (max-width: 993px) and (min-width: 763px) {
    .hero_section .row h1 {
        font-size: 38px;
    }
    .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: 30px;
        text-align: left;
    }
    .hero_section .row h2{
        font-size: 15px;
        text-align: left;
    }
    .hero_section .row p{
        font-size: 11px;
        text-align: left;
    }
    .hero_section .btn_container{
        justify-content: center;
        text-align: center;
    }
    .hero_section .row h3{
        font-size: 18px;
        text-align: left;
        margin-bottom: 0px;
    }
    .hero_section .row h3::after{
        width: 0px;
    }
    .hero_section .btn_container button{
        height: 43px;
        font-size: 15px;
        text-align: center;
        width: calc(70% - 50px);
    }
    .hero_section .btn_container button.copy {
        width: 43px;
    }

    .hero_section img{
        width: 60%;
        margin-top: 20px;
    }
    .hero_section .row button {
        font-size: 16px;
    }
    .hero_section .row .copy, .copy {
        width: 30px;
        height: 40px;
    }
    .hero_section .row .copy {
        background-size: 70%;
    }
}

@media (max-width: 500px) {
    .hero_section {
        margin: 35px 0px;
    }
    .hero_section .row h1 {
        font-size: 20px;
        text-align: left;
    }
    .hero_section .row h2{
        font-size: 14px;
        text-align: left;
    }
    .hero_section .row p{
        font-size: 11px;
        text-align: left;
    }
    .hero_section .row button {
        font-size: 14px;
    }
    .hero_section .row .copy, .copy {
        width: 36px;
        height: 36px;
    }
    .hero_section .row .copy {
        background-size: 70%;
    }
}

@media (max-width: 380px) {
    .hero_section .row button {
        font-size: 11px;
    }
}


.hero_section .row img.logo {
    width: 240px;
}
