/* ORANGE: #FFB129 */
* {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

header {
    /* height: 120px; */
    /* background: #8C47C0; */
    margin-bottom: 50px;
}
.top-menu {
    /* height: 120px; */
    padding-top: 20px;
    width: 100%;
    position: fixed;
    transition: 0.4s;
    z-index: 3;
    border-bottom: 1px solid lightgray;
    /* background: white; */
}
.top-menu .container {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a{
    /* color: #FFFC02; */
    font-size: 48px;
    color: black;
}
.logo img {
    height: 125px;
    width: auto;
}
.menu li {
    display: inline;
    padding: 5px 15px;
    border: 1px solid transparent;
    border-bottom: 2px solid #FFB129;
    border-radius: 2px;
    margin-left: 25px;
}
.menu li:hover {
    /* border-bottom: 2px solid #FFFC02; */
    color: white;
    background: #5A2880; /* #AE4ED6 */
    transition: 0.4s;
    cursor: pointer;
}
.menu li:hover a {
    color: white;
}
.menu a {
    font-size: 18px;
    color: white;
}

.desc {
    background: url('../img/header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    height: 800px;
}
.desc .black{
    height: 100%;
    transition: 0.4s;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
.desc .black:hover {
    background: rgba(0,0,0,0.8);
}
.desc .container {
    display: block;
    text-align: center;
}
.desc h2 {
    font-size: 58px;
}
.desc p {
    font-size: 26px;
    font-weight: lighter;
} 

.cando {
    text-align: center;
    padding-bottom: 250px;
    border-bottom: 1px solid lightgray;
}
.cando h1 {
    margin-bottom: 25px;
}
.cando .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.cando .item {
    flex-basis: 45%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    border-radius: 15px;
    margin: 15px 15px;
    /* padding: 0 10px; */
}
.cando .item:hover {
    background: rgba(30,25,74,0.8);
}
.cando .item:hover span {
    font-size: 24px;
}
.cando .item:hover p {
    color: white;
}
.cando .item:hover img {
    width: 120px;
}
.cando .item img {
    width: 90px;
    display: block;
    margin-bottom: 15px;
    transition: 0.4s;
}
.cando span {
    margin-bottom: 10px;
    font-size: 22px;
    color: #FFB129;
    transition: 0.4s;
}

.text {
    height: 1000px;
    width: 100%;
    background:  url('../img/i.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    /* margin-bottom: 50px; */
    /* color: white; */
}
.block {
    width: 1000px;
    /* height: 250px; */
    padding: 50px 50px;
    background: white;
    transform: translateX(-50%);
    position: absolute;
    top: -25%;
    left: 50%;
    border-radius: 15px;
    box-shadow: 10px 11px 9px -5px rgba(0,0,0,0.53);
    border: 1px solid lightgray;
}
.block2 {
    width: 1000px;
    /* height: 250px; */
    padding: 50px 50px;
    background: white;
    transform: translateX(-50%);
    position: absolute;
    bottom: 5%;
    left: 50%;
    border-radius: 15px;
    box-shadow: 10px 11px 9px -5px rgba(0,0,0,0.53);
    border: 1px solid lightgray;
}
.text p {
    display: block;
    font-size: 18px;
    margin-bottom: 25px;
}

/* ABOUT */
.without-bottom {
    margin-bottom: 0;
}
.without-bottom .top-menu {
    position: relative;
}
.without-bottom a {
    color: black;
}
.about-desc .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-desc {
    height: 1000px;
}
.about {
    color: black;
    background: white;
    width: 100%;
    padding: 50px 50px;
    border-radius: 15px;
    box-shadow: 10px 11px 9px -5px rgba(0,0,0,0.53);
    border: 1px solid lightgray;
}
.about p {
    font-size: 22px;
    text-align: start;
    text-indent: 20px;
}
.about p:last-of-type {
    margin-bottom: 25px;
}
.about span {
    color: rgba(30,25,74);
    font-size: 20px;
}
.about a {
    color: #712887;
}
.about ul {
    margin: 15px 5px;
}
.about li {
    list-style: inside;
    text-align: left;
    font-size: 22px;
}
.about .highlight-txt {
    color: darkcyan;
    font-size: 22px;
}
/* ABOUT */

/* CONTACTS */
.contact-desc .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-desc {
    height: 700px;
}
.contact {
    color: black;
    background: white;
    width: 80%;
    padding: 25px 25px;
    border-radius: 15px;
    box-shadow: 10px 11px 9px -5px rgba(0,0,0,0.53);
    border: 1px solid lightgray;
}
.contact p {
    font-size: 22px;
}
.contact a {
    color: #FFB129;
    text-decoration: underline;
}
.contact span {
    margin-top: 15px 0;
}
.contact .blue {
    color: blue;
}
/* CONTACTS */

/* GALLERY */
.gallery-desc {
    height: 500px;
}
.gallery-main {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }
.gallery {
    color: #FFF;
    background: #1E194A;
    /* background: radial-gradient(circle, rgba(9,9,121,1) 0%, rgba(0,212,255,1) 0%, rgba(2,0,36,1) 100%);    width: 80%; */
    padding: 25px 25px;
    border-radius: 15px;
    box-shadow: 10px 11px 9px -5px rgba(0,0,0,0.53);
    border: 1px solid lightgray;
}
.gallery img {
    height: 200px;
    width: auto;
    filter: brightness(100%);
    transition: filter 0.5s ease-in-out;
}
.gallery img:hover {
    filter: brightness(50%);
}
/* GALLERY */

footer {
    background: rgba(30,25,74);
    text-align: center;
}
footer .container {
    height: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-right: 15px;
}
footer a {
    /* color: #ccc920; */
    text-decoration: underline;
}
.bottom-logo img {
    height: 150px;
}
.bottom-menu {
    display: flex;
    flex-direction: raw;
    color: white;
    justify-content: center;
}
.bottom-menu span {
    font-size: 22px;
    color: #FFB129;
}
.bottom-menu li {
    padding-left: 25px;
}
.bottom-menu p {
    width: 150px;
    height: 45px;
    border-top: 1px solid #FFB129;
    padding: 5px 1px;
}

.dop {
    color: white;
}
.dop a {
    color: #FFB129;
}

@media screen and (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 800px;
    }
    .top-menu a {
        font-size: 12px;
    }
    .block {
        max-width: 90%;
        top: -20%;
    }
    .block2 {
        max-width: 90%;
    }
    .text {
        height: 1200px;
    }
    footer .container {
        height: 425px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        padding-right: 0;
    }
    .about-desc {
        height: 1300px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 700px;
    }
    .menu li {
        display: block;
    }
    .top-menu {
        height: 150px;
    }
    .desc h2 {
        font-size: 42px;
    }
    .desc p {
        font-size: 16px;
    } 
    .text {
        height: 1200px;
    }
    .block {
        max-width: 70%;
    }
    .block p {
        font-size: 16px;
    }
    .block2 {
        max-width: 80%;
    }
    .block2 p {
        font-size: 16px;
    }
    .bottom-logo {
        display: none;
    }
    

    .about {
        width: 80%;
        padding: 25px 25px;
    }
    .about li,
    .about span,
    .about .highlight-txt {
        font-size: 16px;
    }
    .about-desc {
        height: 1200px;
    }
    footer  .container{
        height: 250px;
    }
}

@media screen and (max-width: 560px) {
    .container {
        max-width: 500px;
    }
    .top-menu {
        height: 100px;
    }
    .top-menu .container {
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu li {
        padding: 1px 2px;
    }
    .logo img {
        height: 70px;
    }
    .desc h2 {
        font-size: 42px;
    }
    .desc p {
        font-size: 16px;
    } 
    .cando {
        height: 1840px;
    }
    .item span {
        font-size: 18px;
    }
    .text {
        height: 1800px;
    }
    .block {
        top: -15%;
        padding: 20px 15px;
    }
    .block p {
        font-size: 14px;
    }
    .block2 {
        padding: 20px 15px;
        max-width: 75%;
    }
    .bottom-menu {
        display: flex;
        flex-direction: column;
        color: white;
        justify-content: center;
    }
    
    .bottom-menu li {
        margin-bottom: 25px;
        padding-left: 0;
    }
    footer .container {
        height: 425px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        padding-right: 0;
    }
    
}

@media screen and (max-width: 450px) {
    .container {
        max-width: 425px;
    }
    .block {
        display: none;
    }
    .desc {
        height: 500px;
    }
    .desc h2 {
        font-size: 28px;
    }
    
    .cando h1 {
        font-size: 22px;
    }
    .text {
        height: 1200px;
    }
    .text h1 {
        font-size: 22px;
    }
    .about-desc {
        height: 1400px;
    }
    .about p {
        font-weight: 400;
        text-indent: 10px;
    }
    .contact-desc {
        height: 800px;
    }
    .contact {
        font-weight: 600;
    }

    .bottom-menu p {
        width: 200px;
    }
}

@media screen and (max-width: 370px) {
    .cando {
        height: 2400px;
    }
    .cando .item {
        padding: 35px;
    }
    .about-desc {
        height: 1500px;
    }
}
@media screen and (max-width: 320px) {
    .cando {
        height: 2550px;
    }
}
@media screen and (max-width: 280px) {
    .container {
        max-width: 270px;
    }
    .desc h2 {
        font-size: 20px;
    }
    .cando {
        height: 2750px;
    }
    .text h1 {
        font-size: 20px;
    }
    .about-desc {
        height: 1800px;
    }
    .contact {
        text-align: start;
    }
    .contact p {
        font-size: 14px;
    }
}