﻿@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam');
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@800&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .modaldiv {
        /*        -webkit-backdrop-filter: blur(10px);*/
        background-color: rgb(53, 69, 76, 0.6);
        backdrop-filter: blur(10px);
    }
}

section {
    background-size: 100% 100%;
}
section h1 {position:relative}
section h1 span {position:absolute; top:-124px;}

body {
    font-family: 'Archivo', sans-serif;
    /*line-height: 1.2;*/
}

section {
    background-repeat:no-repeat;
    background-size:100% 100%;
    
}

.heading {
    font-size:4rem;
}

.subheading {
    font-family: 'Kalam', cursive;
    font-weight: 700;
    font-size: 1.1rem;
/*    color: #354546;*/
}

#header {
    align-content:center;
    text-align:center;
}

.chip1 {
    height: 25px;
    width: 25px;
    background-color: #ff6a00 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top:10px;
}

.ThreeColumn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1;
}

.ThreeColumn > div:nth-of-type(3) {
    padding: 5px;
}

.ThreeColumn > div:nth-of-type(4) {
    padding: 5px;
}

.OneColumn {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 5px;
}


.OneColumn > div {
    border-radius: 15px;
}

.span1 {
    display: flex;
    grid-column: 1/span 3;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.span2 {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

.span3 {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}

.right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

#floater {
    padding-left: 100px;
    margin-top: 100px;
    padding: 0;
    overflow: auto;
    display: grid;
    position: fixed;
    right: 20px;
}

.img-badge {
    position: absolute;
    background: #354546;
    text-align: center;
    border-radius: 20px;
    color: white;
    padding: 4px 10px 4px 10px;
    font-size: 1rem;
    margin-left: 10px;
    margin-top: 10px;
}

.infobox {
    display: grid;
    grid-row-gap: 10px;
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
}

.infoboxheading {
    font-weight: bolder;
    font-size: large;
    color: #354546;
}

.infoboxparagraph {
    font-size: small;
    line-height: 1.6;
    /*color: #354546;*/
}


.factbox {
    display: grid;
    grid-row-gap: 10px;
    border-radius: 15px;
    padding: 30px;
    background-color: #f8dbb2;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
}

.infoboxheading {
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    font-weight: 900;
    font-size:1.2rem;
    color: #354546;
}

.infoboxparagraph {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #808080;
    color: #354546;
}

.imgboxheading {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
}

.imgboxparagraph {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #fff;
}

.imgbox {
    display: grid;
    grid-row-gap: 10px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-size:cover;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
}

.imgbox:hover > span {
    display: none;
}

.imgbox:hover .text {
    border-radius: 15px;
    line-height: 1.2rem;
    /*background-color: #354546;*/
    opacity: 0.9;
    padding: 30px;
    width: 100%;
    height: 100%;

}


.text {
    opacity: 0;
}


.centerbox {
    display: grid;
    grid-row-gap: 10px;
    border-radius: 15px;
    padding: 30px;
    background-color: #fff;
    box-shadow: 1px 1px 2px 2px rgba(0,0,0,0.1);
}