@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
*
{
    font-family: 'Patrick Hand', 'sans-serif';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.main
{
    position: relative;
    background: linear-gradient(120deg,hsl(34 100% 20%),hsl(34deg 61% 1%));
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    align-items: center;
}
a
{
    text-decoration: none;
    color: yellowgreen;
}
a:hover
{
    font-style: italic;
}
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.active
{
    color: #ffcd51;
}
.contentBx
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contentBx .text
{
    max-width: 800px;
}
.contentBx .text h2
{
    font-size: 6rem;
    color: transparent;
    background:linear-gradient(#f6f9e8,#d9b5b5,#fbfbfb);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip:text;
    -o-background-clip:text;
}
.contentBx .text p
{
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.75rem;
}
.contentBx .text h4
{
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}
.btn
{
    background: #2e1b02eb;
    color: #fff;
    display: inline-flex;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 1rem;
    margin: 5px 20px 5px 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    box-shadow: 1px 2px 5px rgb(255 245 245 / 56%);
}
.btn:hover
{
    background: #422806eb;
    color: #fff;
}
.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: #efefef;
}
.sci li a:hover
{
    color: #c3c96a;
}
@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: linear-gradient(120deg,hsl(34 100% 20%),hsl(34deg 61% 1%));;
    }
    .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: rgba(255, 255, 255, 0.25);
        opacity: 0.2;
        width: 16px;
        height: 4px;
    }
    .dots .dot.dot.active
    {
        opacity: 1;
        background: #fff;
    }
    .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%);
    }
}