@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700&display=swap');

html, body {
    margin:  0px;
    text-align:  right;
    color: black;
    background-color: white;
    font-family: 'Heebo';
    font-size: 16px;
    background-image: url('/img/bg-big.jpg');
    background-size: auto;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
}

img {
    border:  0px;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

.wrap {
    width: 1100px;
    margin: auto;
}

.header {
    text-align: center;
    padding: 50px 0px;
}

.slogan {
    background-color: rgb(0 0 0 / 60%);
    padding: 6px 4px;
    color: white;
    display: inline-block;
    width: 296px;
    font-size: 18px;
    margin-bottom: 15px;
}

.shadow {
    box-shadow: 0px 0px 8px gray;
}

#logo {
    display: inline-block;
}

#logo img {
    display: inline-block;
    margin: 0px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
}

.flex3 {
    width: 320px;
    text-align: center;
    margin-bottom: 30px;
}

.box-1 {
    position: relative;
    margin-bottom: 50px;
}

.box-2 {
    background-color: white;
    padding: 20px;
    text-align: right;
    position: relative;
    min-height: 260px;
}

h2 {
    margin: 0px 0px 10px 0px;
}

.button {
    position: absolute;
    background: #6CD4F0;
    background: -webkit-linear-gradient(top, #6CD4F0, #4BB9EA);
    background: -moz-linear-gradient(top, #6CD4F0, #4BB9EA);
    background: linear-gradient(to bottom, #6CD4F0, #4BB9EA);
    color: white;
    text-align: center;
    width: 126px;
    right: calc(50% - 63px);
    bottom: -15px;
    padding: 3px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0px 0px 5px gray;
    transition: 0.2s;
}

.button:hover {
    filter: brightness(1.1);
}

.footer {
    color: white;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 20px;
}

.flex .box-2:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 100px;
    pointer-events: none;
}

.flex:nth-child(1) .box-2:after {
    background: -webkit-linear-gradient(top, #ffffff, #FFDDBB);
}

.flex:nth-child(2) .box-2:after {
    background: -webkit-linear-gradient(top, #ffffff, #C4C8DE);
}

.flex:nth-child(3) .box-2:after {
    background: -webkit-linear-gradient(top, #ffffff, #D0EDF9);
}

@media screen and (max-width: 1100px) {
    
    .wrap {
        width: 100%;
        padding: 0px 10px;
    }

    .flex {
        width: 240px;
    }
    
    body {

    }
    
}

@media screen and (max-width: 700px) {

    .flex {
        width: 100%;
    }

}