* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}
 
.container{
    width: 100%;
}

/*Header*/
.logo, nav, li a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500; 
    font-size: 16px;
    color: rgb(42, 42, 189);
    text-decoration: none;
    cursor: pointer;
}

.logo h1 {
    font-size: 26px;
}

.logo{
    order: 3;
    margin-left: auto;
}

nav {
    order: 1;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;  
    background-color: rgb(236, 227, 227);
}

ul {
    list-style: none;
}

ul li {
    display: inline-block;
    padding: 0 10px;
}

ul li a{
    transition: 0.5s;   
}

ul li a:hover {
    color: red;
}

.btn{
    order: 2;
}

#btn {
    padding: 9px 20px;
    margin-left: 15px;
    border: none;
    border-radius: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500; 
    font-size: 14px;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(310deg, rgb(33, 82, 255) 0%, rgb(33, 212, 253) 100%);
    transition: 0.5s; 
}

#btn:hover {
    box-shadow: rgba(0, 0, 0, 0.11) 0px 4px 7px -1px, rgba(0, 0, 0, 0.07) 0px 2px 4px -1px;
}

/*Start collapsed burger*/
#triple-button{
    display: none;
}

.sidenav {
    position: absolute;
    width:0;
    top: 4%;
    /* right: 10%; */
    height: 30%;
    overflow-x: hidden;
    transition: 0.3s;
    background-color: rgba(238, 238, 238);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 4px 7px -1px, rgba(0, 0, 0, 0.07) 0px 2px 4px -1px;
}

.sidenav a {
    text-align: right;
    margin: 0 0 0 0;
    padding: 5px 25px 5px 10px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.0em;
    color: rgb(42, 42, 189);
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #000000;
}

.closebtn{
    /* margin-right: 20px; */
    color: rgb(42, 42, 189);
}

.sidenav .closebtn {
    position: absolute;
    top: -10%;
    font-size: 2.1em;
    margin-left: 0px;
}
/*End of Collapsed*/

/*Landing Page*/
.landing_page {
    min-height: 100vh;
    overflow: hidden;
    /* width: 100%; */
    padding: 130px;
    background-image: url(Assets/Image/JPG/0ceb84d91d287f32de089b50c24f7b4f-removebg-prevw.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right -15px;
    background-size: 370px;
    /* border-bottom: 10px solid rgb(236, 227, 227); */
    /* background-color: #f8f9fa; */
}

.landing_page h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.landing_page h1 span {
    color: rgb(42, 42, 189);
}

span img {
    position: absolute;
    width: 170px;
    margin-top: 3px;
    margin-left: 20px;
}

.landing_page p {
    font-size: 18px;
}

.landing_page p:nth-last-child(2){
    padding-top: 25px; 
    font-weight: 700;
}

.search {
    display: flex; 
    padding-top: 9px;
}

.search #btn {
    border: none;
    border-radius: 3px;
    margin-left: 5px;
    height: 50px; 
    width: 45px;
}

.search #btn img {
    width: 40px;
    margin: -4px 0 0 -18px;
}

#country_sel, #city_txt {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(73, 80, 87);
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(210, 214, 218);
    border-radius: 4px;
    transition: 0.15s; 
}

#country_sel {
    width: 150px;
}

#city:focus, input[type = "text"]:focus{
    outline: none;
    border: 2px solid rgb(226, 147, 211);
}

#city_txt {
    width: 10%;
    margin-left: 5px;
}

/*About*/
.about {
    margin: 0 0px;
    /* padding-top: 100px; */
}
.box_container {
    display: grid;
    margin: auto;
    justify-content: center;
    grid-column-gap: 100px;
    grid-template-columns: 300px 300px 300px;
    text-align: center;
}
.box_container h3 {
    color: rgb(42, 42, 189);
}
.box_container p {
    color: black;
    font-weight: 400;
}

.boxes {
    margin: 0 auto;
    /* background-color: rgb(42, 42, 189); */
    padding: 30px;
    border-radius: 7px;
    /* box-shadow: rgba(0, 0, 0, 0.11) 0px 4px 7px -1px, rgba(0, 0, 0, 0.07) 0px 2px 4px -1px; */
}

/*MEET TEAM*/
.members {
    margin-top: 110px;
    /* height: 110vh; */
    width: 100;
    background-color: #f8f9fa;
    /* border-bottom: 10px solid rgb(236, 227, 227); */
}
.team {
    padding: 140px;
    background-image: url(./Assets/Image/JPG/Team-06.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 800px;   
}

.team h1 {
    /* text-align: center; */
    /* transform: rotate(-90deg); */
    /* position: absolute; */
    /* left: 100px; */
    padding-top: 70px;
    font-weight: 700;
    font-size: 3.0rem;
    line-height: 50px;
}

.team p {
    /* text-align: center; */
    /* transform: rotate(-90deg); */
    /* position: absolute; */
    /* padding-top: 250px; */
    /* left: 270px; */
    padding-top: 10px;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 24px;
}

.team h1 span {
    color: rgb(42, 42, 189);
}

/*Sponsorship*/
.spon {
    padding-top: 50px;
    background-color: #f8f9fa;
}

.spon h3 {
    text-align: center;
    font-size: 1.4rem;
}

.sponsorship {
    display: grid;
    justify-content: center;
    grid-column-gap: 90px;
    grid-template-columns: 100px 100px 100px 100px;
    padding-top: 25px;
    margin: auto 0;
}

.counter {
    width: 100;
    display: grid;
    justify-content: center;
    grid-column-gap: 180px;
    grid-template-columns: 110px 110px 110px;
    padding: 100px;
    text-align: center;
    margin: auto 0;
}
.count {
    width: 130%;
}

.count h1 {
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: -0.05rem;
    position: relative;
    z-index: 1;
    color: #17c1e8 !important;
}

.count h5{
    font-size: 1.2rem;
}

/*MESSAGE*/
/* .section {
    background-image: url(./Assets/Image/SVG/Message-01-08.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 400px;
}  */

.message {
    padding-top: 100px;
    display: grid;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.cont_message {
    padding: 30px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact_head {
    text-align: center;
    padding: 10px;
    color: rgb(42, 42, 189);
}

.contact_head h3 {
    font-weight: 700;
    font-size: 1.5rem;
}

.contact_head p{
    padding: 5px;
} 

form {
    justify-content: center;
}

form label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #344767;
}

.fullname, .email {
    margin: 30px;
}

#text {
    height: 8vh;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(73, 80, 87);
    padding: 0.5rem 0.75rem;
    border: 1px solid rgb(210, 214, 218);
    border-radius: 4px;
    transition: 0.15s; 
}

#text:focus, textarea:focus{
    outline: none;
    border: 2px solid rgb(226, 147, 211);
}

.left{
    float: left;
}

.clear{
    clear: both;
}

.textarea {
    min-height: unset;
    margin: 30px;
    margin-top: 10px;
}

textarea {
    display: block;
    height: 165px;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4rem;
    color: #495057;
    border: 1px solid #d2d6da;
    border-radius: 5px;
    resize: vertical;
    transition: 0.15s; 
}

.button {
    text-align: center;
}

/*FOOTER*/
.footer {
    /* display: flex; */
    padding: 80px 150px 40px 130px; 
}

.logos {
    line-height: 25px;
    order: 0;
}

.content{
    display: grid;
    justify-content: center;
    grid-column-gap: 180px;
    grid-template-columns: 140px 140px 130px 130px; 
    line-height: 26px;
} 

.content h4{
    color: rgb(42, 42, 189);
}

.footer a {
    color: #344767;
    text-decoration: none;
}

.foot_word {
    padding-top: 40px;
    text-align: center;
    color: rgb(42, 42, 189);
}

.foot_word a {
    color: rgb(42, 42, 189);
}

/*MEDIA QUERIES*/
@media screen and (max-width: 1162px) { 
    .box_container {
        grid-column-gap: 90px;
        grid-template-columns: 300px 300px;
    }
    
    .boxes {
        margin: 0 auto;
        /* background-color: rgb(42, 42, 189); */
        padding: 30px;
    }    

    /*MEET TEAM*/
    .team {
        padding: 120px;
    }

    .team h1 {
        font-size: 2.8rem;
    }

    .team p {
        font-size: 15px;
    }

    /*Sponsorship*/
    .sponsor{
        padding: 10px;
    }
    .sponsorship {
        grid-template-columns: 100px 100px;
        margin-left: -5%;
    }
}

@media screen and (max-width: 1036px) {
    .team {
        background-image:none;
        text-align: center;
        padding: 0px;
    }
}
@media screen and (max-width: 800px) {
    header nav{display: none;}
    #triple-button{
        display: block;
        font-family: Bahnschrift, Geneva, sans-serif;
        font-weight: 700;
    }
    .box_container {
        grid-template-columns:  300px;
    }
    /* .sponsorship {
        grid-template-columns: 100px;
    } */

    .message {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    .cont_message {
        padding: 30px;
    }
}

@media screen and (max-width:450px){
    .sidenav {padding-top: 12px;}
    .sidenav a {font-size: 1.125em;}
}

@media screen and (max-width: 980px) {
    .landing_page {
        text-align: center;
        /* padding: 110px; */
    }
    
    .landing_page h1 {
        font-size: 2.8rem;
        line-height: 99%;
    }
    
    .landing_page p {
        font-size: 15px;
    }

    .search {
        justify-content: center;
        padding: 10px;
    }
    
    #city_txt {
        padding: 0rem 0.4rem;
        width: 20%;
    }
    .counter {
        grid-column-gap: 180px;
        grid-template-columns: 110px;
        padding: 80px 0px;
        text-align: center;
        margin: auto 0;
    }
    .count{
        padding: 30px 0px;
    }
}