* {
    direction: rtl;
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    font-family: vazir;
    background-image: url('img/bg-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 39, 105, 0.5);
    z-index: 1;
}

.container {
    width: 85%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-logo {
    width: 150px;
    height: 150px;
    margin-top: 45px;
    z-index: 2;
}

.box-logo img {
    width: 100%;
}

.box-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(250, 255, 250);
    margin-top: 55px;
    z-index: 2;
}

.box-content h3 {
    font-size: 25px;
    max-width: 55rem;
}

.box-icon {
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.box-icon a {
    text-decoration: none;
}

.icon-item {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transition: all 0.5s;
}

.icon-item:hover {
    cursor: pointer;
    transform: translateY(-16px);
}

.icon-img {
    border-radius: 25px;
    width: 100px;
    height: 100px;
    padding: 26px;
    transition: opacity 0.3s ease;
    background-color: rgba(175, 175, 175, 0.6);
}

.icon-img img {
    width: 100%;
    height: 100%;
}

.icon-title {
    color: rgb(250, 255, 250);
}

.icon-title  h4 {
    font-size: 15px;
}