html,body {
    font-size: 17px;
    font-weight: 400;
    line-height: 140%;
}
body {
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    font-family: var(--font-main);
    color: var(--txt-color);
    background-color: var(--bg-main);
    --font-main: 'Abhaya Libre', sans-serif;
    --txt-color: #F5F5F5;
    --txt-second: #EEEBE0;
    --main-color: #BF7D5E;
    --bg-main: #191818;
    --bg-second: #141313;
    --border-color: #bf7d5e;
    --spacing: 2px;
    --spacing-medium: 6px;
    --spacing-big: 10px;
}
* {
    outline: none;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
main {
    position: relative;
}
.wrapper-small {
    padding-left: 6vw;
    padding-right: 6vw;
}
.wrapper {
    padding-left: 9vw;
    padding-right: 9vw;
}
.wrapper-big {
    padding-left: 12vw;
    padding-right: 12vw;
}
.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}
.padds {
    padding-left: 10px;
    padding-right: 10px;
}
.padd-top {
    padding-top: 60px;
}
.marg-top-small {
    margin-top: 30px;
}
.marg-top {
    margin-top: 60px;
}


.marg-top-big {
    margin-top: 100px;
}
.marg-top-biggest {
    margin-top: 160px;
}
.marg-bottom {
    margin-bottom: 60px;
}
.w-100 {
    width: 100%;
}

.slick-dots {
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.slick-dots>li {
    display: inline-block;
    margin: 5px;
}
.slick-dots>li:only-child {
    display: none;
}
.slick-dots button {
    font-size: 0;
    color: transparent;
    border: none;
    width: 20px;
    height: 3px;
    background-color: var(--txt-color);
    transition: .3s;
    opacity: .3;
}
.slick-dots .slick-active button {
    background-color: var(--main-color);
    opacity: 1;
}

.herobg {
    background-color: #07101B;
    position: relative;
    height: clamp(200px, 25vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.herobg__icon {
    position: absolute;
    right: 0;
    top: 45%;
    max-width: 20%;
    z-index: 1;
}
.herobg__content {
    padding-top: 60px;
}
.herobg__date {
    display: block;
    text-align: center;
    color: var(--main-color);
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.herobg__title {
    font-weight: 700;
    font-size: clamp(22px, 2vw, 38px);
    line-height: 125%;
}

.posrel {
    position: relative;
    z-index: 4;
}
.section-heading {
    color: #fff;
    font-size: clamp(26px, 3vw, 48px);
    line-height: 125%;
}
.section-heading span {
    color: var(--main-color);
}
.page-heading {
    font-size: clamp(26px, 2vw, 48px);
    line-height: 125%;
    font-weight: 500;
    color: #000;
    margin-bottom: 60px;
}
.section-subtitle {
    color: var(--main-color);
    display: block;
    margin-bottom: 10px;
    font-size: 21px;
    letter-spacing: 3px;
}
.subtitle {
    color: var(--main-color);
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.text-center {
    text-align: center;
}

.color-main {
    color: var(--main-color);
}

.error-wrapper {
    margin-top: 160px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.error-wrapper .page-heading {
    color: #fff !important;
}

.cbtn {
    display: inline-block;
    padding: 10px 35px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: var(--bg-second);
    transition: .3s;
    cursor: pointer;
    border-radius: 0;
    text-align: center;
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 143%;
    font-weight: 700;
    letter-spacing: var(--spacing);
}
.cbtn--smaller {
    font-size: .85rem;
}
.cbtn--second {
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background-color: transparent;
}
.cbtn:hover {
    color: #fff;
    background-color: var(--bg-main);
}
.cbtn--second:hover {
    color: #fff;
    background-color: var(--border-color);
    border-color: var(--border-color);   
}
/* @ @ HEADER @ @ */

/* menu button start */
.nav-icon {
    width: 33px;
    height: 23px;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 999999;
    position: relative;
    display: none;
    margin-left: 10px;
    padding: 0;
    background-color: transparent;
    font-size: 0;
    border: none;
}
.nav-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-color);
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.nav-icon span:nth-child(1) {
    top: 0px;
}
.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 10px;
}
.nav-icon span:nth-child(4) {
    top: 20px;
}
.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.nav-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
/* menu button end */
.header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: .3s;
}
body.scrolled .header {
    background-color: var(--bg-second);
}
.scrolled .header {
    padding-top: 10px;
    padding-bottom: 10px;
}
body.home:not(.scrolled) .header {
    background-color: transparent;
}
.header__wrapper {
    align-items: center;
}
.header__logo img {
    transition: .3s;
}
/* menu start */
.header__menu {
    flex: 1;
    padding: 0 15px;
    display: flex;
    justify-content: flex-end;
}
.header__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header__menu>div>ul {
    display: flex;
    justify-content: flex-end;
}
.header__menu>div>ul>li {
    margin: 0 0 0 60px;
    padding: 5px 0;
    position: relative;
}
.header__menu>div>ul>li>a {
    color: #fff;
    font-weight: 700;
    font-size: 21px;
    line-height: 24px;
}
.header__menu>div>ul>li.current-menu-item>a,
.header__menu>div>ul>li>a:hover {
    color: var(--main-color);
}

/* menu end */
/* @ @ HEADER END @ @ */

/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ LOGOS START @ @ */
.logos__items {
    justify-content: center;
    align-items: center;
}
.logos__slick .slick-track {
    display: flex !important;
}
.logos__slick .slick-slide {
    height: inherit !important;
}
.logos__item {
    padding: 15px 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.logos__item img {
    width: auto;
    max-height: 80px;
}
/* @ @ LOGOS END @ @ */
/* @ @ TITLEBANER START @ @ */
.titlebaner {
    overflow-x: clip;
    position: relative;
}
.titlebaner__icon {
    position: absolute;
    max-width: 20%;
    right: -10px;
    top: -35%;
}
.titlebaner__txt {
    margin-bottom: 0;
    color: transparent;
    -webkit-text-stroke: 1px #2A3C4E;
    text-stroke: 1px #2A3C4E;
    font-size: clamp(30px, 7vw, 120px);
}
/* @ @ TITLEBANER END @ @ */
/* @ @ TITLESERP START @ @ */
.titleserp {
    position: relative;
    padding: clamp(120px, 30vw, 500px) 0;
    position: relative;
    background-position: center;
    background-size: cover;
    background-image: url(../assets/serp.png);
    overflow-x: clip;
}
.titleserp>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.titleserp__title {
    margin: 0;
    font-size: clamp(26px, 7vw, 90px);
    line-height: 110%;
    text-shadow: 12px 12px 24px rgba(0, 0, 0, 0.55);
}
/* @ @ TITLESERP END @ @ */
/* @ @ FRAMETITLE START @ @ */
.frametitle {
    overflow-x: clip;
}
.frametitle__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.frametitle__subtitle {
    font-size: clamp(18px, 3vw, 55px);
    line-height: 110%;
    letter-spacing: var(--spacing-medium);
    padding: 15px 50px;
    position: relative;
    background-color: transparent;
    z-index: 1;
}
.frametitle__title h2 {
    padding: 0 10px;
    margin: 0;
    font-size: clamp(26px, 5vw, 100px);
    line-height: 100%;
    padding-top: 5px;
    letter-spacing: var(--spacing-big);
    background: linear-gradient(90deg, #BF7D5E 0%, #985230 56%, #DE9673 100%);
    -webkit-background-clip: text;
    position: relative;
    -webkit-text-fill-color: transparent;
}
.frametitle__title h2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #DE9673 0%, #FBB491 19%, #985230 50%, #D1AC65 100%) 1;
    z-index: -1; 
}
/* @ @ FRAMETITLE END @ @ */
/* @ @  START @ @ */

/* @ @  END @ @ */
/* @ @ COLSLIST START @ @ */
.colslist {
    overflow-x: clip;
}
.colslist__item {
    padding: 0 30px;
}
.colslist__name {
    display: block;
    text-align: center;
    color: var(--main-color);
    font-size: clamp(22px, 1.5vw, 32px);
    line-height: 130%;
    margin-bottom: 20px;
}
.colslist__txt {
    letter-spacing: 2px;
    text-align: center;
}
/* @ @ COLSLIST END @ @ */
/* @ @ COLS START @ @ */
.cols {
    position: relative;
    overflow-x: clip;
}
.cols__icon {
    position: absolute;
    right: -10px;
    top: clamp(-220px, -15vw, -60px);
    z-index: 1;
    max-width: 20%;
}
.cols__txt {
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 2px;
}
.cols__item:nth-child(odd) {
    padding-right: 40px;
}
.cols__item:nth-child(even) {
    padding-left: 40px;
}
/* @ @ COLS END @ @ */
/* @ @ TITLETXT START @ @ */
.titletxt {
    overflow-x: clip;
    position: relative;
}
.titletxt__icon {
    position: absolute;
    left: -10px;
    top: 30%;
    z-index: 1;
    max-width: 30%;
}
.titletxt__item {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 10px;
    width: 1100px;
}
.titletxt__txt {
    font-size: 20px;
    letter-spacing: 1.5px;
    line-height: 140%;
    color: var(--txt-second);
}
/* @ @ TITLETXT END @ @ */
/* @ @ TITLELINKS START @ @ */
.titlelinks {
    overflow-x: clip;
    position: relative;
}
.titlelinks__icon {
    position: absolute;
    max-width: 20%;
    left: -10px;
    bottom: 30%;
}
.titlelinks__heading {
    font-size: clamp(26px, 7vw, 90px);
    line-height: 110%;
    text-shadow: 12px 12px 24px rgba(0, 0, 0, 0.55);
}
.titlelinks__heading span {
    color: var(--main-color);
}
.titlelinks__btns {
    justify-content: center;
}
.titlelinks__btns a {
    margin: 20px 10px 0 10px;
}
/* @ @ TITLELINKS END @ @ */
/* @ @ BLOG START @ @ */
.singlepost {
    margin-top: clamp(-120px, -5vw, -30px);
    position: relative;
    z-index: 5;
}
.singlepost__wrapper {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.blogposts__img img {
    transition: .3s;
    aspect-ratio: 16/11;
    width: 100%;
    object-fit: cover;
}
.blogposts__img a {
    display: block;
    overflow: hidden;
}
.blogposts__img a:hover img {
    filter: brightness(130%);
    transform: scale(1.05);
}
.blogposts__date {
    display: block;
    margin-top: 20px;
    color: var(--main-color);
    letter-spacing: 2px;
}
.blogposts__title {
    font-size: 28px;
    line-height: 125%;
    margin: 15px 0 10px 0;
    font-weight: 700;
}
.blogposts__title a:hover {
    color: var(--main-color);
}


.pagination>div {
    align-items: center;
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    margin: 0 5px;
    padding: 1px 3px;
    line-height: 100%;
    font-size: 1rem;
}
.pagination .page-numbers.current {
    font-weight: 700;
    font-size: 1.5rem;
}
/* @ @ BLOG END @ @ */
/* @ @ FOOTER START @ @ */
.footer {
    margin-top: 110px;
    background-color: var(--bg-second);
    padding-top: 120px;
    position: relative;
    padding-bottom: 60px;
}
.footer .translate {
    display: none !important;
}
.footer:before {
    content: '';
    width: 1px;
    height: 50px;
    background-color: var(--main-color);
    z-index: 4;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: inline-block;
}
.footer:after {
    content: '';
    width: .5px;
    height: 60px;
    background-color: var(--main-color);
    z-index: 4;
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    display: inline-block;
    opacity: .3;
}
.footer>img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__title {
    font-size: 21px;
    line-height: 140%;
    display: block;
    margin-bottom: 30px;
}
.footer__item {
    font-size: 16px;
    line-height: 140%;
}
.footer__contact {
    display: flex;
    justify-content: center;
}
.footer__contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer__contact-wrapper>a {
    color: var(--main-color);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: var(--spacing);
}
.footer__contact-wrapper>a:hover {
    color: var(--border-color);
}
.footer__socials {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.footer__socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 20px 0 0;
}
.footer__socials a img {
    height: 20px;
    width: auto;
    transition: .3s;
    filter: brightness(0) invert(1);
}
.footer__socials a:hover img {
    filter: initial;
}
.footer__menu {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.footer__menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__menu ul li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
}
.footer__menu a:hover {
    color: var(--main-color);
}


.footer__bottom {
    margin-top: 60px;
}
.footer__bottom-wrapper {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 16px;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__copy {
    margin: 10px 0;
}
.footer__built {
    display: inline-block;
    margin: 10px 0;
}
.footer__bottom-wrapper a:hover {
    color: var(--main-color);
}
/* @ @ FOOTER END @ @ */

/* @ @ MEDIA START @ @  */
@media(min-width: 2400px) {
    .wrap {
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper {
        padding-left: 120px;
        padding-right: 120px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-big {
        padding-left: 220px;
        padding-right: 220px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
    .wrapper-small {
        padding-left: 60px;
        padding-right: 60px;
        max-width: 2400px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media(max-width: 1780px) {
    .titletxt__icon {
        max-width: 20%;
    }
}
@media(max-width: 1440px) {
    .wrapper {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .wrapper-big {
        padding-right: 6vw;
        padding-left: 6vw;
    }

    .titletxt__icon {
        opacity: .6;
    }

    .blogposts__date {
        font-size: 15px;
    }
    .blogposts__title {
        font-size: 24px;
    }
}
@media(max-width: 1380px) {
  
}
@media(max-width: 1280px) {
    .marg-top-biggest {
        margin-top: 100px;
    }
    .marg-top-big {
        margin-top: 80px;
    }

    .header__menu>div>ul>li {
        margin: 0 0 0 30px;
    }
}
@media(max-width: 1200px) {
    .frametitle__title h2 {
        padding: 5px 10px 5px 10px;
        letter-spacing: var(--spacing-medium);
    }
    .frametitle__title h2:before {
        border-width: 1px;
    }
}
@media(max-width: 1070px) {
    
}
@media(min-width: 993px) {
    .header__logo {
        padding: 0 15px;
        width: 210px;
        transition: .3s;
    }
    .scrolled .header__logo {
        width: 180px;
    }

    .header__menu ul ul {
        display: none;
    }
    .header__menu>div>ul>li>ul {
        background-color: var(--bg-second);
        position: absolute;
        left: 0;
        width: 160px;
        top: 99%;
    }
    .header__menu>div>ul>li:hover>ul {
        display: block;
    }
    .header__menu>div>ul>li>ul>li>a {
        display: inline-block;
        padding: 8px 10px;
        font-size: 1.1rem;
        line-height: 120%;
    }
    .header__menu>div>ul>li>ul>li>a:hover {
        color: var(--main-color);
    }
}
@media(max-width: 992px) {
    body,html {
        font-size: 16px;
        line-height: 24px;
    }
    .wrap,
    .wrapper-big,
    .wrapper-small,
    .wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-icon {
        display: block;
    }
    .header__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header__logo img {
        width: 110px;
    }
    .scrolled .header__logo img {
        width: 90px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: -450px;
        height: 100%;
        width: 400px;
        max-width: 100%;
        box-shadow: 0px 0px 6px rgba(0,0,0, .3);
        background-color: var(--bg-second);
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px 30px 40px;
        overflow: auto;
        transition: .8s;
    }
    .menuopened .header__menu {
        right: 0;
    }
    .header__menu>div>ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header__menu>div>ul>li {
        margin: 7px 0;
    }
    .header__menu>div>ul>li>ul {
        padding-left: 20px;
    }
    .header__menu>div>ul>li>ul>li {
        margin: 4px 0;
    }
    .header__menu>div>ul>li>ul>li>a:hover {
        color: var(--main-color);
    }

    .cols__txt {
        font-size: 1rem;
    }
    .cols__item {
        padding: 0 15px !important;
    }


    .footer {
        padding-top: 80px;
        margin-top: 60px;
    }
    .footer:before  {
        height: 35px;
    }
    .footer__title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    .footer__logo {
        text-align: center;
    }
    .footer__datas {
        text-align: center;
        margin-top: 30px;
        font-size: 1rem;
    }
    .footer__contact {
        text-align: center;
        margin-top: 30px;
    }
    .footer__contact-wrapper {
        align-items: center;
    }
    .footer__contact-wrapper>a {
        font-size: 1.1rem;
    }
    .footer__socials {
        justify-content: center;
    }
    .footer__socials a {
        margin: 10px;
    }
    .footer__menu {
        margin-top: 30px;
        text-align: center;
    }
    .footer__menu ul li {
        font-size: 1rem;
    }


}
@media(max-width: 767px) {
    body,html {
        font-size: 14px;
        line-height: 24px;
    }
    .padd-top {
        padding-top: 30px;
    }
    .marg-top-biggest {
        margin-top: 40px;
    }
    .marg-top {
        margin-top: 40px;
    }
    .marg-top-big {
        margin-top: 40px;
    }
    .cbtn {
        padding: 10px 25px;
    }

    .cols__icon {
        top: -20px;
    }

    .titletxt__icon {
        opacity: .3;
        max-width: 30%;
    }
    .titletxt__txt {
        font-size: 14px;
        line-height: 24px;
    }


    .blogposts__date {
        font-size: 12px;
    }
    .blogposts__title {
        font-size: 20px;
    }

    .footer {
        padding-bottom: 20px;
    }
    .footer__bottom-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer__built,
    .footer__copy {
        margin: 5px 0;
        font-size: .8rem;
    }
    
}
/* @ @ MEDIA END @ @  */