*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

a{
    display: inline-block;
}

body{
    font-family: 'Roboto';
    font-weight: 400;
    color: #000000;
    background: #f7f7f5;
}

/*Site title*/
.site-title {
    width: 100%;
    margin: 88px auto 48px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title .title {
    font-size: 32px;
    font-weight: 900;
    color: #2d2d2d;
}

.site-title .link {
    font-size: 14px;
    font-weight: 900;
    color: #3879da;
    display: flex;
    align-items: center;
    gap: 16px;
}

.container{
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
}

/*header*/
.header {
    background: #2d2d2d;
}

.header .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
    z-index: 99;
}

.header .top .logo-block {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 20px;
    color: #fff;
}

.header .menu-mobile {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.header .top .menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header .top .menu .item {
    font-size: 16px;
    color: #e2e2e2;
    cursor: pointer;
    position: relative;
}

.header .top .menu .item .dropdown-list {
    position: absolute;
    background: #ffffff;
    width: 100%;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.header .top .menu .item:hover .dropdown-list {
    opacity: 1;
    pointer-events: all;
}

.header .top .menu .item .dropdown-list .drop-txt {
    padding: 5px 10px;
    color: #2d2d2d;
}

.header .top .menu .item .dropdown-list .drop-txt:hover {
    background: #f7f7f5;
    color: #3879da;
}

.header .top .menu .item i {
    color: transparent;
    -webkit-text-stroke: 1px #e2e2e2;
}

.header .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.header .bottom .dropdown-btn {
    width: 255px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #3879da;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.header .bottom .search {
    width: 100%;
    max-width: 585px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 15px;
}

.header .bottom .search i {
    color: #ffffff
}

.header .bottom .search input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
}

.header .bottom .search input::placeholder {
    font-size: 14px;
    color: #ababab;
    font-weight: 400;
    font-family: 'Roboto';
}

.header .bottom .actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header .bottom .actions .link {
    color: #ffffff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header .bottom .actions .link.active:after {
    content: '';
    position: absolute;
    right: 7px;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3879da;
    border: 3px solid #2d2d2d;
    box-sizing: border-box;
}

.header .bottom .actions .link.active:hover:after {
    background: #ffffff;
    border-color: #3879da;
}

.header .bottom .actions .link:hover {
    background: #3879da;
}

.header .bottom .actions .link i {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}

/*main*/
.main {
    padding-top: 16px;
}

.main .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.main .side-bar {
    width: 255px;
    background: #ffffff;
}

.main .side-bar .item {
    padding: 13px 16px;
    border-bottom: 1px solid #f7f7f5;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.main .side-bar .item:after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #e2e2e2;
    border-bottom: 2px solid #e2e2e2;
    border-radius: 2px;
    transform: rotate(-45deg) translateY(-50%);
}

.main .side-bar .item i {
    font-size: 14px;
    color: #119ee5;
}

.main .side-bar .item span {
    font-size: 14px;
    color: #2d2d2d;
}

.main .slider {
    width: 100%;
    height: 416px;
    max-width: 824px;
    position: relative;
}

.main .slider-items {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 56px;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.main .slider-items.active {
    opacity: 1;
    pointer-events: all;
}

.main .slider-items img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .slider-items .content {
    max-width: 387px;
    position: relative;
    z-index: 1;
}

.main .slider-items:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 67%, rgba(0,0,0,0.2));
    z-index: 1;
}

.main .slider-items .content .title {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
}

.main .slider-items .content .subtitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 24px 0 32px;
}

.main .slider-items .content .btn {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: #3879da;
    padding: 16px 24px;
    cursor: pointer;
    border: none;
}

.main .slider .indicators {
    position: absolute;
    z-index: 9;
    right: 43px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 19px;
}

.main .slider .indicators :is(.fa-arrow-down, .fa-arrow-up) {
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.main .slider .indicators :is(.fa-arrow-down:hover, .fa-arrow-up:hover) {
    color: #3879da;
    transform: scale(1.2);
    -webkit-text-stroke: 1px #ffffff;
}

.main .slider .indicators ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.main .slider .indicators .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.main .slider .indicators .dot:hover {
    background: #3879da;
}

.main .slider .indicators .dot.active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
}

/*Products*/
.products .container {
    display: flex;
    justify-content: space-between;
    gap: 1px;
}

.products .card {
    width: calc(100% / 6);
    background: #ffffff;
    padding: 12px 10px;
}

.products .card .actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.products .card .actions i {
    font-size: 20px;
    color: #575757;
    cursor: pointer;
}

.products .card .product-img {
    height: 125px;
    width: 100%;
}

.products .card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products .card .product-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.products .card .price {
    display: flex;
    margin: 4px 0;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #2d2d2d;
}

.products .card .price .old {
    font-weight: 400;
    font-size: 14px;
    color: #ababab;
    text-decoration: line-through;
}

.products .card .btn {
    width: 100%;
    padding-top: 12px;
    background: none;
    border: none;
    display: flex;
    font-size: 14px;
    font-weight: 900;
    color: #3879da;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f7f7f5;
    cursor: pointer;
}

/*daily*/
.daily {
    margin-top: 88px;
}

.daily .container {
    display: flex;
}

.daily .product {
    display: flex;
    align-items: center;
    position: relative;
    background: #ffffff;
    padding: 11px;
    gap: 33px;
    width: 100%;
    max-width: 761px;
}

.daily .actions {
    display: flex;
    gap: 8px;
    font-size: 20px;
    color: #575757;
    position: absolute;
    top: 16px;
    left: 16px;
    cursor: pointer;
}

.daily .image {
    height: 100%;
    max-width: 350px;
    width: 100%;
}

.daily .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.daily .product-name {
    font-size: 24px;
    font-weight: 900;
    color: #2d2d2d;
}

.daily .price {
    margin: 12px 0 21px;
    font-size: 20px;
    font-weight: 900;
    color: #3879da;
}

.daily .price .old {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 400;
    color: #ababab;
}

.daily .buttons {
    display: flex;
    gap: 8px;
}

.daily .buttons button {
    font-size: 14px;
    font-weight: 900;
    color: #ffffff;
    padding: 16px 24px;
    background: #3879da;
    cursor: pointer;
    border: none;
}

.daily .buttons button:last-child {
    background: none;
    color: #575757;
}

.daily .info {
    background: #e2e2e2;
    padding: 40px;
}

.daily .info .title {
    font-size: 32px;
    font-weight: 900;
    color: #2d2d2d;
}

.daily .info .text {
    font-size: 16px;
    line-height: 24px;
    color: #575757;
    margin: 12px 0 34px;
}

.daily .info .box {
    width: 100%;
    padding: 12px 16px;
    background: #3879da;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.daily .info .time {
    font-size: 20px;
    font-weight: 900;
}

/*services*/
.services {
    margin: 98px 0;
}

.services .container {
    display: flex;
    justify-content: space-between;
}

.services .fast {
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.services .fast .title {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 24px;
}

/*mews*/
.news .box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 0 32px 0;
}

.news .box .left .cards {
    display: flex;
    gap: 30px;
}

.news .box .card {
    width: 350px;
    height: 350px;
    background: #ffffff;
}

.news .box .card .text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
    padding: 16px;
}

.news .box .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    height: 392px;
    background: #e2e2e2;
    padding: 44px 47px;
}

.news .box .right .title {
    font-size: 20px;
    font-weight: 900;
    color: #2d2d2d;
    margin-top: 29px;
}

.news .box .right .text {
    font-size: 15px;
    font-weight: 400;
    color: #2d2d2d;
    margin: 4px 0 25px;
}

.news .right form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news .right input {
    border: none;
    background: #ffffff;
    color: #ababab;
    font-size: 14px;
    font-weight: 400;
    width: 261px;
    height: 48px;
    padding: 14px 12px;
    margin-bottom: 40px;
    outline: none;
}

.news .right .btn {
    padding: 16px 24px;
    border: none;
    background: #3879da;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.news .box .left .indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 19px;
}

.news .box .left .indicators i {
    color: #ababab;
    font-size: 14px;
}

.news .box .left .indicators ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news .box .left .indicators .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ababab;
}

.news .box .left .indicators .dot.active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3879da;
}

/*footer*/
.footer {
    width: 100%;
    background: #2d2d2d;
    padding: 88px 0;
}

.footer .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .item .visas {
    width: 168px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer .item .visas .logo {
    opacity: 0;
    pointer-events: none;
}

.footer .item .visas .title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer .item .visas .master-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer .item .text {
    width: 174px;
    font-size: 12px;
    font-weight: 700;
    color: #ababab;
    line-height: 16px;
}

.footer .item .about ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer .item .about ul li {
    font-size: 16px;
    font-weight: 400;
    color: #e2e2e2;
}

.footer .item .info {
    width: 170px;
}

.footer .item .info h1 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer .item .info .address {
    font-size: 16px;
    font-weight: 400;
    color: #e2e2e2;
}

.footer .item .info a {
    text-decoration: none;
    color: #e2e2e2;
    margin-top: 11px;
}

.footer .item .info .gmail {
    font-size: 16px;
    font-weight: 400;
}

.footer .item .info .type {
    font-size: 14px;
    font-weight: 900;
}



/*media*/
@media (max-width: 768px) {
    .container {
        max-width: 425px;
    }
    .header {
        width: 100%;
        height: 66px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }
    .header .menu {
        opacity: 0;
        pointer-events: none;
    }
    .header.active .menu-mobile {
        opacity: 1;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #e5e5e5;
        z-index: 9999;
        transition: 0.5s;
    }
    .menu-mobile .top {
        width: 100%;
        height: 48px;
        border-bottom: 3px solid #e2e2e2;
        background: #ffffff;
    }
    .menu-mobile .top .fa-user {
        -webkit-text-stroke: 1px #000000;
        color: transparent;
    }
    .menu-mobile .top .title {
        font-size: 16px;
        font-weight: 400;
        color: #000000;
    }
    .menu-mobile .top .container {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .header .menu-mobile .top-bottom .search {
        height: 40px;
        background: #ffffff;
        display: flex;
        align-items: center;
        padding: 0 10px;
        gap: 14px;
    }
    .header .menu-mobile .top-bottom .search i {
        color: #ababab;
    }
    .header .menu-mobile .top-bottom .search input {
        border: none;
        outline: none;
        color: #ababab;
    }
    .header .menu-mobile .bottom-top {
        margin: 8px;
    }
    .menu-mobile .bottom-top .dropdown-btn {
        width: 100%;
        height: 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 6px;
        background: #ffffff;
        margin: 4px 0;
    }
    .menu-mobile .bottom-top .dropdown-btn span {
        font-size: 16px;
        font-weight: 700;
        color: #000000;
    }
    .menu-mobile .bottom-top .dropdown-btn i {
        transform: rotate(270deg);
        color: #e2e2e2;
    }
    .menu-mobile .bottom-top .dropdown-btn h1 {
        font-size: 16px;
        color: #000000;
        font-weight: 400;
    }
    .menu-mobile .bottom-bottom {
        margin: 4px 0;
    }
    .menu-mobile .bottom-bottom .bottom-item {
        display: flex;
        height: 48px;
        align-items: center;
        justify-content: space-between;
        margin: 4px 0;
        padding: 0 6px;
        border-bottom: 1px solid #ababab;
    }
    .menu-mobile .bottom-bottom .bottom-item i {
        color: #ababab;
    }
    .menu-mobile .bottom-bottom .bottom-item .phone :is(.fa-map-marker-alt, .fa-phone-alt) {
        -webkit-text-stroke: 1px #ababab;
        color: transparent;
    }
    .header .bottom .actions {
        position: absolute;
        top: 10px;
        right: 25%;
    }
    .header .bottom :is(.dropdown-btn, .search) {
        opacity: 0;
        pointer-events: none;
    }
    .main .slider {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
    }
    .main .side-bar {
        opacity: 0;
        pointer-events: none;
    }
    .products .container {
        height: 240px;
        overflow: hidden;
        flex-wrap: wrap;
    }
    .products .card {
        width: 195px;
        height: 238px;
    }
    .products .card .product-name {
        font-size: 12px;
    }
    .products .card .price .old {
        font-size: 12px;
    }
    .products .card .price {
        font-size: 14px;
    }
    .products .card .product-img img {
        height: 134px;
        object-fit: cover;
    }
    .site-title {
        flex-wrap: wrap;
        display: flex;
        gap: 4px;
    }
    .site-title .title {
        font-size: 24px;
    }
    .daily .container {
        flex-direction: column;
    }
    .daily .product {
        flex-direction: column;
    }
    .services {
        margin: 35px 0;
    }
    .services .container {
        flex-direction: column;
    }
    .services .fast {
        flex-direction: row;
        margin-bottom: 20px;
        text-align: start;
        width: 288px;
    }
    .news .box {
        width: 288px;
        flex-direction: column-reverse;
    }
    .news .box .left .cards {
        flex-wrap: wrap;
    }
    .footer .item {
        flex-wrap: wrap;
    }
    .footer .item .visas {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .footer .item .visas .title {
        opacity: 0;
        pointer-events: none;
        position: absolute;
    }
    .footer .item .visas .logo {
        opacity: 1;
        pointer-events: all;
    }
    .footer .item .footer-item {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
}

@media (max-width: 425px) {
    .container {
        max-width: 375px;
    }
    .header .bottom .actions {
        position: absolute;
        top: 10px;
        right: 10%;
    }
}

@media (max-width: 375px) {
    .container {
        max-width: 320px;
        overflow: hidden;
    }
    .header .bottom .actions {
        position: absolute;
        top: 10px;
        right: 5%;
        gap: 5px;
    }
    .main .slider .indicators {
        top: 30%;
    }
    .products .card {
        width: 143px;
    }
    .news .box .right {
        width: 290px;
        height: 345px;
        padding: 18px 15px;
    }
    .news .box .card {
        width: 290px;
    }
    .news .box .card img {
        width: 100%;
    }
}