*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
                    /*COLORS*/
:root {
    --cyan:#0088a9;
    --gray:#24252A;
    --white:#f3f3f3;
}
                    /*HTML*/
html {
    overflow-x: hidden;
}

                    /*---HEADER----*/
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    
}
/* NAVIGATION */
nav {
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
    min-height: 75px;
    background-color: var(--white);
    filter: drop-shadow(0px 10px 5px #3d3d44);
}

.logo {
    position: relative;
    z-index: 10;
    cursor: pointer;
    width: 8vh;
    min-width: 70px;
    min-height: 70px;
    height: 8vh;
    transition: all ease 0.3s;
}
.logo:hover {
    transform: scale(1.3);
    transition: all ease 0.3s;
}
.nav_links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.nav_links li {
    display:  inline-block;
    padding: 10px 20px;
    
}

.nav_links li a {
    font-size: 25px;
    font-weight: 500;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    color: var(--gray);
}

.nav_links li a:hover {
    color: var(--cyan);
    transition: all 0.3s ease 0s;
}

.navbut {
    display: none;
    cursor: pointer;
    transition: 0.5s ease-in;
}

.navbut div{
    width: 25px;
    height: 3px;
    background-color: var(--gray);
    margin-top: 5px;
 }





@keyframes navLinkFade{
    from{
        opacity:0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.line1 {
    transition: 0.5s ease-in;
}
.line2 {
    transition: 0.5s ease-in;
}
.line3 {
    transition: 0.5s ease-in;
}
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
    transition: 0.5s ease-in;
}
.toggle .line2{
    opacity: 0;
    transition: 0.5s ease-in;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
    transition: 0.5s ease-in;
}







                        /*---MAIN---*/
main {
    width: 100%;
    
}

.mainpage {
    width: 100%;
    height: 1000px;
    background: linear-gradient(180deg, #0000007a 0%, var(--gray) 70%), url("img/background2.jpg") no-repeat center center;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.mainpage2 {
    width: 80%;
    margin: 0 auto 50px;
}
                        /*---MAIN-TEXT----*/
.main-text {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 20vh;
    color: var(--white);
}
.main-text h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    cursor: default;
}

.main-text h2 {
    font-size: 2rem;
    cursor: default;
}
                        /*---MAIN-INFO---*/
.main-info {
    width: 80%;
    margin: 70px auto 0;
    height: 80px;
}
.main-info .icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.main-info ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    list-style-type: none;
}

.main-info ul li {
    padding: 0 25px;
    align-items: center; 
    display: flex;
    color: var(--cyan);
    font-size: 1.5rem;
    font-weight: 600;
    cursor: default;
    transition: all ease 0.3s;
}
.main-info ul li:hover {
    transform: scale(1.05);
    transition: all ease 0.3s;
}

                        /*---MAIN-TAB---*/
.main-tab {
    width: 100%;
    margin: 0 auto;
    height: 495px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--gray);
    font-weight: 500;
}

.tab {
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    width: 23%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5rem;
    border: solid;
    border-width: 1px;
    transition: all ease 0.3s;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.30);
}
.tab:hover {
    border: solid 1px var(--cyan);
    transform: scale(1.1);
    transition: all ease 0.3s;
}
.tab .icon {
    width: 40px;
    height: 40px;
}
.tab .icon2 {
    width: 70px;
    height: 70px;
}
                        /*---MAIN-CARDS---*/
.main-cards {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.cards-bg {
    position: absolute;
    width: 100%;
    height: 120px;
    background: var(--gray);
    z-index: 1;
}
.cards-width {
    width: 80%;
    height: auto;
    margin: 0 auto;
    
}
.main-cards h1 {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    font-size: 2.2rem;
}
.main-cards .allcards {
    display: flex;
    justify-content: space-around;
    height: auto;
    position: relative;
    z-index: 2;
}
.main-cards .card {
    width: 30%;   
    background-color: var(--white);
    padding: 30px;
    margin: 25px;
    box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.30);
    color: var(--gray);
    transition: all ease 0.3s;
}
.main-cards .card:hover {
    transform: scale(1.05);
    transition: all ease 0.3s;
}

.main-cards .card h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--cyan);
}
.main-cards .card p {
    font-size: 1.2rem;
}

                        /*---ABOUT---*/
.main-about {
    padding-top: 150px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}


.about {
    width: 80%;
    margin: 0 auto;
}
.about h1 {
    z-index: 10;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    color: var(--gray);
}

.about .about-text {
    position: relative;
    z-index: 15;
    width: 90%;
    height: auto;
    padding: 30px;
    margin: 20px auto;
    
    color: var(--gray);
    display: flex;
    justify-content: center;
}
.about .about-text p {
    font-size: 1.2rem;
}

                        /*---OFFERS & Prizes---*/
.main-offers--prizes {
    margin: 0 auto;
    width: 100%;
    height: auto;
    background: var(--gray);
}
                        /*OFFERS*/                               
.offers {
    height: auto;
    margin: 0 auto;
    
    
}
.offers .offers-bg {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 290px;
    background: #fff;
}
.offers .boxes {
    width: 80%;
    margin: 0 auto;
}

.offers h1 {
    padding-top: 150px;
    position: relative;
    z-index: 2;
    color: var(--gray);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}
            /*BOX1*/
.offers .box1 {
    position: relative;
    z-index: 2;
    width: 80%;
    margin: 25px 0;
    background-color: var(--gray);
    padding: 30px;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.40);
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all ease 0.3s;
}
.offers .box1:hover {
    transform: scale(0.99);
    transition: all ease 0.3s;
}

.box1 ul {
    width: 45%;
    font-size: 1.2rem;
}
.box1 ul li {
    margin: 20px;
}
.box1 img {
    width: 374px;
    height: 250px;
    background-size: cover;
}
            /*BOX2*/                        
.offers .box2 {
    position: relative;
    margin: 25px 0 25px auto;
    width: 80%;   
    background-color: var(--gray);
    padding: 30px;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.40);
    color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: all ease 0.3s;
}
.offers .box2:hover {
    transform: scale(0.99);
    transition: all ease 0.3s;
}

.box2 ul {
    width: 45%;
    font-size: 1.2rem;
}
.box2 ul li {
    margin: 20px 20px 20px 25px;
}
.box2 img {
    width: 374px;
    height: 250px;
}

                        /*PRIZES*/
.prizes {
    width: 80%;
    margin: 0 auto;
    padding-top: 150px;
}
.prizes h1 {
    z-index: 10;
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    color: var(--white);
}

.prizes .prizes-text {
    position: relative;
    z-index: 15;
    width: 90%;
    height: auto;
    padding: 30px;
    margin: 20px auto 0;
    
    color: var(--white);
    display: flex;
    justify-content: center;
}
.prizes .prizes-text p {
    font-size: 1.2rem;
}

                        /*---CONTACTS---*/
.contacts {
    width: 100%;
    height: auto;
    background: #fff;
}
.contacts-bg {
    position: absolute;
    width: 100%;
    height: 315px;
    background: var(--gray);
    z-index: 1;
}
.contacts-width {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.contacts h1 {
    padding-top: 150px;
    font-size: 2.2rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}
.contacts h2 {
    margin: 80px 0;
    position: relative;
    color: var(--gray);
}

.contacts-box .contact-text{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 30px;
}

.contact-text span {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 15px;
    
}
.contact-text span a {
    text-decoration: none;
    color: var(--gray);
}

                        /*FORM*/

.contacts-box {
    padding: 15px;
    margin-top: 80px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.30);
}
/*
.contacts-form{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;

}
.contacts-form .right{
	padding: 25px 40px;
}

.contacts-form h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

.contacts-form h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: var(--cyan);
}

.contacts-form .field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.contacts-form .field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

.contacts-form textarea{
	min-height: 150px;
}

.contacts-form .btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: var(--gray);
	color: var(--white);
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: .3s;
}

.contacts-form .btn:hover{
    background-color: var(--cyan);
    color: var(--gray);
    font-weight: 500;
}

.contacts-form .field:focus{
    border: 2px solid var(--cyan);
    background-color: var(--white);
}
*/

.footer-text {
    width: 100%;
    height: auto;
    margin-top: 50px;
    background:var(--gray);
    text-align: center;
    padding: 20px 0;
    color: var(--white);
}
.footer-text a {
    color: var(--white);
    text-decoration: none;
}
.footer-text p {
    margin-top: 25px;
}


                        /*---REVEALS*/
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 2s ease;
}

.reveal.active{
  transform: translateY(0px);
  opacity: 1;
}
.revealleft{
    position: relative;
    transform: translateX(-150px);
    opacity: 0;
    transition: all 2s ease;
}
  
.revealleft.active{
    transform: translateX(0px);
    opacity: 1;
}
.revealright{
    position: relative;
    transform: translateX(150px);
    opacity: 0;
    transition: all 2s ease;
} 
.revealright.active{
    transform: translateX(0px);
    opacity: 1;
}


@media screen and (max-width:1300px) {
    .main-info {
        width : 100%;
    }
}
@media screen and (max-width:1150px) {

    .main-cards .allcards {
        display:flex;
        flex-direction: column;
    }
    .main-cards .card {
        width: 100%;   
        margin: 20px 0;
    }
        /*MAIN-INFO*/
    .main-info {
        margin-top: 150px;
        width: 100%;
    }
    .main-info ul {

        flex-direction: column;
    }
    .main-info ul li {
        padding: 20px 0;
    }
}



@media screen and (max-width:900px) {
    body {
        overflow-x: hidden;
    }
   

                    /*OFFERS*/

    .offers .boxes {
        width: 95%;
    }
    .offers .box1 { 
        width: 90%;
    }  
    .box1 img {
        width: 374px;
        height: 250px;
        background-size: cover;
    }                      
    .offers .box2 {

        width: 90%;   
        background-color: var(--gray);

    }
    .box2 img {
        width: 374px;
        height: 250px;
    }
}

@media screen and (max-width:820px) {
                /*Offers*/
    .offers .boxes {
        width: 95%;
    }
    .offers .box1 { 
        flex-direction: column;
    }  
    .box1 img {
        width: 85%;
        height: auto;
        
    }       
    .box1 ul {
        width: 100%;
    }               
    .offers .box2 {
        flex-direction: column-reverse;

    }
    .box2 img {
        width: 85%;
        height: auto;
    }
    .box2 ul {
        width: 100%;
    } 
}
@media screen and (max-width:775px) {
        /*NAVIGATION*/
    .nav {
        position: sticky;
        width: 100%;
    }
    .nav_links {
        padding-top: 10vh;
        padding-bottom: 12px;
        width: 100%;
        position: absolute;
        z-index: 1;
        right: 0px;
        height: 40vh;
        top: 9vh;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: 0.5s ease-in;
    }
    .nav_links li {
        height: 23vh;
        opacity: 0;
    }
    .navbut {
        position: relative;
        z-index: 10;
        display: block;
        transition: 0.5s ease-in;
    }
                    
                        /*MAIN*/
    .mainpage {
        height:900px;
    }

    .main-text h1 {
        font-size: 3.5rem;
    }

    .main-text h2 {
        font-size: 1.8rem;
    }

    .main-tab {
        display:  none;
    }
                        /*FORM*/

    .contacts-form {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
    }
    .contacts h2{
        margin: 15px 0 0 0;
}
    .contacts-form .right {
        padding: 25px;
    }
}


.nav-active {
    transform: translateX(0%);
    transition: 0.5s ease-in;
}

									