:root{
    --primary-color:#1F8BCC;
    --secondary-color:#1F3C42;
}
*{
    transition: all 0.3s ease-in;
}
body{
    margin: 0;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
header{
    nav{
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        width: 100%;
        height: 80px;
        justify-content: space-between;
        z-index: 99;
        background: #FFFFFF;
        padding: 0 20px;
        img{
            width: 200px;
        }
        .rem-c{
            background: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 100%;
            height: 100%;
            border-radius: 0 0 0 40px;
            ul{
                padding: 0;
                display: flex;
                align-items: center;
                list-style: none;
                margin: 0;
                gap: 20px;
                li a{
                    text-decoration: none;
                    color: #777777;
                }
                li a:hover{
                    color: var(--primary-color);
                }
            }
        }
    }
}
footer{
    .footer-ab{
        background: #f0f8ff;
        padding: 60px 5vw;
    }
    img{
        width: 300px;
        margin: 40px 0;
    }
    p{
        width: 100%;
    }
    a{
        text-decoration: none;
        color: #777777;
        display: block;
    }
    h1{
        font-weight: 400;
        font-size: 1.5rem;
    }
    ul{
        padding: 0;
        list-style: none;
    }
    h6 {
        margin-top: 40px;
        a{
            display: inline;
        }
    }
}
#menu-icon{
    display: none;
} 

button{
    border: none;
    background: var(--secondary-color);
    color: #FFFFFF;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 60px;
}
button:hover{
    background: var(--primary-color);
}
.dwnld-ticket{
    padding: 100px 10vw;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    h1{
        font-size: 1.2rem;
    }
    h2{
        font-size: 1.7rem;
        width: 80vw;
    }
}
.dwnld-ticket::after{
    content: '';
    position: absolute;
    right: 30%;
    top: 0;
    width: 250px;
    height: 250px;
    border: 40px solid var(--primary-color);
    background: #f0f8ff;
    opacity: 0.2;
    transform: translateX(100%) translateY(50%) rotate(45deg);
    z-index: -1;
}
@media screen and (max-width:1000px) {
    #menu-icon{
        display: flex;
    }
    #nav-rows{
        display: none;
    }
}