/*----------------------------------------------------
@File: Default Styles
@Author: 
@URL: 

This file contains the styling for the actual theme, this

---------------------------------------------------- */
/*=====================================================================
@Author: Age Dijital Ajans
=====================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,531;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,531;1,600;1,700;1,800;1,900&display=swap");
/*global area*/
/*----------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    font-family: "Jost", sans-serif;
    text-rendering: optimizelegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background: #4d7287;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    transition: 0.5s all;
}
.logo {
    background: rgb(255 255 255);
    box-shadow: 0 8px 32px 0 rgb(31 38 135 / 37%);
    backdrop-filter: blur(6.5px);
    -webkit-backdrop-filter: blur(6.5px);
    border-radius: 10px;
    display: inline-block;
    padding: 2rem;
}
.title {
    display: inline-block;
    font-size: 3rem;
    margin: 2rem;
}

.wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.buttons {
    display: flex;
    flex-direction: row;
}

.buttons a {
    font-size: 2rem;
    border: 1px solid;
    text-decoration: none;
    color: #fff;
    padding: 1rem;
    margin: 0 1rem;
    border-radius: 10px;
    transition: 0.5s all;
}

.buttons a:hover {
    background: #fff;
    color: #4d7287;
}
.img-gallary {
    display: flex;
    max-width: 80%;
    margin:1rem;
    flex-wrap: wrap;
}

.banner {flex: 1 0 23%;margin: 1rem;border: 5px solid #000;}

.banner img {
    width: 100%;
}
@media only screen and (max-width: 960px) {
  .title {
    display: inline-block;
    font-size: 2rem;
    margin: 2rem 1rem;
} 

.buttons a {
    font-size: 1.5rem;
    border: 1px solid;
    text-decoration: none;
    color: #fff;
    padding: 5px;
    margin: 0 1rem;
    border-radius: 10px;
    transition: 0.5s all;
}

.img-gallary {
    display: flex;
    max-width: 80%;
    margin: 1rem;
    flex-direction: column;
}


}