@import url('//fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;600&display=swap');
@import url('//fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
/* =================================================GENERAL====================================================== */

* {
    box-sizing: border-box;
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    /* background-color: rgb(121, 55, 55); */
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

i {
    /*margin-left: 20px;*/
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 0 160px;
}

.img_fluid_ {
    width: 100%;
    height: 100%;
}

.h-100 {
    height: 100vh;
}

/* ===================================================MAIN NAVIGATION BAR ======main part=================================*/
.navbar {
    /* box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26); */
    position: fixed;
    width: 100%;
    z-index: 100;
}

/* .container{
    margin: 0 0;
    padding: 0 30px;
} */
.scrolled {
    /* background-color: rgb(249, 249, 249); */
    background-color: rgb(33, 33, 46);
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

.not-scrolled {
    background-color: transparent;
}

.container-home {
    display: flex;
    justify-content: space-between;
    padding: 0 180px;
    align-items: center;
    height: 60px;
    transition: background-color 200ms linear;
}

.navbar .container {
    /* background-color: rgb(249, 249, 249); */
    background-color: rgb(33, 33, 46);
    display: flex;
    align-items: center;
    height: 60px;
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

.nav-menu ul {
    display: flex;
    justify-content: space-between;
    padding: 0;

    /* margin-right: 100; */
}

.nav-menu li {
    font-size: 16px;
    padding: 20px;
    margin-right: 20px;
    /* width: 200px; */
    color: rgb(230, 230, 230);
}

.logo img {
    height: 50px;
}

.nav-menu li {
    border-left-style: double;
    border-left-width: 2px;
    border-left-color: rgba(115, 115, 115, 0.483);
    /* background-color: rgb(247, 247, 247); */
    position: relative;
    cursor: pointer;
    padding-top: 10px;
    padding-bottom: 10px;
}

.open-slide {
    padding-top: 10px;
    display: none;
}

.nav-menu ul li a {
    text-decoration: none;
    color: rgb(200, 200, 200);
}

/* .nav-menu ul li:hover {
    transition-delay: 0.1s;
} */

.nav-menu ul li:hover > a {
    color: rgb(255, 255, 255);
    font-style: bold;
    transition-delay: 0.05s;
}

/* .nav-menu ul li a :hover .nav-menu ul li{
    background-color: #111;
} */
/* ===================================================MAIN NAVIGATION BAR ======sub part=================================*/
.sub-menu {
    /* background-color: rgb(249, 249, 249); */
    background-color: rgb(33, 33, 46);
    margin-left: -14px;
    /* height: 295px; */
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
    /*border-radius: 4px;*/
    position: absolute;
    top: 100%;
    width: 160px;

    /* display: none; */

    /* overflow-y: hidden; */
    /* animation: growDown 300ms ease-in-out; */
    /* transform-origin: top center; */
}

.sub-menu ul {
    display: none;
}

.sub-menu ul li {
    border-style: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(137, 137, 137, 0.428);
    padding: 5px 25px 10px 15px;
    font-size: 14px;
    margin: 2px 5px;
    color: #ccc;
}

/* .nav-menu ul li:hover .sub-menu li{
    display: block;
    position: absolute; 
    width: 240px;
     transition: 0.4s; 
} */

.nav-menu ul li:hover #sub-menu1 {
    /* height: 291px; */
    /* height: 400px; */
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul li:hover #sub-menu1 li {
    opacity: 1;
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul li:hover #sub-menu2 {
    /* height: 134px; */
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul li:hover #sub-menu2 li {
    opacity: 1;
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul li:hover #sub-menu3 {
    /* height: 322px; */
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul li:hover #sub-menu3 li {
    opacity: 1;
    animation-name: dropdown;
    animation-duration: 500ms;
    animation-fill-mode: forwads;
}

.nav-menu ul :hover .sub-menu ul {
    display: flex;
    flex-direction: column;

    padding: 10px;
}

@keyframes dropdown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* ===================================================SIDE NAVIGATION===========main part=====================================*/

.side-nav {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -272px;
    background-color: #111;
    opacity: 0;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 1s;
    transition-timing-function: ease-in-out;
    /*border-radius: 2px;*/
}

.side-nav a {
    padding: 10px 10px 10px 30px;
    text-decoration: none;
    font-size: 22px;
    color: #ccc;
    display: block;
    transition: 0.3s;
}

.side-nav a:hover {
    color: #fff;
}

.side-nav .btn-close {
    position: absolute;
    top: 0;
    right: 22px;
    font-size: 36px;
    margin-left: 50px;
}

/* ===================================================SIDE NAVIGATION========drop down======================================*/

.side-sub-menu-1,
.side-sub-menu-2,
.side-sub-menu-3 {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    background-color: rgb(34, 34, 34);
    opacity: 0.96;
    /*border-radius: 6px;*/
}

/* ------------------------------------------------MAIN IMAGE ------------------------------------------------------------- */

.main {
    /* transition: margin-right 0.5s; */
    /* padding: 90px 0, 0, 0; */
    /* overflow-x: hidden; */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main .container {
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    background-image: url('https://ioaa2022.ge/assets/images/mainCover.jpg');
    background-size: cover;
    position: absolute;
    filter: blur(2px);
}

.main-content {
    height: 100%;
    z-index: 99;
    /* padding-top: 230px; */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-content .countdown li {
    font-size: 28px;
    border: none;
    text-align: center;
}

.main-header {
    font-size: 48px;
    text-align: center;
    padding: 0 30px;
    line-height: 6rem;
    /* margin-top: 5px; */
}

.main-sub-header {
    margin-top: 50px;
    font-size: 24px;
    border: 3px solid white;
    /*border-radius: 5px;*/
    padding: 15px 20px;
}

.scroll-downs {
    position: absolute;
    /*top: 0;*/
    right: 0;
    bottom: 40px;
    left: 0;
    margin: auto;

    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #fff;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}


.scroll-down {
    left: 50%;
    /* transform: translateY(0%) rotate(45deg); */

    /* opacity: 0; */
    cursor: pointer;
}

.scroll-down-top {
    width: 2em;
    height: 2em;
    background-color: transparent;
    z-index: 80;
    bottom: 40px;
    position: absolute;
    border-width: 0 0.25em 0.25em 0;
    border-style: solid;
    border-color: white;
    animation: scrolldown 1.2s ease-in-out infinite 0.15s;
}

.scroll-down-bottom {
    width: 2em;
    height: 2em;
    background-color: transparent;
    z-index: 80;
    bottom: 55px;
    position: absolute;
    border-width: 0 0.25em 0.25em 0;
    border-style: solid;
    border-color: white;
    animation: scrolldown 1.2s ease-in-out infinite;
}

@keyframes scrolldown {
    0% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(0%) rotate(45deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(20%) rotate(45deg);
        opacity: 0.7;
    }
}

/* ------------------------------------ sections -------------------------------------------------*/
.about {
    margin-top: 90px;
    width: 100%;
    /* height: 100vh; */
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}

.section {
    display: flex;
    width: 100%;
    height: 40%;
    margin-bottom: 20px;
    justify-content: space-between;
}

.img-container {
    min-height: 200px;
    width: 40%;
    /*border-radius: 15px;*/
    overflow: hidden;
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

/* .img-container img:hover {
    cursor: pointer;
}

.img-container img:hover .img-container {
    
} */

.text-container {
    width: 58%;
    background-color: rgb(249, 249, 249);
    padding: 20px;
    /*border-radius: 10px;*/
    /* display: flex;
    flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

.text-container a {
    color: rgb(167, 167, 167);
    font-size: 20px;
}

.text-container a:hover {
    /* transform: scale(1.5); */
    transform: translateX(5px);
    color: rgb(114, 114, 114);
    transition: ease-in-out, 0.2s;
}

.about-text {
    font-size: 12px;
}

.text-container h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.text-container h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.text-container p {
    font-size: 18px;
    margin-bottom: 20px;
    padding-top: 20px;
}

/* .uk-text {
    font-size: 20px;
} */

/*------------------------------------------- FOOTER -----------------------------*/

.footer .container {
    margin: 60px 0 0 0;
    padding-top: 40px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    background-color: rgb(33, 33, 46);
}

.footer .container ul {
    color: #ccc;
    font-style: bold;
    font-size: 16px;
}

.footer .container ul li a {
    color: #ccc;
    font-style: normal;
    font-size: 12px;
}

.footer .container ul li a i {
    color: #ccc;
    font-style: normal;
    font-size: 16px;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-columns ul {
    display: flex;
    flex-direction: column;
}

.footer-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
    align-items: center;
}

.footer-row a {
    color: #ccc;
    font-size: 18px;
}

.contacts-footer li {
    line-height: 28px;
    margin-left: -18px;
}

.footer .container li a:hover {
    color: lightblue;
    transition-delay: 0.1s;
    /* font-size: 12.5px; */
}

.footer .container li a i:hover {
    padding: 0;
    color: lightblue;
    transition-delay: 0.1s;
}

/*-------------------------------IOAA 2022 program- table--------------------------------------*/
.table th {
    padding: 20px 0 5px 0;
    font-size: 16px;
}

.table td {
    padding-top: 17px;
    padding-right: 20px;
    font-size: 15px;
}

.table {
    width: 100%;
}

.last-line {
    border-bottom: solid 2px rgba(161, 161, 161, 0.55);
    /* border-bottom: solid 2px rgba(148, 183, 205, 0.55); */
    padding: 0;
    margin: 0;
}

/*-------------------------------------- General pages ---------------------------------------*/

.main-container {
    margin: 160px;
    margin-top: 130px;
    /* padding: 60px; */
    display: flex;
}

.main-section {
    /*justify-content: center;*/
    display: flex;
    flex-direction: column;
    width: 65%;
    background-color: rgb(247, 247, 247);
    margin-right: 10px;
    padding: 25px;
    font-size: 18px;
    /*border-radius: 10px;*/
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

.section-top {
    margin-bottom: 50px;
}

.sub-section-text h2 {
    margin-bottom: 20px;
}

.sub-section-text p {
    margin-bottom: 40px;
    font-size: 16px;
}

.sub-section-img img {
    width: 100%;
    /*border-radius: 5px;*/
    margin-bottom: 40px;
    margin-top: 20px;
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
}

.side-section {
    width: 30%;
    display: flex;
    flex-direction: column;
    /* position: sticky; */
    /* background-color: brown; */
    margin-left: 10px;
}

.shortcut {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin: 0 20px 40px 20px;
    background-color: rgb(247, 247, 247);
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
    /*border-radius: 5px;*/
    font-size: 14px;
    object-fit: cover;
}

.shortcut img {
    margin-bottom: 20px;
    /*border-radius: 5px;*/
    box-shadow: 0.5px 0.5px 3px 0px rgba(129, 129, 129, 0.26);
}

.shortcut a,
.sub-section-text a {
    color: rgb(167, 167, 167);
    margin-top: 15px;
}

.shortcut a:hover {
    /* transform: scale(1.5); */
    transform: translateX(5px);
    color: rgb(114, 114, 114);
    transition: ease-in-out, 0.2s;
}

.sub-section-text a:hover {
    /* transform: scale(1.5); */
    transform: translateX(5px);
    color: rgb(114, 114, 114);
    transition: ease-in-out, 0.2s;
}

/*-----------------------------list of countries---------------------------------------------*/

.list-of-flags {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    /* margin: 10px; */
}

.country {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    margin: 10px;
}

.flag {
    width: 50%;
}

.country-name {
    width: 40%;
}

.flag img:hover {
    scale: 1.1;
}
.list-of-problems{
    display:flex;
    flex-direction: column-reverse
}


/* --------------------------------- countdown -----------------------------------------*/
.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 30px;
}

.countdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.679);
}

.countdown {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.countdown li {
    font-size: 40px;
    padding: 10px;
    margin: 20px;
    border-left: solid rgba(0, 0, 0, 0.252) 1px;
    padding-left: 40px;
    text-align: center;
}

.countdown :first-child {
    border-left: none;
}

.countdown-text {
    margin-top: 10px;
    font-size: 20px;
}

/*---------------------------------------slider------------------------------------------------------*/

.my-slides {
    display: none;
    height: 400px;
    /*border-radius: 3px;*/
    box-shadow: 1px 1px 4px 0px rgba(129, 129, 129, 0.26);
    margin-bottom: 20px;
    /* opacity: 0;
    animation-name: slide;
    animation-duration: 10s; */
}

.active-slide {
    display: block;
    opacity: 0.7;
    animation-name: slide;
    /* animation-delay: 2.5s; */
    animation-duration: 5s;

    /* animation-direction: reverse; */
}

/* .fade {
    opacity: 0;
} */

@keyframes slide {
    0%,
    100% {
        opacity: 0.7;
        /* transform: translateY(-30px); */
    }
    20%,
    80% {
        opacity: 1;
        /* transform: translateY(0px); */
    }
}

.statutes {
    width: 100%;
}

.statutes p {
    font-size: 16px;
    margin-top: 20px;
}

.statutes h4 {
    font-size: 18px;
    font-style: bold;
    margin-top: 20px;
}

.main-section a:hover {
    /* transform: scale(1.5); */
    /* transform: translateX(5px); */
    color: rgb(114, 114, 114);
    transition: ease-in-out, 0.2s;
}


.page-title {
    margin-bottom: 20px;
}