.card-module{
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-flow: row wrap;
}

.features-card{
    padding: 30px;
    height: 250px;
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: .5s;
}

.features-card:hover{
    transition: .5s;
    background-color: #e8edff;
}

.features-card .im{
    display: block;
    height: 90px;
    padding-top: 20px;
}

.features-card hr{
    margin: 0;
    border-color: #ffc107;
    margin-top: 30px;
    width: 80px;
}

.features-card .title{
    padding-top: 15px;
    font-size: 24px;
}

.features-card a{
    font-size: 20px;
}

.features-card a:hover{
    color: #ffc107;
}

@media only screen and (max-width: 568px) {
    #logon{
        display: none;
    }
}

@media only screen and (max-width: 1358px) {
    .features-card{
        margin-top: 20px;
    }

    #check{
        display: none;
    }
}


/* Language picker styles */
.language-picker {
    display: inline-block;
    position: relative;
  }
  
  .js .language-picker__form {
    display: none;
  }
  
  .language-picker__button .icon {
    height: 16px;
    width: 16px;
  }
  
  .language-picker__button .icon:first-of-type {
    margin-right: var(--space-xxxs);
  }
  
  .language-picker__button .icon:last-of-type {
    margin-left: var(--space-xxxs);
  }
  
  .language-picker__dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: 200px;
    background-color: var(--color-bg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xxs) 0;
    border-radius: var(--radius-md);
    z-index: var(--zindex-popover);
    margin-top: var(--picker-vertical-gap);
    margin-bottom: var(--picker-vertical-gap);
    --space-unit:  1rem;
    --text-unit: 1rem;
    font-size: var(--text-unit);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s .2s, opacity .2s;
  }
  
  .language-picker__dropdown--right {
    right: 0;
    left: auto;
  }
  
  .language-picker__dropdown--up {
    bottom: 100%;
    top: auto;
  }
  
  .language-picker__button[aria-expanded="true"] + .language-picker__dropdown {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity .2s;
  }
  
  .language-picker__item {
    text-decoration: none;
    padding: var(--space-xs) var(--space-lg) var(--space-xs) var(--space-md);
    color: var(--color-contrast-high);
  }
  
  .language-picker__item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .language-picker__item:hover {
    background-color: var(--color-contrast-lower);
  }
  
  .language-picker__item:focus {
    outline: none;
    background-color: hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.1);
  }
  
  .language-picker__item[aria-selected=true] {
    position: relative;
    background-color: var(--color-primary);
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .language-picker__item[aria-selected=true]:focus {
    outline: 2px solid hsla(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.2);
  }
  
  .language-picker__item[aria-selected=true]::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 16px;
    width: 16px;
    right: var(--space-sm);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline stroke-width='1.5' stroke='%23ffffff' fill='none' stroke-linecap='round' stroke-linejoin='round' points='1,9 5,13 15,3 '/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .language-picker__flag {
    display: block;
    display: flex;
    align-items: center;
  }
  
  .language-picker__flag::before {
    display: none;
    flex-shrink: 0;
    content: '';
    height: 16px;
    width: 16px;
    margin-right: var(--space-xxs);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .language-picker__dropdown .language-picker__flag::before {
    margin-right: var(--space-xs);
  }
  
  .language-picker--flags .language-picker__flag::before {
    display: inline-block;
    display: inline-flex;
  }
  
  .language-picker--flags .language-picker__button .icon:first-of-type {
    display: none;
  }
  
  .language-picker__flag--english::before {
    background-image: url("../images/en.svg");
  }
  
  .language-picker__flag--russian::before {
    background-image: url("../images/ru.svg");
  }
  
  .language-picker__flag--uzbek::before {
    background-image: url("../images/uz.svg");
  }
  
  .language-picker--hide-label .language-picker__button .icon {
    margin-left: 0;
  }
  
  .language-picker--hide-label .language-picker__button .icon:first-of-type {
    display: none;
  }
  
  .language-picker--hide-label .language-picker__button em {
    display: none;
  }
  
  .language-picker--hide-label .language-picker__button .language-picker__flag::before {
    margin-right: var(--space-xxxs);
  }
  
  .language-picker--hide-label .language-picker__flag::before {
    display: inline-block;
    display: inline-flex;
  }