:root {
  --primary-color: #282828;
  --secondary-color: #307541;
  --third-color: #7F1A1E;
}

.product .product-id {
    color: #1D4B2C;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.15px;
    margin-top: 20px;
    display: block;
}

.product .btns-and-price .wishBtn.active path{
    fill: #7F1A1E;
}

.center-title{
    text-align: center;
}

.dark-title .breadcrumb a{
color: var(--primary-color);
}

.dark-title .breadcrumb .current{
    color: var(--secondary-color);
}

.dark-title .breadcrumb a:not(:first-child)::before, .dark-title .breadcrumb .current::before{
    color: var(--primary-color);
}

.products-list .product .product-image{
   box-shadow: -10px 0 20px rgba(0, 0, 0, 0.15);

}

.products-list .product .product-middle{
    box-shadow:
  0 0px 20px rgba(0, 0, 0, 0.15);
  border-right: 1px solid #E8E8E8;

}

.products-list .product .btns-and-price{
    justify-content: center;
}

.products-list .product .blueBtn1{
    justify-content: space-between;
    font-weight: 500;
}

.products-list .product .btns-and-price{
    background-color: #f4f4f4;
}

.products-list{
    row-gap: 40px;
}

.favourites-wrap .product {
    border: 1px solid #E8E8E8;
}

.template-text ul{
    list-style: none;
}

.template-text ul li{
    position: relative;
    padding-left: 30px;
}

.template-text ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url('../images/list-bullet.svg');
    background-size: 18px;
}

.template-text .download-links a{
    font-size: 16px;
    color: #000;
    letter-spacing: 0.15px;
}

.template-text .template-gallery{
    grid-template-columns: repeat(3, 1fr);
    height: auto;
}

.template-text .template-gallery a{
    height: 470px !important;
    position: relative;
}

.template-text .template-gallery a:first-of-type{
    grid-column: span 1;

}

.template-text .template-gallery a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2) url('../images/big-eye.svg') no-repeat;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s ease-in-out;
    background-position: center;
}

.template-text .template-gallery a:hover::before{
opacity: 1;
visibility: visible;
    transition: all 0.5s ease-in-out;
}

.cookies-text{
    background-color: #F4F4F4;
    padding: 40px 30px;
}

.cookies-text a{
    color: var(--secondary-color);
    font-weight: 500;
}

.cookies-text p{
    font-weight: 400;
    letter-spacing: 0.15px;
    margin-bottom: 15px;
}

.cookies-text h2{
    font-weight: 500;
    letter-spacing: 0.25px;
    margin-bottom: 20px;
}

.cookies-text h3{
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.cookies-text ul{
    padding-left: 20px;
}

.cookies-text ul li{
    font-family: "IBMPlexSans";
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.15px;
    margin-bottom: 10px;
}

.career-cont{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 420px;
}

.career-cont .job-image{
    width: 50vw;
    height: 420px;
    position: absolute;
}

.career-cont .job-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.career-cont .job-text {
    width: 45%;
    margin-left: auto;
}

.reverse-career .career-cont .job-text{
    margin-left: 0;
}

.career-cont .job-text span{
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
}

.career-cont .job-text h2{
    margin-bottom: 20px;
}

.reverse-career .career-cont{
    flex-direction: row-reverse;
}

.career-cont .job-text a{
    font-weight: 700;
    letter-spacing: 0.15px;
    color: #000;
}

.career-details-cont .career-details-image{
    width: 100%;
    height: 570px;
}

.career-details-cont .career-details-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.career-details-cont .career-details-text {
    margin-top: 30px;
}


.career-details-cont .career-details-text span{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.career-details-cont .career-details-text .title h2{
    margin-top: 10px;
    margin-bottom: 20px;
}


.career-details-cont .career-details-text ul{
    list-style: none;
    margin: 20px 0;
}

.career-details-cont .career-details-text ul li{
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.15px;
    padding-left: 25px;
    margin-bottom: 10px;
}

.career-details-cont .career-details-text ul li::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url('../images/list-bullet.svg');
    background-repeat: no-repeat;
    left: 0;
}

.career-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 40px;
    background-color: transparent;
    margin-top: 40px;
    width: 100%;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
}

.career-form-sec{
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}

.career-form-sec .title h3{
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.25px;
}

.career-form input, .career-form textarea, .career-form select {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    border-bottom: 1px solid rgba(32, 32, 32, 0.2);
    font-weight: 500;
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    font-family: "IBMPlexSans";
}

.career-form select:focus{
    outline: none;
}

.career-form input::placeholder, .career-form textarea::placeholder{
      font-weight: 500;
    font-size: 18px;
    color: var(--primary-color);
font-family: "IBMPlexSans";
}

.career-form .iti{
    width: 100%;
}

.custom-file-upload {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    grid-column: span 2;
}

.custom-file-upload::before {
    content: "";
    display: block;
    background-image: url(../images/upload-icon.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 29px;
    margin-right: 10px;
}

input[type="file"] {
    display: none;
}

.career-form textarea {
    height: 120px;
    resize: none;
    grid-column: span 2;
}

.career-form input:focus, .career-form textarea:focus{
    outline: none;
}


.iti .iti__selected-dial-code {
    font-family: "IBMPlexSans";
    font-size: 18px;
}

form .btn{
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: "IBMPlexSans";
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 235px;
    padding: 10px;
    border: none;
    letter-spacing: 0.15px;
    height: 57px;
}

.career-form .btn{
    margin-left: auto;
}

.blog .blog-img .blog-date{
    top: auto;
    bottom: 0;
    background-color: var(--third-color);
    font-family: "IBMPlexSerif" !important;
    letter-spacing: 0.15px;
}

.blog .blog-title{
    font-weight: 500;
    letter-spacing: 0.15px;
}

.blog .blog-description{
    opacity: 1;
    letter-spacing: 0.15px;
}

.pagination li a span{
    border-radius: 0;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    height: 49px;
}

.pagination li .active span{
    background-color: var(--primary-color);
}

.blog-cover{
    height: 590px;
}

.blog-text .title span{
    color: var(--third-color);
    font-weight: bold;
}

.blog-text h1, .blog-text h2, .blog-text h3{
    color: var(--primary-color);
}

.blog-text h2, .blog-text h3 {
    font-size: 32px;
}


.blog-gallery{
    grid-template-columns: repeat(3, 1fr);
}

.blog-gallery a:first-of-type{
    grid-row: span 1;
}

.blog-cont-grid{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.blog-cont-grid .left{
    width: 30%;
}

.blog-cont-grid .right{
    width: 70%;
}


.other-blogs{
    grid-template-columns: 1fr;
    margin: 30px 0;
}

.other-blogs .blog{
    display: flex;
    align-items: center;
}

.other-blogs .blog .blog-img{
    height: 106px;
    margin-right: 10px;
}

.other-blogs .blog .blog-title{
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
}

.other-blogs .blog .blog-date{
    font-size: 16px;
    font-weight: 500;
    color: var(--third-color);
}

.blog-cont-grid .left p{
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid rgba(32, 32, 32, 0.2);
    padding-bottom: 10px;

}

.share-wrapper{
    display: block;
}

.share-wrapper a{
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin-top: 30px;
}

.about-top-wrapper .about-image1{
    position: relative;
}

.about-top-wrapper .about-image1 .home-about-grid-logo{
    bottom: 70px;
    left: auto;
    right: 50px;
}

.about-map{
    height: 670px;
}

.dark-title h1{
    color: var(--primary-color);
}

.form-container{
    background-color: #F4F4F4;
    position: relative;
}

.form-container::after{
    content: '';
    position: absolute;
    top: 0;
    right: -70%;
    width: 100%;
    height: 100%;
    background-color: #F4F4F4;
    z-index: -1;
}

.contact-page form input, .contact-page form textarea{
    background-color: transparent;
    border-bottom: 1px solid rgba(32, 32, 32, 0.2);
}

.contact-page form .btn{
  margin-left: auto;
}

.form-container .form-body{
    padding: 40px;
}

.contact-wrapper .contact-links{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.contact-page .contact-links .mail, .contact-page .contact-links .tel{
    flex-direction: column;
    width: 100%;
    background-color: #F4F4F4;
    padding: 15px;
    min-height: 240px;
        display: flex;
    align-items: center;
}

.contact-page .contact-links .icon{
    max-width: 140px;
    min-width: 140px;
    height: 97px;
    margin-top: -50px;
}

.contact-page .contact-links .text{
    margin-top: 20px;
    text-align: center;
}

.contact-page .contact-links .text a{
    font-size: 16px;
    font-weight: 500;
    font-family: "IBMPlexSans";
    margin-bottom: 0;
    text-align: center;
    display: inline-flex;
    margin-bottom: 5px;
}

.contact-page .icon-social {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background-color: transparent;
        transition: all 0.5s ease-in-out;
}

.contact-page .icon-social svg path{
       transition: all 0.5s ease-in-out;
}

.contact-page .icon-social:hover{
    background-color: var(--third-color);
    border: 1px solid var(--third-color);
    transition: all 0.5s ease-in-out;
}

.contact-page .icon-social:hover svg path{
    fill: #fff;
    transition: all 0.5s ease-in-out;
}

.contact-page .form-container-wrapper hr{
    background-color: rgba(32, 32, 32, 0.2);
}

.main-service-content span{
color: var(--secondary-color);
font-weight: 500;
letter-spacing: 0.5px;
display: inline-block;
margin-bottom: 10px;
}

.main-service-content h2{
    margin-bottom: 20px;
}

.main-service-content h3{
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: "IBMPlexSans";
    font-weight: 500;
}

.main-service-content p{
    margin-bottom: 15px;
}

.main-service-content ul{
    list-style: none;
    padding: 20px 0;
}

.main-service-content ul li{
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    font-family: "IBMPlexSerif";
    font-size: 18px;
}
.main-service-content ul li::before{
   content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    background-image: url('../images/list-bullet.svg');
    background-size: 18px;

}

.main-service-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 15px;
    margin-top: 30px;
}

.main-service-gallery a {
    width: 100%;
    height: 320px;
    position: relative;
}

.main-service-gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-service-gallery a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2) url('../images/big-eye.svg') no-repeat;
    background-position: center;
    background-size: 95px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.main-service-gallery a:hover::before{
    opacity: 1;
    visibility: visible;
}


.services-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.services-wrapper::before{
    content: "";
    position: absolute;
    top: 0;
    right: -27%;
    width: 47%;
    height: 100%;
    background: #F4F4F4 url('../images/big-logo-opacity.png') no-repeat;
    background-position: 120px;
    z-index: -1;
}

.services-wrapper .main-service-content{
    width: 70%;
}

.services-wrapper .other-services-list {
    width: 25%;
}

.services-wrapper .other-services-list ul{
    list-style: none;
    text-align: end;
}


.services-wrapper .other-services-list ul li{
    margin-bottom: 20px;
}

.services-wrapper .other-services-list ul li a{
    font-size: 16px;
    font-weight: 400;
    font-family: "IBMPlexSerif";
    color: var(--primary-color);
}

.services-wrapper .services-list li ul{
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease-in-out;
    padding: 0;

}

.services-wrapper .services-list li.open-service ul{
    position: static;
    opacity: 1;
    padding-left: 0;
    transition: all 0.5s ease-in-out;
    margin-top: 15px;

}

.services-wrapper .services-list li::before{
    background: #282828 url('../images/arr-down-w.svg') no-repeat;
    width: 39px;
    height: 39px;
    background-position: center;
    left: auto;
    top: 35px;
    right: 30px;
    cursor: pointer;
}
.services-wrapper .services-list li{
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding-left: 0;
    padding: 30px;
}

.services-wrapper .services-list li ul ul li{
    box-shadow: none;
    padding: 0;
    padding-left: 30px;
    font-weight: 600;
}

.services-wrapper .services-list li ul ul li::before{
  content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 18px;
    height: 18px;
    background: transparent url('../images/list-bullet.svg') no-repeat;
    background-size: 18px;
}

.services-wrapper .services-list li ul table{
    border: none;
    width: 100%;
}

.services-wrapper .services-list li ul table tr{
    border: none;
}

.services-wrapper .services-list li ul table tr td{
    border: none;
}

.services-wrapper .services-list li ul table tr td:nth-of-type(even){
    text-align: end;
}

.services-wrapper .services-list li ul hr{
    margin-bottom: 20px;
    margin-top: 5px;
}



.services-wrapper .service-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}

.services-wrapper .service-gallery a {
    width: 100%;
    height: 320px;
    position: relative;
    display: none;
}

.services-wrapper .service-gallery a:nth-child(1), .services-wrapper .service-gallery a:nth-child(2), .services-wrapper .service-gallery a:nth-child(3){
    display: flex;
}

.services-wrapper .service-gallery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-wrapper .service-gallery a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2) url('../images/big-eye.svg') no-repeat;
    background-position: center;
    background-size: 95px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.services-wrapper .service-gallery a:hover::before{
    opacity: 1;
    visibility: visible;
}

.services-wrapper .other-services-list ul li a.active{
    color: var(--third-color);
    font-weight: bold;
    position: relative;
    display: block;
}

.services-wrapper .other-services-list ul li a.active::before{
    content: "";
    position: absolute;
    right: -100%;
    width: 55%;
    height: 1px;
    background-color: var(--secondary-color);
    top: 50%;
    transform: translateY(-50%);
}

.service-form-cont{
    margin-top: 60px;
    padding: 30px;
    background-color: #F4F4F4;
}

.services-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.services-form input, .services-form textarea, .services-form select{
    background-color: transparent;
        border: none;
    border-bottom: 1px solid rgba(32, 32, 32, 0.2);
        width: 100%;
        max-width: calc(100% - 30px);
height: 35px;
    outline: none;
    padding: 0 0;
    font-family: "IBMPlexSans";
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.15px;
    color: var(--primary-color);
}

.services-form input::placeholder, .services-form textarea::placeholder{
    font-family: inherit;
    color: var(--primary-color);
}

.services-form textarea{
    grid-column: span 2;
    resize: none;
    height: 100px;
}

.services-form .btn{
    margin-left: auto;
}

.locations-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.locations-wrapper .left-part {
    width: 45%;
}

.locations-wrapper .left-part .bookstore-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
}

.locations-wrapper .left-part .bookstore-info .contact-bookstore {
    width: 45%;
}

.locations-wrapper .left-part h3 {
    font-size: 24px;
    font-weight: 500;
color: var(--primary-color);
margin-bottom: 15px;
}

.locations-wrapper .left-part .bookstore-info .contact-bookstore a {
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--primary-color);
    display: block;
}

.locations-wrapper .left-part .bookstore-info .work_hours {
    position: relative;
    width: 45%;
    padding-left: 70px;
}

.locations-wrapper .left-part .bookstore-info .work_hours::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(32, 32, 32, 0.2);
}

.locations-wrapper .left-part .bookstore-info .work_hours p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 30px;
}

.locations-wrapper .left-part .bookstore-info .work_hours .hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.locations-wrapper .left-part .bookstore-info .work_hours span {
    font-weight: 400;
    font-family: "IBMPlexSerif";
}

.locations-wrapper .left-part .bookstore-info .work_hours hr {
    width: 50px;
    height: 2px;
    color: #282828;
    background-color: #282828;
    border: none;
}

.locations-wrapper .left-part .location-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 30px;
    border-radius: 15px;
}

.locations-wrapper .left-part .location-gallery a {
    width: 100%;
    height: 207px;
    position: relative;
    display: none;
}

.locations-wrapper .left-part .location-gallery a:nth-child(1), .locations-wrapper .left-part .location-gallery a:nth-child(2), .locations-wrapper .left-part .location-gallery a:nth-child(3) {
    display: block;
}

.locations-wrapper .left-part .location-gallery a:nth-child(1) .more-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.locations-wrapper .left-part .location-gallery a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.locations-wrapper .right-part {
    width: 45%;
    height: 561px;
    position: relative;
}

.locations-wrapper .right-part iframe {
    width: 140%;
    height: 100%;
    position: absolute;
    right: -40%;

}

.locations-wrapper.reverse-locations-wrapper {
    flex-direction: row-reverse;
}

.locations-wrapper.reverse-locations-wrapper .right-part iframe {
    right: auto;
    left: -40%;
    border-radius: 0;

}

.stores-filters {
    width: max-content;
    margin-left: auto;
    background-color: #fff;
    border: 1px solid rgba(40, 40, 40, 0.1);
  
}

.stores-filters details{
    width: max-content;
    min-width: 160px;
    position: relative;
      padding: 10px;
      cursor: pointer;
}

.stores-filters details summary{
    background-image: url('../images/arr-down-g.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 10px);
}

.stores-filters details ul{
    position: absolute;
    top: 43px;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: #fff;
    list-style: none;
    text-align: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);

}

.stores-filters details ul li{
    padding: 5px;
    cursor: pointer;
}


.stores-filters details ul li.active{
    background-color: var(--secondary-color);
    color: #fff;
}

.locations-wrapper h2{
    position: relative;
}

.locations-wrapper h2::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    height: 1px;
    background-color: var(--secondary-color);
    left: -59%;

}

.category-slide:hover p{
    font-weight: 500;
        text-shadow:
 0.3px 0 0 #282828,
       -0.3px 0 0 #282828;
}

.plocasti span{
    position: relative;
}

.plocasti span::before{
content: "";
position: absolute;
top: -5px;
height: 1px;
width: 36px;
background-color: #fff;
left: 0;
}





@media screen and (max-width: 1600px) {
    .locations-wrapper .right-part iframe {
        width: 128%;
        right: -28%;
    }

        .locations-wrapper.reverse-locations-wrapper .right-part iframe {
        width: 128%;
        left: -28%;
    }

    .locations-wrapper h2::before{
        left: -28%;
        width: 23%;
    }

    .services-wrapper .other-services-list ul li a.active::before{
        right: -50%;
    width: 35%;
    }
}

@media screen and (max-width: 1400px) {
.services-wrapper::before{
    right: -20%;
}
}

@media screen and (max-width: 1300px) {
    .favourites-wrap .product .product-middle .product-name{
        padding-bottom: 20px;
    }

    .favourites-wrap .product .blueBtn1{
margin-left: auto;
margin-right: auto;
    }
}

@media screen and (max-width: 1200px) {
.services-wrapper{
flex-direction: column;
}

.services-wrapper::before{
        top: 0;
        width: 127%;
        height: 17%;
        left: -13%;
        background-image: none;
}

.services-wrapper .main-service-content{
    width: 100%;
    order: 2;
}

.services-wrapper .other-services-list{
    width: 100%;
    order: 1;
}

.services-wrapper .other-services-list ul{
    text-align: start;
}

.services-wrapper .other-services-list ul li a.active::before{
    right: 30%;
    width: 42%;
}

.locations-wrapper {
        flex-direction: column;
    }

    .locations-wrapper.reverse-locations-wrapper{
        flex-direction: column;
    }

    .locations-wrapper .left-part {
        width: 100%;
    }

    .locations-wrapper .right-part {
        width: 100%;
        margin-top: 30px;
    }

    .locations-wrapper .left-part .bookstore-info .work_hours {
        padding-left: 35px;
    }

    .locations-wrapper.reverse-locations-wrapper .right-part iframe, .locations-wrapper .right-part iframe {
        position: relative;
        width: 100%;
    }

        .locations-wrapper .right-part iframe {
        right: 0;
    
    }

        .locations-wrapper.reverse-locations-wrapper .right-part iframe {
        left: 0;
      
    }
}

@media screen and (max-width: 991px) {
.career-form {
    grid-template-columns: 1fr;
}

.custom-file-upload, .career-form textarea{
    grid-column: span 1;
}

.career-form .btn{
    margin-left: 0;
}

.career-form-sec{
    padding-left: 15px;
    padding-right: 15px;
}

.career-details-cont .career-details-image{
    height: 400px;
}


.blog-cont-grid{
 flex-direction: column;
 gap: 0;
}

.blog-cont-grid .left{
    width: 100%;
    order: 2;
}

.blog-cont-grid .right{
    width: 100%;
}


}

@media screen and (max-width: 767px) {
.career-cont .job-image{
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    height: 300px;
}

.career-cont {
    height: auto;
    flex-direction: column;
}

.career-cont .job-text {
    width: 100%;
}

.reverse-career .career-cont{
    flex-direction: column;
}

.blog-cover{
    height: 300px;
}

.contact-wrapper .contact-links{
    flex-direction: column;
    gap: 50px;
}

.form-container::after{
    display: none;
}

.form-container .form-body {
    padding: 15px;
}

.contact-page .contact-links .icon{
    height: 80px;
}

.main-service-gallery{
    column-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.main-service-gallery a{
    height: 200px;
}

.services-form{
    grid-template-columns: 1fr;
}

.services-form textarea{
    grid-column: span 1;
}

.services-wrapper .service-gallery{
    grid-template-columns: repeat(2, 1fr);
}

.services-wrapper .service-gallery a{
    height: 200px;
}

.services-wrapper .service-gallery a:nth-of-type(3){
    display: none;
}
}

@media screen and (max-width: 576px) {
.template-text .template-gallery{
    grid-template-columns: repeat(2, 1fr);
}

.template-text .template-gallery a{
    height: 250px !important;
}

.cookies-text{
    padding: 30px 10px;
}

.cookies-text h2{
    font-size: 30px;
}

.career-details-cont .career-details-image{
    height: 300px;
}

.about-top-wrapper .about-image1 .home-about-grid-logo{
    bottom: 10px;
    left: auto;
    width: 100%;
    max-width: 50%;
    padding: 15px;
}

.about-top-wrapper .about-image1 .home-about-grid-logo p {
    font-size: 10px;
}


.services-wrapper .other-services-list ul li a.active::before{
    right: -5%;
    width: 48%;
}

.services-wrapper::before{
    height: 310px;
}

    .locations-wrapper .left-part .bookstore-info .work_hours, .locations-wrapper .left-part .bookstore-info .contact-bookstore {
        width: 50%;
    }

    .locations-wrapper .left-part .bookstore-info .work_hours {
        padding-left: 20px;
    }

    .locations-wrapper .left-part h3{
        font-size: 18px;
    }

    .locations-wrapper .left-part .bookstore-info .work_hours p{
        margin-top: 17px;
    }

    .locations-wrapper .left-part .location-gallery a{
        height: 185px;
    }

        .locations-wrapper .right-part {
        height: 300px;
    }

    .first-career{
        padding-top: 20px;
    }

    .services-wrapper .services-list li{
        padding: 20px;
    }

    .services-wrapper .services-list li::before{
        width: 29px;
        height: 29px;
        top: 15px;
    right: 20px;
    }

    .main-service-content h3{
        font-size: 22px;
    }

    .blog-text h1{
        font-size: 30px;
    }

    .blog-text h2, .blog-text h3{
        font-size: 27px;
    }

    .contact-page .contact-links .mail, .contact-page .contact-links .tel{
        min-height: auto;
    }

    .locations-wrapper .left-part .bookstore-info .contact-bookstore a{
        word-break: break-all;
    }

    .category-slide-btn{
        display: none;
    }

    .foot-copyright ul{
        margin-bottom: 10px;
    }
}