:root{
    --theme_white: #fff;
    --theme_green_bright: #a0d468;
    --theme_green_dark: #8cc152;
    --theme_blue_bright: #5d9cec;
    --theme_blue_dark: #4a89dc;
    --theme_red_bright: #fc6e51;
    --theme_red_dark: #e9573f;
    --theme_yellow_bright: #ffce54;
    --theme_yellow_dark: #fcbb42;
    --reg_main: #0095a0;
    --reg_light: #30bfc9;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('../fonts/Rajdhani-Light.ttf') format('truetype'),
         url('../fonts/Rajdhani-Medium.ttf') format('truetype');
}

body{
    height: 100%;
    overflow: hidden;
    margin: 0;
    text-align: center;
    font-family: 'Rajdhani'!important;
}
.ivp_size{
    height: 100vh;
}

a{
    color: #fff !important;
    
}

a:hover{
    text-decoration: none !important;
}

/*Header*/
header{
    width: 100vw;
    height: 112px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 300;
    z-index: 3;
    font-size: 60px;
    line-height: 64px;
    padding: 12px 24px;
    text-align: left;
}

#full_name{
    font-size: 32px;
    line-height: 32px;
    padding-left: 6px;
}

#contact_info{
    display: inline-block;
    position: absolute;
    top: 34px;
}

#separator{
    width: 1px;
    height: 60px;
    margin: 10px 30px 10px 12px;
    background: #fff;
    display: inline-block;
}

#logo p{
    margin: 0 !important;
}

#logo{
    display: inline-block;
    margin: 0;
}

.info p{
    font-size: 20px;
    line-height: 20px;
}

.info h4{
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
}

.icon_circle{
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 48px;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    position: relative;
    top: -8px;
}

.info_group, .info{
    display: inline-block;
}

.matura_cell{
	margin-bottom: 32px;
}

.fas{
    position: relative;
    top: -6px;
}
/*Pages*/
#registration_page {
    background-image: linear-gradient(var(--reg_main) 72%, var(--reg_light) 80%);
}
#minecraft_page{
    background-image: linear-gradient(var(--theme_green_dark) 72%, var(--theme_green_bright) 80%);
}

#official_page{
    background-image: linear-gradient(var(--theme_blue_dark) 72%, var(--theme_blue_bright) 80%);
}

#students_page{
    background-image: linear-gradient(var(--theme_red_dark) 72%, var(--theme_red_bright) 80%);
}

#gallery_page{
    background-image: linear-gradient(var(--theme_yellow_dark) 72%, var(--theme_yellow_bright) 80%);
}

.carousel-control-prev, .carousel-control-next{
    width: 8% !important;
}


.carousel-caption p{
    font-size: 3vw !important;
    display: inline-block;
    margin: 0;
}
.carousel-caption h5{
    font-size: 4vw !important;
    font-weight: 600 !important;
    letter-spacing: -0.1vw;
    display: inline-block;
}

/*Details*/

#center{
    text-align: center;
    padding-top: 10v;
}
#registration_image{
    width: 60vw;
    height: 65vw;
    max-width: 65vh;
    max-height: 65vh;
    background-image: url(../images/school.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -60%);
    top: 50%;
    left: 50%;
    position: absolute;
}

#minecraft_image{
    width: 35vw;
    height: 35vw;
    max-width: 45vh;
    max-height: 45vh;
    background-image: url(../images/grass_block.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -60%);
    top: 50%;
    left: 50%;
    position: absolute;
}

#gallery_image{
    width: 40vw;
    height: 40vw;
    max-width: 55vh;
    max-height: 55vh;
    background-image: url(../images/polaroid.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -45%);
    top: 50%;
    left: 50%;
    position: absolute;
}
#official_image{
    width: 32vw;
    height: 32vw;
    max-width: 45vh;
    max-height: 45vh;
    background-image: url(../images/official.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -52%);
    top: 50%;
    left: 50%;
    position: absolute;
}