@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600&display=swap');
*
{
    font-family: 'Cairo','sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{background: #0e0e0e;}
a
{
    color: #baff33;
    text-decoration: none;
}
a:hover
{
    font-style: italic;
}
.main
{
    position: relative;
    background: linear-gradient(120deg,#600000 48%,#4a0707 51%);
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    align-items: center;
}
header
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .logo img
{
    max-width: 250px;
    margin-right: 20px;
}

header ul
{
    display: flex;
}
header ul li
{
    list-style: none;
    margin: 0 10px;
    font-size: 1.3rem;
}
header ul li a
{
    text-decoration: none;
    color: #e2e5d1;
    font-weight: 500;
}
header ul li a:hover,
header ul li a.app
{
    color: #ffcd15;
}
.contentBx
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contentBx .text
{
    max-width: 800px;
}
.contentBx .text h2
{
    font-size: 6em;
    color: transparent;
    background: linear-gradient(#5a5858,white,black);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip:text;
    font-family: Arial, Helvetica, sans-serif;
}
.contentBx .text p
{
    font-size: 1.1em;
    color: #fff;
    line-height: 1.8em;
}
.contentBx .text h4
{
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}
.btn
{
    background: #bf1212;
    color: #fff;
    display: inline-flex;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1.1em;
    margin: 5px 20px 5px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.btn:hover
{
    box-shadow: 2px 2px 5px 2px #0e0e0e;
}
.btn ion-icon
{
    margin-right: 10px;
    font-size: 1.4em;
}
.imgBx img
{
    margin-left: 50px;
    margin-right: 300px;
    max-width: 570px;
    display: none;
}
.imgBx img.active
{
    display: block;
}
.dots
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: 320px;
    display: flex;
    flex-direction: column;
}
.dots .dot
{
    position: relative;
    width: 10px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
    display: inline-flex;
    margin: 5px;
    cursor: pointer;
}
.dots .dot.active
{
    background: #fff;
}
.sci
{
    position: absolute;
    bottom: 30px;
    display: flex;
}
.sci li
{
    list-style: none;
    margin-right: 20px;
}
.sci li a
{
    font-size: 1.8em;
    color: #fff;
}
.sci li a:hover
{
    color: #b0e900;
}
@media (max-width:991px)
{
    header
    {
        padding: 30px;
        justify-content: space-between;
    }
    header .logo img
    {
        max-width: 100px;
    }
    header ul li
    {
        font-size: .75rem;
    }
    .main
    {
        padding: 30px;
        background: #600000;
    }
    .app
    {
        display: none;
    }
    .contentBx
    {
        flex-direction: column-reverse;
        margin: 30px 0;
    }
    .imgBx img
    {
        margin: 0;
        max-width: 300px;
    }
    .dots
    {
        position: relative;
        top: initial;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        right: initial;
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }
    .dots .dot
    {
        background: #EDF0F6;
        opacity: 0.2;
        width: 16px;
        height: 4px;
    }
    .dots .dot.active
    {
        opacity: 1;
        background: #d6d7d9;
    }
    .contentBx .text
    {
        text-align: center;
        margin-bottom: 30px;
    }
    .contentBx .text h2
    {
        font-size: 1.5rem;
    }
    .contentBx .text p
    {
        font-size: .75rem;
        line-height: 1.5rem;
    }
    .sci
    {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }
}