@import url('https://fonts.googleapis.com/css2?family=Titan+One&display=swap');
*{
    font-family: "Titan One", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

.logo {
    position: relative;
    width: 100%;
    display: flex;
    /*justify-content: center;
    */
    height: 40%;
    background: #13192F;
}

.logo .img {
    position: absolute;
    left: 30%;
    /*transform: translateX(-50%);
    /*background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 80%);
    transform: translate(50%, -50%);*/
}

.logo .img img {
    height: 250px;
    background: transparent;
}



.logo .name {
    position: relative;
    top: 60%;
    left: 41%;
    color: #c1cf00;
}

/*//////////////////////////*/

.boxes {
    position: relative;
    width: 100%;
    height: auto;
    background: rgb(36, 36, 36);
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    justify-content: space-around;
    align-items: flex-start; 
}

.boxes .box {
    /*background: white;*/
    border-radius: 10px;
    height: 250px;
    width: 220px;
    color: #FFF;
    text-align: center;
    padding: 10px;
    margin: 5px;
}

.boxes .box img
{
    width: 60px;
    /*
    left: 50%;
    transform: translateX(50%);
    */
}
.boxes .bigbox img
{
    width: 60px;
    margin: 5px;
}

.boxes .box i
{
    position: absolute;
    height: 2px;
    width: 100px;
    background: #FFF;
    border-radius: 5px;
    margin-top: 15px;
    transform: translateX(-50%);
}

.text
{
    margin-top: 35px;
}
.textcont
{
    display: flex;
    align-items: center;
    margin-left: 15px;
    width: 100%;
}
.textcont button
{
    background: transparent;
    border: 1px solid #FFF;
    border-radius: 5px;
    padding: 5px;
    color: #FFF;
    cursor: pointer;
    font-size: 20px;
}
.textcont button:hover
{
    background: #FFF;
    color: black;
}

.bigtext
{
    margin-top: 0px;
    margin-right: 10px;
}

.boxes .bigbox {
    /*background: white;*/
    border-radius: 10px;
    height: auto;
    width: 90%;
    color: #FFF;
    text-align: center;
    padding: 10px;
    margin: 5px;
    margin-top: 20px;
}

.boxes .bigbox .title
{
    display: flex;
    align-items: center;
    padding: 0px;
}


.color1
{
    background: linear-gradient(to bottom right, #ff2e2e, #4d0000);
}
.color2
{
    background: linear-gradient(to bottom right, #FFFF00, #4d4d22);
}
.color3
{
    background: linear-gradient(to bottom right, #61ff42, #214400);
}
.color4
{
    background: linear-gradient(to bottom right, #76c8e9, #00212b);
}
.color5
{
    background: linear-gradient(to bottom right, #d771ff, #2b002b);
}
.color6
{
    background: linear-gradient(to bottom right, #7ed0ff, #002b29);
}

/*//////////////////////////*/

.about {
    position: relative;
    display: block;
    height: 60%;
    background: #000000;
    margin-top: -35px;
}
.about .text {
    position: relative;
    top: 20px;
    text-align: center;
    color: white;
}
.about .text p {
    font-size: 30px;
}
.about .line {
    position: absolute;
    left: 50%;
    top: 80px;
    transform: translateX(-50%);
    height: 3px;
    width: 200px;
    background: white;
    border-radius: 2px;
}
.about .info {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    padding-bottom: 0;
}
.about .info .cont {
    position: relative;
    top: 100px;
    left: 100px;
}
.about .info .cont .var {
    position: relative;
    display: flex;
    color: rgb(255, 255, 255);
    margin-bottom: 30px;
}
.about .info .cont .var .icon {
    font-size: 30px;
    margin-right: 5px;
    margin-top: -5px;
    color: rgb(255, 217, 0);
}
.about .info .location {
    position: relative;
    top: 55px;
}
.about .info .location iframe{
    position: relative;
    height: 400px;
    width: 400px;
}

@media (max-width: 815px){
    .logo .name {
        left: 20%;
    }
    .logo .img {
        position: absolute;
        left: 30%;
        transform: translateX(-50%);
    }
    .about .info {
        display: block;
        padding: 0;
        margin-left: -10px;
    }
    .boxes .bigbox {
        width: 120%;
    }
    .bigtext{
        font-size: 15px;
        margin-right: 20px;
    }
    .textcont{
        display: block;
    }
    .textcont button{
        margin-top: 5px;
    }
    .about .info .location iframe{
        height: auto;
        width: auto;
        left: 20%;
        margin-top: 10%;
    }
}