@font-face {
    src: url(../google-fonts/OpenSans-VariableFont_wdth\,wght.ttf);
    src: url(../google-fonts/OpenSans-Italic-VariableFont_wdth\,wght.ttf);
    font-family: 'Open Sans', sans-serif;
    
}
* {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    margin: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    }
.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}
/* small */
@media (min-width:768px) {
    .container {
        width: 750px;
    }
}
/* medium */
@media (min-width:992px) {
    .container {
        width: 970px;
    }
}
/* large */
@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}
/* srart header */
header .container {
    display: flex;
    align-items: center;
    height: 10vh;
}
header .container a {
    text-decoration: none;
}
header .container .logo {
    width: 90px;
    margin-right: 20px;
}
@media (max-width:767px) {
    header .container .logo {
        width: 40px;
        margin-right: 5px;
    }
}
/* end header */
/* start section */
section {
    background-color: #00002b;
    background-image:url(/images/background.jpg);
    background-size:cover ;
}
section .container {
    display: flex;
    justify-content: space-around;
    align-items:flex-end;
    padding: 50px 30px;
    height: 80vh;
}
@media (max-width:600px) {
    section .container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        align-items:center;
    }
}
section .container .card {
    width: 150px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 5px;
    text-align: center;
    background-color: #f3feff8f;
    border: 1px solid #c5c5c9;
    box-shadow: 1px 1px 8px 4px rgb(149 149 149 / 42%);
}
@media (max-width:767px) {
    section .container .card {
        width: 120px;
        padding:15px 0;
        margin-bottom: 15px;
}
}
section .container .card i {
    font-size: 100px;
}
section .container .card .operat {
    color: #e1ac0e;
}
section .container .card .account {
    color: #c91228;
}
section .container .card .set {
    color: #dc4e0e;
}
@media (max-width:767px) {
    section .container .card i {
        font-size: 50px;
    }
}
section .container .card .text {
    font-weight: 800;
    padding-top:20px ;
    color: #00002b;
}
@media (max-width:767px) {
    section .container .card .text {
        font-size: 12px;
    }
}
section .container a {
    text-decoration: none;
}
/* end section */
/* start footer */
footer {
    background-color: #ffffff;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    height: 10vh;
}
footer .container .contact {
    justify-content: space-around;
}
footer .container .contact a {
    color:#000000;
}
footer .container .contact p {
    font-size: 14px;
}
@media (max-width:767px) {
    footer .container,
    footer .container .contact p {
        font-size:x-small ;
    }
    footer .container .contact a {
        display: block;
        margin-bottom: -10px;
        padding-bottom: 0;
    }
}

/* end footer */