@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body {
    font-family: "Outfit", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #383838;
}

a,
button {
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
    font-family: "Outfit", sans-serif !important;
}

span {
    font-family: "Outfit", sans-serif !important;
    font-size: inherit !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

label {
    margin-bottom: 0;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: #7A4D32;
    display: block;
    text-align: center;
    padding-top: 8px;
    font-size: 16px;
    color: #ffffff;
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    z-index: 99999;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {
    background: #352015;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
}

/*== top header area start== */

.top-header-bar {
    padding: 10px 0;
    background: #E7D6B4;
}

.tp-item {
    display: flex;
    align-items: center;
    gap: 33px;
}

.tp-item li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    gap: 10px;
}

.tp-item li img {
    display: inline-block;
    margin-right: 16px;
}

.tp-fnt-s {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-fnt-s li a {
    width: 35px;
    padding: 4px;
    text-transform: uppercase;
    border: 1px solid#000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

/* top-header-left */

.top-header {
    padding: 16px 0;
}

.top-header-inner {
    border-bottom: 1px solid #C8C8C8;
    padding-bottom: 16px;
}

.top-header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-right-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 13px;
    padding-left: 32px;
    border-left: 1px solid #ddd;
}

.top-header-right-content ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-header-right-content ul li a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.top-header-right-content ul li a:hover {
    text-decoration: underline;
}

.top-h-search form {
    position: relative;
}

.top-h-search form input {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: block;
    width: 173px;
    display: block;
    outline: none;
    padding: 12px;
    padding-left: 35px;
    border: 1px solid #E7D6B4;
}

.top-h-search form input::placeholder {
    color: #000;
    opacity: 1 !important;
}

.top-h-search form button {
    background-color: none;
    background: none;
    border: none;
    position: absolute;
    top: 10px;
    left: 6px;
}

/*==== nev area start===== */

header {
    padding: 0px 0 24px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 300px;
    display: inline-block;
    margin-right: 50px;
}

.menu-item .menu-ul {
    display: flex;
    align-items: center;
    gap: 0 32px;
}

.menu-item .menu-ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-item ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    padding: 0px;
    color: #0B2154 !important;
}

.menu-item ul li a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: inline-block;
    text-transform: inherit;
    transition: .3s;
}

.menu-item ul li a:hover {
    color: #7A4D32 !important;
    /* background-color: #0B2154; */
}

.drop_down a img {
    display: inline-block;
    padding-left: 10px;
}

.drop_down {
    position: relative;
}

.drop_down>ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    min-width: 100%;
    width: 140px;
    text-align: left;
    box-shadow: 0 0.3rem 2rem rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 111;
}

.drop_down:hover>ul {
    opacity: 1;
    pointer-events: all;
}

.drop_down>ul>li {
    padding-right: 0px !important;
}

.drop_down>ul>li>a {
    display: block;
    padding: 0.5rem 1.6rem;
    width: 100%;
}

.drop_down>ul>li>a:hover,
.drop_down>ul>li>a.active {
    background-color: #7A4D32;
    color: #fff !important;
    width: 100%;
}

.menu-right-items {
    display: flex;
    align-items: center;
    gap: 0 32px;
}

.menu-right-items ul {
    display: flex;
    align-items: center;
    gap: 0 32px;
}

.bip-bdr {
    padding-right: 32px;
    border-right: 1px solid #C8C8C8;
}

.menu-bar {
    display: none;
}

.menu-bar a {
    font-size: 30px;
    color: #000;
    cursor: pointer;
}

.monile-menu-logo {
    display: none;
}

/*==== nev area end===== */

/* ====offcanvas manu start===== */

.offcanvas-header {
    background-color: #fff;
    border-bottom: 2px solid #000;
    padding: 1.2rem 1rem;
}

.offcanvas-backdrop.show {
    opacity: .5;
    z-index: 999999991;
}

.offcanvas-header h5 img {
    max-width: 260px;
}

.offcanvas-body {
    background-color: #fff;
    padding: 0px !important;
}

.clloss-x {
    font-size: 25px;
    cursor: pointer;
    color: #000;
}

.clloss-x:hover {
    color: #000 !important;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 340px;
    z-index: 11111111111111;
}

.mobile-menu-item ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    transition: .2s;
    padding: 15px 20px;
    display: block;
    transition: .2s;
    /* background-color: #0E7C83; */
    /* margin-bottom: 10px; */
}

.mobile-menu-item ul li a:hover {
    background-color: #7A4D32;
    color: #fff !important;
}

.mobile-menu-item ul li a i {
    font-size: 15px;
    margin-right: 15px;
}

/* ===== */

.mobile-sub-menu {
    display: none;
    box-shadow: 0 0.3rem 2rem rgba(0, 0, 0, 0.1);
}

.mobile-sub-menu li a {
    padding-left: 50px !important;
    color: #000 !important;
}

.mobile-sub-menu li a:hover {
    background-color: #000;
    color: #fff !important;
}

.mobile-btn {
    padding: 0 15px;
    padding-top: 20px;
}

.mobile-btn a {
    color: #FFF;
    font-family: "Satoshi";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    display: inline-block;
    padding: 16px 24px;
    border-radius: 8px;
    border-radius: 8px;
    background: #0E7C83;
    transition: .5s;
    align-items: center;
}

.mobile-btn a:hover {
    background-color: #124B4F;
}

.mobile-btn a img {
    display: inline-block;
    margin-left: 12px;
    margin-top: -5px;
}

.mobile-flag {
    padding: 20px 0;
}

.mobile-menu-item .nav-link {
    color: #0b3032;
}

/* ====offcanvas manu end===== */

/* =====hero-area-start===== */

.hero-area {
    /* padding: 100px 0; */
    border-bottom: 1px solid #C8C8C8;
    position: relative;
}

.hero-win-left {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9999;
}

.hero-win-right {
    position: absolute;
    bottom: -40px;
    right: 0px;
    z-index: 9999;
}

.custom-ht-container {
    max-width: 1380px;
}

.hero-carousel-area {
    background: #E7D6B4;
    padding: 66px 0px;
}

.hero-left-content {
    margin-top: 50px;
}

.hero-left-content span {
    color: #000;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #000;
}

.hero-left-content h2 {
    color: #000;
    font-size: 41.05px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.365px;
    margin: 40px 0 24px 0;
}

.hero-left-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 43px;
}

.hero-btn a {
    color: #000;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    display: inline-block;
    padding: 16px 24px;
    border-radius: 360px;
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
    transition: .3s;
}

.hero-btn a:hover {
    color: #fff;
    background: #352015;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
}

.hero-btn a i {
    display: inline-block;
    margin-left: 12px;
    color: #7A4D32;
    transition: .3s;
}

.hero-btn a:hover i {
    color: #fff;
}

.main-content {
    position: relative;
}

.main-content .owl-theme .custom-nav .owl-prev,
.main-content .owl-theme .custom-nav .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content .owl-theme .custom-nav .owl-prev i,
.main-content .owl-theme .custom-nav .owl-next i {
    font-size: 15px;
    color: #000;
    width: 52px;
    height: 52px;
    border: 1px solid #000;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    transition: .3s;
}

.main-content .owl-theme .custom-nav .owl-prev i:hover,
.main-content .owl-theme .custom-nav .owl-next i:hover {
    background-color: #000;
    color: #fff;
}

.main-content .owl-theme .custom-nav .owl-prev {
    /* left: 0; */
    margin: auto;
    margin-left: -115px;
    margin-top: 10px;
    z-index: 9999;
}

.main-content .owl-theme .custom-nav .owl-next {
    /* left: 0; */
    margin: auto;
    margin-left: 50px;
    margin-top: 10px;
}

.h-btm-text {
    padding: 28px 0;
}

.h-btm-text p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

/* ======O naszym Muzeum area start==== */

.o-naszym-muzeum-area {
    padding: 100px 0 600px;
    background-image: url(../img/ons-bg.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    object-fit: cover;
}

.o-naszym-muzeum-content {
    text-align: center;
}

.o-naszym-muzeum-content span {
    color: #000;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #000;
    margin-bottom: 53px;
}

.o-naszym-muzeum-content h2 {
    color: var(--black-900, #000);
    text-align: center;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 600;
    line-height: 47.437px;
    margin-bottom: 24px;
}

.o-naszym-muzeum-content p {
    color: #383838;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 70px;
}

.o-naszym-item-box {
    margin-bottom: 30px;
}

.asboxss {
    padding: 0 50px;
}

.o-naszym-item-box h3 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 16px;
}

.o-naszym-item-box p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.o-naszym-item-box h2 {
    color: #000;
    font-size: 41.05px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.365px;
    margin-bottom: 24px;
}

/*==== Na skróty area start ==== */

.na-skroty-box-glb-area {
    background-image: url(../img/na-ng.png);
    background-repeat: no-repeat;
    background-position: top 100px center;
    background-size: 100%;
    padding: 0 0 100px 0;
}

.na-skroty-win-left {
    position: absolute;
    top: 0;
    left: 0px;
    z-index: 9999;
}

.na-skroty-win-right {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 9999;
}

.na-skroty-box-wrapper {
    max-width: 1600px;
    margin: -100px auto;
    background: #E7D6B4;
    padding: 70px 0;
    position: relative;
}

.na-skroty-box-inner h2 {
    color: #000;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 600;
    line-height: 47.437px;
    margin-bottom: 70px;
}

.na-skroty-box-inner-item h3 {
    color: #000;
    font-size: 25.63px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.319px;
    margin-bottom: 23px;
}

.na-skroty-box-inner-item ul li {
    margin-bottom: 24px;
}

.na-skroty-box-inner-item ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.na-skroty-box-inner-item ul li a span {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: .3s;
}

.na-skroty-box-inner-item ul li a i {
    color: #000 !important;
    font-size: 14px;
    transition: .3s;
}

.na-skroty-box-inner-item ul li a span:hover {
    text-decoration: none;
}

.na-skroty-image-box {
    margin-bottom: 30px;
    width: 100%;
    height: 170px;
    background-color: #ddd;
}

.na-skroty-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========Najświeższe wiadomości area start===== */

.najswiezsze-area {
    background-color: #ffffff;
    padding: 100px 0 65px;
}

.najswiezsze-title span {
    color: #000;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #000;
    margin-bottom: 33px;
}

.najswiezsze-title h2 {
    color: #000;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 67px;
}

/* news-carousel-item */

.news-carousel-item {
    margin-bottom: 50px;
}

.news-carousel-img {
    width: 100%;
    height: 208px;
    background-color: rgb(128, 128, 128);
}

.news-carousel-img img {
    width: 100%;
    height: 100%;
}

.news-carousel-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.news-carousel-item a h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 16px;
}

.news-dates {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-dates li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.news-dates li span {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-size: 12.64px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.96px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #000;
}

.news-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .5s;
}

.news-links a span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    transition: .3s;
}

.news-links a i {
    font-family: 15px;
    color: #352015;
    margin-top: 5px;
}

.news-links a span:hover {
    color: #f85700;
    color: #352015;
    transition: .5s;
}

.news-links a:hover i {
    margin-left: 10px;
    transition: .5s;
}

/* nav arrow 2 */

.main-content2 {
    position: relative;
}

.main-content2 .owl-theme .custom-nav {
    position: absolute;
    top: -25%;
    left: 0;
    right: 0;
}

.main-content2 .owl-theme .custom-nav .owl-prev,
.main-content2 .owl-theme .custom-nav .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content2 .owl-theme .custom-nav .owl-prev i,
.main-content2 .owl-theme .custom-nav .owl-next i {
    font-size: 15px;
    color: #000;
    width: 52px;
    height: 52px;
    border: 1px solid #000;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    transition: .3s;
}

.main-content2 .owl-theme .custom-nav .owl-prev i:hover,
.main-content2 .owl-theme .custom-nav .owl-next i:hover {
    background-color: #000;
    color: #fff;
}

.main-content2 .owl-theme .custom-nav .owl-prev {
    right: 60px;
}

.main-content2 .owl-theme .custom-nav .owl-next {
    right: 0;
}

.See-all-news {
    margin-top: 15px;
}

.See-all-news a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border-radius: 360px;
    border: 1px solid #7A4D32;
    display: block;
    padding: 16px 24px;
    max-width: 558px;
    text-align: center;
    margin: auto;
    transition: .3s;
}

.See-all-news a:hover {
    background: #7A4D32;
    color: #fff;
}

.See-all-news a i {
    font-size: 13px;
    display: inline-block;
    margin-left: 10px;
}

/* client section area start */

.client-sections {
    padding: 70px 0;
    border-top: 1px solid #C8C8C8;
}

.client-inner {
    max-width: 1000px;
    margin: auto;
}

.client-inner ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========= footer start ======= */

footer {
    background: var(--secondary-200, #E7D6B4);
    padding: 40px 0;
    position: relative;
}

.footer-win-left {
    position: absolute;
    top: -150px;
    left: 0px;
    z-index: 9999;
}

.footer-win-right {
    position: absolute;
    bottom: -150px;
    right: 0px;
    z-index: 9999;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 80px 48px;
}

.footer-item h2 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    margin-bottom: 24px;
}

.footer-item h3 {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    margin-bottom: 8px;
}

.footer-item p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.footer-item a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    /* 150% */
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}

.footer-item a::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #01407E;
    display: block;
    position: absolute;
    bottom: 0px;
    transition: .3s;
}

.footer-item a:hover::before {
    content: "";
    width: 100%;
}

/* =====copyright-start===== */

.copyright-start {
    padding: 36px 0;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cp-left-items {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.cp-logos {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.cp-links {
    display: flex;
    align-items: center;
    gap: 0 25px;
    padding-left: 30px;
    border-left: 1px solid #C8C8C8;
}

.cp-links li a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    position: relative;
}

.cp-bdr {
    padding-right: 30px;
    border-right: 1px solid #C8C8C8;
}

.cp-links li a::before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #01407E;
    display: block;
    position: absolute;
    bottom: 0px;
    transition: .3s;
}

.cp-links li a:hover::before {
    content: "";
    width: 100%;
}

.sk::before {
    content: "";
    display: none !important;
}

/* ================
Lista aktualności page start
 ==================== */

.hero-top-paginatons1 {
    position: relative;
}

.pg-lf-wian {
    position: absolute;
    bottom: -100px;
    z-index: 99;
}

.pg-rt-wian {
    position: absolute;
    right: 0px;
    top: -110px;
}

.pagenation-wrapper {
    background: #E7D6B4;
    padding: 30px 0;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pagenation-inner-content h2 {
    color: #000;
    font-size: 41.05px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.365px;
    margin-bottom: 20px;
}

.pagenation-inner-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.paginations-menu {
    padding: 20px 0;
    border-bottom: 1px solid #C8C8C8;
}

.paginations-menu ul {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.paginations-menu ul li {
    color: #000;
    font-size: 14px;
}

.paginations-menu ul li img {
    display: inline-block;
    margin-right: 8px;
    margin-top: -4px;
}

.paginations-menu ul li a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    transition: .3s;
}

.paginations-menu ul li a:hover {
    color: #976037;
}

/* new-news-area start */

.new-news-aera {
    padding: 40px 0;
    background-color: #fff;
    position: relative;
}

.news-tag-content span {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
    display: inline-block;
    margin-bottom: 28px;
}

.news-tag-content ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px 24px;
}

.news-tag-content ul li a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    border-radius: 100px;
    border: 1px solid #000;
    display: inline-block;
    padding: 8px 16px;
    transition: .3s;
}

.news-tag-content ul li a:hover {
    color: #fff;
    background: #7A4D32;
    border: 1px solid #7A4D32;
}

.new-h h2 {
    color: #000;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 600;
    line-height: 47.437px;
    margin-bottom: 48px;
    margin-top: 50px;
}

.news-paginations-items {
    margin-top: 100px;
}

.news-paginations-items ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.news-paginations-items ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #E7D6B4;
    text-align: center;
    display: block;
    line-height: 57px;
    transition: .3s;
    cursor: pointer;
}

.news-paginations-items ul li:hover {
    background-color: #E7D6B4;
}

/* ==============
Poj. aktualność page start 
============= */

/* hero-global area start */

.hero-global-area {
    position: relative;
}

.pg-glv-lf-wian {
    position: absolute;
    top: 0px;
    z-index: 99;
}

.pg-glv-rt-wian {
    position: absolute;
    right: 0px;
    bottom: -110px;
}

.hero-global-wrapper {
    background: #E7D6B4;
    padding: 52px 0;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-global-inner-box {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-global-inner-content {
    padding-right: 60px;
}

.hero-global-inner-content ul {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    margin-bottom: 24px;
}

.hero-global-inner-content ul li span {
    display: block;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--black-900, #000);
}

.hero-global-inner-content ul li small {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.hero-global-inner-content h2 {
    color: #000;
    font-size: 41.05px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.365px;
    margin-bottom: 24px;
}

.hero-global-inner-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.hero-global-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ====see-blog-post-start ==== */

.see-blog-post-area {
    background-color: #fff;
    padding: 130px 0;
}

.blog-content-wrapper {
    max-width: 798px;
    margin: auto;
}

.blog-highlight {
    background: #e7d6b4;
    padding: 32px;
    margin-bottom: 24px;
}

.blog-contents-- p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.blog-contents-- h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    margin-bottom: 24px;
}

.blog-contents-- h2 {
    color: #000;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    margin-bottom: 24px;
}

.blog-contents-- h1 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.blg-point-mark li {
    display: flex;
    gap: 0 24px;
    align-items: center;
    margin-bottom: 24px;
}

.blg-point-mark li span {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    width: 70px;
    height: 41px;
    display: block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--secondary-800, #7A4D32);
    line-height: 40px;
    display: block !important;
}

.blg-point-mark li small {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
}

.blog-img {
    margin-bottom: 24px;
}

.blg-ck-mark-point li {
    color: var(--black-800, #383838);
    /* txt/Body 1/Regular */
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    position: relative;
    padding-left: 50px;
    margin-bottom: 24px;
}

.blg-ck-mark-point li::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url(../img/ck.png);
    background-repeat: no-repeat;
}

.Piki-do-pobrania h5 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    margin-bottom: 35px;
}

.Piki-do-item-box {
    border-radius: 48px;
    border: 1px solid var(--black-400, #818181);
    padding: 24px 24px 24px 48px;
    margin-bottom: 20px;
}

.Piki-do-item-box span {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: inline-block;
    margin-bottom: 16px;
}

.Piki-do-item-box ul {
    display: flex;
    align-items: center;
}

.Piki-do-item-box ul li {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
}

.Piki-do-item-box ul li a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 360px;
    border: 1px solid #7A4D32;
    background: #7A4D32;
    display: inline-block;
    padding: 16px 24px;
    transition: .3s;
}

.Piki-do-item-box ul li a:hover {
    border-radius: 360px;
    background: #352015;
}



.Piki-do-item-box ul li a i {
    font-size: 12px;
    display: inline-block;
    margin-left: 12px;
}

.Piki-do-item-box ul li:first-of-type {
    width: 70%;
}

/* ========================
Wydawnictwa page start 
============================ */

.muzeum-book-area {
    padding: 60px 0;
}

.muzeum-text-items {
    margin-bottom: 60px;
}

.muzeum-text-items h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    /* 130% */
}

.muzeum-text-items p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.muzeum-text-items ul li {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.muzeum-text-items ul li a {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    text-decoration-line: underline;
}

.muzeum-text-items ul li a:hover {
    text-decoration: none;
}

.muzeum-book-img {
    margin-bottom: 32px;
}

.muzeum-book-list-item {
    margin-bottom: 30px;
}

.muzeum-book-list-item h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 16px;
}

.muzeum-book-list-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
}

.muzeum-book-list-item span {
    color: var(--black-800, #383838);
    color: #383838;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    display: block;
    margin-bottom: 24px;
}

.muzeum-book-list-item a {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 360px;
    border: 1px solid #7A4D32;
    background: #7A4D32;
    display: inline-block;
    padding: 16px 24px;
    transition: .3s;
    display: block;
    width: 100%;
    text-align: center;
    transition: .3s;
}

.muzeum-book-list-item a:hover {
    border-radius: 360px;
    background: #352015;
    transition: .3s;
}

.muzeum-book-list-item a i {
    font-size: 12px;
    margin-left: 12px;
}

.muzeum-book-btm-pagination {
    margin-top: 70px;
}

.muzeum-book-btm-pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.muzeum-book-btm-pagination ul li {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #7A4D32;
    text-align: center;
    display: block;
    line-height: 57px;
    transition: .3s;
    cursor: pointer;
}

.muzeum-book-btm-pagination ul li:hover {
    border-radius: 360px;
    background: #7A4D32;
    color: #fff;
}

/* ===================
 poj wpis page start
 ======================== */

.m-book-hero {
    padding: 80px 0;
}

.m-book-top {
    display: block;
}

/* m-book-top */

.m-book-top {
    text-align: right !important;
}

/* .Cena section start */

.cena-sections-area {
    padding: 60px 0;
    border-bottom: 1px solid #C8C8C8;
}

.cena-se-item h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.cena-se-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.book-sc {
    padding: 40px 0;
}

/* .===price list start=== */

.price-list-area {
    padding: 70px 0;
    background-color: #fff;
}

.price-list-item-box {
    margin-bottom: 80px;
}

.price-list-item-box h2 {
    color: #1C2C07;
    font-size: 25.63px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.319px;
    margin-bottom: 30px;
}

.price-list-item-box ul li {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #1C2C07;
}

.price-list-item-box ul li span {
    color: #1C2C07;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
}

.price-list-item-box ul li small {
    color: #1C2C07;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
}

/*======contact-area start========== */

.contact-aera {
    padding: 60px 0;
}

.bdr1 {
    display: block;
    padding: 1px 0;
    margin: 30px 0;
    border-bottom: 1px solid #C8C8C8;
}

.contact-box-item {
    margin-bottom: 30px;
}

.contact-box-item h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 16px;
}

.contact-box-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.contact-box-item p a {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    text-decoration-line: underline;
}

.contact-box-item p a:hover {
    text-decoration: none;
}

.contact-box-item ul li a {
    display: flex;
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
    align-items: center;
    gap: 16px;
}

.contact-box-item ul li a img {
    transition: .3s;
}

.contact-box-item ul li a:hover img {
    transform: scale(1.2);
}

/* ==price-and-Publishing-house start== */

.price-and-Publishing-house-area {
    background: #E7D6B4;
    padding: 60px 0;
}

.price-and-Publishing-item {
    margin-bottom: 30px;
}

.price-and-Publishing-item span {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #000;
    border-radius: 100px;
    margin-bottom: 24px;
}

.price-and-Publishing-item p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.price-and-Publishing-item h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 500;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.price-and-Publishing-item a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    display: inline-block;
    padding: 16px 24px;
    border-radius: 360px;
    border: 1px solid #7A4D32;
    background: #7A4D32;
    transition: .3s;
}

.price-and-Publishing-item a:hover {
    color: #fff;
    background: #352015;
}

.price-and-Publishing-item a i {
    font-size: 12px;
    display: inline-block;
    margin-left: 12px;
}

/* .Edukacja w Muzeum Przyrody section */

.Edukacja-w-Muzeum-Przyrody {
    background-color: #fff;
    padding: 67px 0;
}

.Edukacja-w-Muze-img {
    margin-bottom: 32px;
    height: 256px;
    object-fit: cover;
    background-color: #ddd;
    overflow: hidden;
}

.Edukacja-w-Muze-img img {
    width: 100%;
    height: 100% !important;
    overflow: hidden;
}

.Edukacja-w-Muzeum-Przyrody-item {
    margin-bottom: 30px;
}

.Edukacja-w-Muzeum-Przyrody-item h2 {
    color: #1C2C07;
    font-size: 25.63px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.319px;
    margin-bottom: 27px;
}

.Edukacja-w-Muzeum-Przyrody-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 27px;
}

.Edukacja-w-Muzeum-Przyrody-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Edukacja-w-Muzeum-Przyrody-item a span {
    color: #1C2C07;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
    /* 130% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: .3s;
}

.Edukacja-w-Muzeum-Przyrody-item a span:hover {
    color: #000;
    text-decoration-line: none !important;
    transition: .3s;
}

.Edukacja-w-Muzeum-Przyrody-item a i {
    font-size: 14px;
    color: #1C2C07;
    padding-right: 150px;
}

/* Lessons and workshops in our museum section start */

.lessons-workshops-sectiosn {
    padding: 100px 0;
    background-color: #fff;
    border-bottom: 1px solid #C8C8C8;
}

.lessons-workshops-items {
    margin-bottom: 30px;
    padding-right: 100px;
}

.lessons-workshops-items h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    /* 130% */
    margin-bottom: 24px;
}

.lessons-workshops-right-items p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lessons-workshops-items span {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    border-radius: 100px;
    border: 1px solid #000;
    display: inline-block;
    padding: 8px 16px;
    transition: .3s;
    margin-bottom: 24px;
}

.lessons-workshops-right-items ul li {
    color: var(--black-800, #383838);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 24px;
}

.lessons-workshops-right-items li::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url(../img/ck-green.png);
    background-repeat: no-repeat;
}

.gallery {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.gallery li {
    float: left;
    margin: 4px;
}

/* See the photo gallery section start */

.see-the-img-gallery-area {
    padding: 100px 0;
}

.gallery-title h2 {
    color: #000;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 500;
    line-height: 47.437px;
    margin-bottom: 60px;
}

.lessons-workshops-img_box img {
    width: 100%;
}

.main-content3>div img {
    width: 100%;
}

/* nav arrow 2 */

.main-content3 {
    position: relative;
}

.main-content3 .owl-theme .custom-nav {
    position: absolute;
    top: -55%;
    left: 0;
    right: 0;
}

.main-content3 .owl-theme .custom-nav .owl-prev,
.main-content3 .owl-theme .custom-nav .owl-next {
    position: absolute;
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content3 .owl-theme .custom-nav .owl-prev i,
.main-content3 .owl-theme .custom-nav .owl-next i {
    font-size: 15px;
    color: #000;
    width: 52px;
    height: 52px;
    border: 1px solid #000;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    transition: .3s;
}

.main-content3 .owl-theme .custom-nav .owl-prev i:hover,
.main-content3 .owl-theme .custom-nav .owl-next i:hover {
    background-color: #000;
    color: #fff;
}

.main-content3 .owl-theme .custom-nav .owl-prev {
    right: 60px;
}

.main-content3 .owl-theme .custom-nav .owl-next {
    right: 0;
}

/* Select a subpage section start  */

.Select-subpage-area {
    padding: 60px 0;
}

.Select-subpage-title h2 {
    color: #1C2C07;
    font-size: 25.63px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.319px;
    margin-bottom: 24px;
}

.Select-subpage-title ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    justify-content: space-between;
    color: #1C2C07;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    transition: .3s;
    padding: 24px 0;
    border-bottom: 1px solid #1C2C07;
}

.Select-subpage-title ul li a span {
    text-decoration-line: underline;
}

.Select-subpage-title ul li a i {
    font-size: 14px;
}

.Select-subpage-title ul li a:hover span {
    text-decoration: none !important;
}

/* the_Lutosławskie_court_in-Drozdowo */

.the_Lutosławskie_court_in-Drozdowo {
    padding: 70px 0;
}

.the_Lutoslawskie_court-content h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 20px;
}

.the_Lutoslawskie_court-content p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.lttc li {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.lttc li a {
    color: #383838;
    text-decoration-line: underline;
}

.ltts {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding-left: 17px;
}

/* ===Tasks from the state budget and targeted funds start == */

.tast-state-budget-and-tragetd_inner-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 50px;
}

.tast-state-budget-and-tragetd_inner-item h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.tast-state-budget-and-tragetd_inner-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    margin-bottom: 24px;
}

.tast-state-budget-and-tragetd_inner-item ul {
    display: flex;
    align-items: center;
    gap: 0 24px;
    margin-bottom: 24px;
}

.img-and-btns img {
    display: inline-block;
    margin-bottom: 24px;
}

.img-and-btns a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border-radius: 30px;
    border: 1px solid #7A4D32;
    display: inline-block;
    padding: 16px 24px;
    text-align: center;
    transition: .3s;
    margin-left: 12px;
}

.img-and-btns a i {
    font-size: 12px;
    display: inline-block;
    margin-left: 10px;
    color: #7A4D32;
    transition: .3s;
}

.img-and-btns a:hover {
    background: #7A4D32;
    color: #fff;
}

.img-and-btns a:hover i {
    color: #fff;
}

/* ====features image and text section start==== */

.features-img-text-section {
    padding: 60px 0;
}

.features--text-item {
    margin-bottom: 30px;
    margin-bottom: 80px;
}

.ft-left-text {
    padding-right: 80px;
}

.ft-right-text {
    padding-left: 80px;
}

.features--text-item h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 24px;
    margin-top: 90px;
}

.features--text-item h3 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 24px;
    margin-top: 90px;
}

.features--text-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.features--image-item {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
    margin-bottom: 80px;
}

.features--image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-text-bottom-btn {
    margin-top: 30px;
}

.features-text-bottom-btn a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border-radius: 360px;
    border: 1px solid #9A2C1A;
    display: inline-block;
    padding: 16px 24px;
    text-align: center;
    margin: auto;
    transition: .3s;
    padding: 16px 24px;
}

.features-text-bottom-btn a:hover {
    background: #9A2C1A;
    color: #fff;
}

.features-text-bottom-btn a i {
    color: #9A2C1A;
    font-size: 13px;
    display: inline-block;
    margin-left: 12px;
    transition: .3s;
}

.features-text-bottom-btn a:hover i {
    color: #fff;
}

/* Grabowski family section start */

.Grabowski_family-section {
    padding: 62px 0;
    background: #F7F7F7;
}

.Grabowski_family-item h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.Grabowski_family-item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

/* Section header divided into 3 columns with a photo start */

.divided-into3-columns-photo {
    padding: 100px 0;
    background: #F7F7F7;
}

.divided-into3_title {
    margin-bottom: 75px;
}

.divided-into3_title h2 {
    color: #000;
    font-size: 36.49px;
    font-style: normal;
    font-weight: 600;
    line-height: 47.437px;
}

.divided-into3_title p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.divide-into_columns-photo-item {
    margin-bottom: 30px;
}

.divide-into-image {
    margin-bottom: 24px;
}

.divide-into-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divide-into_columns-photo-item h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 20px;
}

.divide-into_columns-photo-item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* ================== */

.text-columns-text-area {
    padding: 90px 0;
}

.divide-into_columns-text_item {
    margin-bottom: 30px;
}

.divide-into-image {
    margin-bottom: 24px;
}

.divide-into-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divide-into_columns-text_item {
    margin-bottom: 30px;
}

.divide-into_columns-text_item h2 {
    color: #000;
    font-size: 22.78px;
    font-style: normal;
    font-weight: 600;
    line-height: 29.614px;
    margin-bottom: 20px;
}

.divide-into_columns-text_item p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.divide-into_columns-text_item span {
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    border-radius: 360px;
    border: 1px solid #7A4D32;
    display: block;
    text-align: center;
    line-height: 60px;
    margin-bottom: 20px;
}

/* Publishing house section area start */

.Publishing_house_area {
    background: #E7D6B4;
}

.Publishing_house_text-content {
    height: 100%;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    padding-right: 70px;
    padding-top: 70px;
}

.Publishing_house_text-content span {
    color: #000;
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid #000;
}

.Publishing_house_text-content h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 53.365px;
    margin: 24px 0;
}

.Publishing_house_text-content p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 23px;
}

.Publishing_house_text-content a {
    color: #000;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    display: inline-block !important;
    padding: 16px 24px;
    border-radius: 360px;
    background: #FFF;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
    transition: .3s;
}

.Publishing_house_text-content a:hover {
    color: #fff;
    background: #352015;
    box-shadow: 0px 8px 12px 0px rgba(9, 30, 66, 0.10);
}

.Publishing_house_text-content a i {
    font-size: 12px;
    display: inline-block;
    transition: .3s;
    margin-left: 12px;
}

/* text-and-Check-mark-section start  */

.text-and-Check-mark-section {
    padding: 80px 0;
    background-color: #fff;
}

.text-and-Check-mark-content h2 {
    color: #000;
    font-size: 32.44px;
    font-style: normal;
    font-weight: 600;
    line-height: 42.172px;
    margin-bottom: 24px;
}

.text-and-Check-mark-content p {
    color: #383838;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 24px;
}

.Check-mark-content li {
    color: var(--black-800, #383838);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 24px;
}

.Check-mark-content li::before {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url(../img/ck-green.png);
    background-repeat: no-repeat;
}

main {
    overflow: hidden;
}

/* ============end css all file ====== */