:root {
    --main-font: 'GeneralSans';
    --main-font-weight: 400;
    --main-font-color: #FFFFFF;
    --secondary-font-color: #171717;
}
.copy-tooltip {
    position: fixed;
    background:#111;
    color:#fff;
    padding:6px 10px;
    border-radius:6px;
    font-size:13px;
    opacity:0;
    transform:translateY(-6px);
    transition:opacity .15s ease, transform .15s ease;
    pointer-events:none;
    z-index:9999;
}
.copy-tooltip.show {
    opacity:1;
    transform:translateY(0);
}
.container-single-post{
    padding-top: 73px;
}
/* top section*/
.single-post-top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 0 32px 0;
}
.single-post-top .single-post__share{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.single-post-top .single-post__share span{
    font-weight: 200;
    font-size: 16px;
    line-height: 135%;
    color: var(--secondary-font-color);
}
.single-post-top .single-post__share ul{
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}
.single-post-top .single-post__share ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}
.single-post-top .single-post__title{
    font-weight: 500;
    font-size: 32px;
    line-height: 135%;
    color: var(--secondary-font-color);
    text-align: center;
}
.single-post-top .single-post__main-image{
    width: 100%;
    max-width: 1376px;
    aspect-ratio: 1376 / 404;
    border-radius: 12px;
    overflow: hidden;
}
.single-post-top .single-post__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
/*     object-position: top; */
	object-position: center;
}
.single-post-related{
    padding: 72px 0 72px 0;
}
.single-post-related .related-posts__title{
    font-weight: 500;
    font-size: 32px;
    line-height: 135%;
}
.single-post-related .related-posts__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.single-post-related .related-posts__top .related-posts__desktop-button{
    display: flex;
    gap: 24px;
}
.single-post-related .related-posts__bottom{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.single-post-related .related-posts__bottom .related-posts__mobile-button{
    display: none;
}
.single-post-related .related-posts__top .related-posts__desktop-button .swiper-button-prev-post,
.single-post-related .related-posts__top .related-posts__desktop-button .swiper-button-next-post,
.single-post-related .related-posts__bottom .related-posts__mobile-button .swiper-button-prev-post,
.single-post-related .related-posts__bottom .related-posts__mobile-button .swiper-button-next-post{
    width: 56px;
    height: 56px;
    cursor: pointer;
}
.single-post-related .related-posts__slide{
    display: flex;
    flex-direction: row;
    background-color: #F6F6F6;
    gap: 24px;
    border-radius: 8px;
    padding: 24px;
    height: 100%;

}
.single-post-related .related-posts__slide .related-posts__slide-inner{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.single-post-related .related-posts__slide .related-posts__slide-inner .related-posts__title{
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    color: var(--secondary-font-color);
}
.single-post-related .related-posts__slide .related-posts__slide-inner .related-posts__description{
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: var(--secondary-font-color);
}
.related-posts__wrapper-button {
    display: flex;
}
.single-post-related .related-posts__slide .related-posts__slide-inner .related-posts__button{
    margin-top: auto;
    padding: 7px 40px 7px 40px;
    width: 100%;
    justify-content: center;
}
.single-post-related .swiper-slide .related-posts__img{
    display: block;
    max-width: 300px;
}
.single-post-related .swiper-slide .related-posts__img img{
    height: auto;
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 300 / 183;
    border-radius: 8px;

}
.safari .single-post-related .swiper-slide .related-posts__img img {
    width: 300px;
    height: 183px;
}
.related-posts__bottom .related-posts__all-posts a span{
    text-transform: uppercase;
    font-weight: 400;
}
.related-posts__bottom .related-posts__all-posts .black{
    border: 1px solid #171717;
    padding: 11px 39px 11px 39px;
}
.single-post-contacts{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /*height: 249px;*/
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0px 4px 15px 0px #00000040;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 32px;
}
.single-post-contacts::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000052;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}
.single-post-contacts__inner .single-post-contacts__title{
    font-weight: 500;
    font-size: 32px;
    line-height: 135%;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.single-post-contacts__inner .single-post-contacts__description{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 32px;
}
.single-post-contacts .single-post-contacts__inner{
    display: flex;
    flex-direction: column;
    /*gap: 32px;*/
    position: relative;
    z-index: 2;
    max-width: 697px;
}
.single-post-contacts .single-post-contacts__inner .button{
    text-transform: uppercase;
}
/* Comment Section Start*/
.post-comments {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-top: 72px;
    padding-bottom: 72px;
}
.post-comments .post-comments__top{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.post-comments .post-comments__top .post-comments__title{
    font-weight: 500;
    font-size: 32px;
    line-height: 135%;
    vertical-align: middle;
    color: #171717;
}
.post-comments .post-comments__top .post-comments__description{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    vertical-align: middle;
    color: #171717;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
    display: grid;
}
.comment-form .comment-form-author,
.comment-form .comment-form-email {
    display: inline-block;
    width: 48%;
}
.comment-form-row input {
    width: 100%;
}
.comment-form .comment-form-author input{
    width: 88%;
}
.comment-form .comment-form-email input{
    width: 98%;
}
.comment-form-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}
.comment-form-row input,
.comment-form-row textarea {
    padding: 13px 16px 13px 16px;
    border: 1px solid #B4B4B4;
    border-radius: 3px;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    /*color: #B4B4B4;*/
    font-family: var(--main-font);

}
.comment-form-row input::placeholder,
.comment-form-row textarea::placeholder {
    color: #B4B4B4;
    opacity: 1;
    font-family: var(--main-font);
}

#submit.comment-submit {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 39px 14px 39px;
    border: 1px solid #171717
}
.comment-form .form-submit{
    display: flex;
    justify-content: end;
}

.single-review__meta {
    font-weight: bold;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.reviews-block-wrapper {
    margin-top: 48px;
    background: #F6F6F6;
    border-radius: 6px;

}
.reviews-block-wrapper .reviews-block{

}
.reviews-block.desktop-scroll {
    max-height: 524px;
    overflow-y: auto;
    padding-top: 24px;
    padding-bottom: 24px;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-block.desktop-scroll::-webkit-scrollbar {
    width: 27px;
    background-color: #000;
}
.reviews-block.desktop-scroll::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 0;
}
.reviews-block.desktop-scroll::-webkit-scrollbar-track {
    background-color: #fff;
}

.reviews-block.desktop-scroll {
    scrollbar-width: auto;
    scrollbar-color: #000000 #fff;
}
.reviews-block.desktop-scroll {
    scrollbar-width: auto;
    scrollbar-color: #000000 #fff;
    margin-right: 24px;
    border-radius: 0;
}

.reviews-block-wrapper  .single-review {
    padding: 16px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    margin-left: 24px;
    margin-right: 24px;
}
.reviews-block-wrapper .single-review .single-review__author, .reviews-block-wrapper .single-comment .single-comment__author{
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    vertical-align: middle;
    color: #000000;
}
.reviews-block-wrapper .single-review .single-review__content, .single-comment__content p{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: middle;
    color: #000000;
}
.reviews-block-wrapper .single-review .single-review__time, .single-comment__time{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: #ABAAAA;
    margin-top: 8px;
}

.comments-slider {
    display: none;
    margin: 24px;
}

/*Comment Section Finish*/
/*Section Article*/
.single-post-article{
    max-width: 800px;
    margin: 0 auto;
}
.single-post-article h2{
    font-weight: 500;
    font-size: 24px;
    line-height: 135%;
    vertical-align: middle;
    color: #171717;
    margin-top: 24px;
    margin-bottom: 24px;
}
.single-post-article p{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: middle;
    margin-bottom: 8px;
    color: #171717;
}
.single-post-article ul, .single-post-article ol{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: middle;
    margin-bottom: 8px;
    padding-left: 20px;
}
.single-post-article figure{
    margin-top: 16px;
    margin-bottom: 16px;
}

.single-post-article .custom-list-abc {
  list-style: none;
  counter-reset: alpha;
  padding-left: 35px;
}

.single-post-article .custom-list-abc li {
  counter-increment: alpha;
  position: relative;
  padding-left: 1.5em;
}

.single-post-article .custom-list-abc li::before {
  content: counter(alpha, lower-alpha) ".";
  position: absolute;
  left: 0;
}

/* Section Author*/
.single-post-author{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
    padding-bottom: 32px;
}
.single-post-author .author-card{
    display: flex;
    gap: 16px;
}
.single-post-author .author-card .author-card__info{
    display: flex;
    flex-direction: column;
}
.single-post-author .author-card .author-card__name{
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    vertical-align: middle;
    color: #171717;
    margin-bottom: 8px;

}
.single-post-author .author-card .author-card__position{
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    vertical-align: middle;
    color: #171717;
    margin-bottom: 40px;
}
.single-post-author .author-card .author-card__company{
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    vertical-align: middle;
    color: #696969;
}
@media (max-width: 768px){
    /*.container-single-post{*/
    /*    padding-top: 95px;*/
    /*}*/
    .single-post-author .author-card .author-card__position{
        margin-bottom: 16px;
    }
    .single-post-author{
        padding-bottom: 16px;
    }
    /*Section Article*/
    .single-post-article h2{
        font-size: 20px;
    }
    .single-post-article p{
        font-size: 14px;
        line-height: 140%;
    }
    .single-post-article ul{
        font-size: 14px;
        line-height: 140%;
    }
    /* Comment Section Start*/
    .post-comments .post-comments__top{
        align-items: flex-start;
    }
    .post-comments .post-comments__top .post-comments__title{
        font-size: 20px;
    }
    .post-comments .post-comments__top .post-comments__description{
        font-size: 14px;
        line-height: 140%;
    }
    .comment-form .comment-form-author,
    .comment-form .comment-form-email {
        display: flex;
        width: 100%;
    }
    .comment-form .comment-form-author input, .comment-form .comment-form-email input{
        width: auto;
    }
    .comment-form-row input{
        width: auto;
    }
    .comment-form-author,
    .comment-form-email {
        width: 100%;
    }
    .reviews-block.desktop-scroll {
        display: none;
    }
    .comments-slider {
        display: block;
    }
    .comments-slider .single-comment{
        display: flex;
        flex-direction: column;
        margin-right: 24px;
    }
    .comments-slider .swiper-slide {
        background: #FFFFFF;
        border-radius: 8px;
        padding: 16px;
    }
    /*Comment Section Finish*/
    .single-post-contacts .single-post-contacts__inner{
        /*gap: 16px;*/
    }
    .single-post-contacts__inner .single-post-contacts__description{
        font-size: 14px;
        line-height: 140%;
        margin-bottom: 24px;
    }
    .single-post-contacts__inner .single-post-contacts__title{
        font-size: 14px;
        line-height: 100%;
        /*margin-bottom: 8px;*/
    }
    .single-post-contacts{
        /*height: 207px;*/
        border-radius: 12px;
    }

    /*Related Posts Section*/
    .related-posts__bottom .related-posts__all-posts{
        display: none;
    }
    single-post-related .related-posts__slide .related-posts__slide-inner{
        gap: 8px;
    }
    .single-post-related .related-posts__slide .related-posts__slide-inner .related-posts__title{
        font-size: 16px;
        line-height: 120%;
    }
    .single-post-related .related-posts__slide{
        flex-direction: column;
        padding: 16px;
    }
    .single-post-related{
        padding: 32px 0 32px 0;
    }
    .single-post-related .related-posts__top .related-posts__desktop-button{
        display: none;
    }
    .single-post-related .related-posts__bottom{
        margin-top: 24px;
    }
    .single-post-related .related-posts__bottom .related-posts__mobile-button{
        display: flex;
        gap: 24px;
    }
    .single-post-related .related-posts__title{
        font-size: 20px;
    }
    .safari .single-post-related .swiper-slide .related-posts__img{
        aspect-ratio: 230 / 178.5;
        display: block;
        overflow: hidden;
    }
    .safari .single-post-related .swiper-slide .related-posts__img img {
        width: 100%;
        height: auto;
    }
    .single-post-related .swiper-slide .related-posts__img img{
        aspect-ratio: 230 / 178.5;
    }
    .single-post-related .swiper-slide .related-posts__img{
        max-width: fit-content;
    }
    .single-post-top .single-post__main-image{
        aspect-ratio: 328 / 219;
    }
    .single-post-top{
        padding: 16px 0 16px 0;
    }
    .single-post-top .single-post__title{
        font-size: 24px;
    }
}