html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {
    font-family: Arial, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
	padding-bottom: 0px;
	padding-left: 10px; 
	padding-right: 10px; 
}

.gallery {
    position: relative;
}

.gallery__link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    height: 240px;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.gallery-pagination {
    /* width: inherit; */
    display: flex;
    justify-content: center;
}

.gallery__btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -12.5px;
    border: none;
    outline: none;
    border-radius: 50%;
   padding: 10px 12px;
    background-color: rgb(46, 46, 46);
    transition: background-color .3s;
    cursor: pointer;
}

.gallery__btn:hover {
    background-color: rgb(73, 73, 73);
}

.gallery__btn-prev {
    left: -12.5px;
}

.gallery__btn-next {
    right: -12.5px;
}

.swiper-button-disabled {
    background-color: rgb(174, 174, 174);
    cursor: default;
}

.swiper-pagination-total {
    opacity: .6;
}