/******* default styles **/
body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style-type: none;
}

li a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/***** wrapper **/
.wrapper {
    width: 100%;
    height: 100%;
    background-image: url('./0222.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0px 20px;
}

.yec-title {
    margin-bottom: 40px;
}

.logo {
    width: 250px;
    height: 150px;
    padding: 10px;
    margin-top: 10px;
}

/*
.yec-title p {
    color: #ccc;
    margin-top: 10px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}*/

ul li {
    transition: .1s;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    background-color: #fff
        /*rgb(10,36,71)*/
    ;
    padding: 5px;
    border-radius: 40px;
}

ul li:hover {
    transition: .1s;
    opacity: .75;

}


ul li a {
    width: 100%;
    display: flex;
    height: 100%;
    color: #000;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

/*
ul li a i{
    margin-right: 10px;
    font-size: 25px;
}
*/

.down-p span {
    width: 100px;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    bottom: 13px;
}

.down-p span:nth-child(1) {
    background: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255, .3) 80%);
    right: 15px;
}

.down-p span:nth-child(3) {
    background: linear-gradient(90deg, rgb(255, 255, 255, .3) 0%, transparent 100%);
}

ul i.down {
    font-size: 30px;
    color: #fff;
    margin-bottom: 20px;
    margin-right: 12px;
}

.tele {
    transition: .2s;
    opacity: 0;
    display: none;
}

.contact {
    transition: .2s;
}

.web{
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    position: absolute;
    bottom: 20px;
    left: 47%;

}