.carousel-item {
    max-height: 100%;
}
.section_category .service__image {
    position: sticky;
}
.section_category .row {
    padding-top: 30px;
}
.section_about_home .overlay {
    padding: 30px 0;
}
.section_blogs {
    padding: 0px;
}
.section_target {
    padding-top: 60px;
}
.section_target .flw-bg {
    margin-top: 40px;
    padding: 20px 0px 156px;
}
.new {
    margin-top: 10px;
    margin-bottom: 55px;
}
.new .about_text {
    padding-bottom: 30px;
}
.new h1 {
    font-size: 24px;
}
.new h2 {
    font-size: 18px;
    padding: 15px 0px;
}
.new .about_text h5 {
    padding: 15px 0px;
}
.section_target .flw-bg img {
    width: auto;
}
.teams .card1 .card1_in {
    width: 100%;
    top: -140px;
    background-color: rgb(165, 125, 36);
}
.teams .card1:hover .card1_in {
    background-color: #808080;
}
.prime {
    position: absolute;
    top: 66%;
    right: 10%;
    background: #ffffff52 !important;
    background-image: none;
    padding: 8px 12px;
    border-radius: 16px 1px;
}
.why_choose .card1 .card1_in .card1_name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}
.carousel .carousel-inner .slider_text {
    padding: 0px 44px 26px;
    border-radius: 5px;
}
.section_target .sec_middle_title p {
    font-size: 28px;
    font-weight: bold;
}
video {
    max-height: 350px;
    border-radius: 4px;
}
.slider_text a {
    bottom: -75px;
}
.h3-smaller h3 {
    font-size: 1.5rem;
    padding-bottom: 10px;
}
.border-gold {
    border: 2px solid #A57D24;
}
.border-gold h1 {
    border-bottom: 2px solid #A57D24;
}

.slider_index {
    margin-top: 0px;
}
.info-box-section{
    margin: 50px 20px;
    justify-content: center!important;
}
.info-box-section .box{
    border: 1px solid #eaeaea;

}
.info-box-section .box:hover{
    box-shadow: 0 0 1px 0 rgba(51,51,51,.14),0 2px 7px 0 rgba(51,51,51,.2);
    cursor: pointer;
}
.info-box-section .box::before {
    top: -1px;
    right: 17px;
    left: 17px;
    border-top: 3px solid #3dcd58;
}
.info-box-section .box::before {
    content: "";
    position: absolute;
    opacity: 0;
    z-index: 20;
    transition: opacity .2s ease;
}
.info-box-section .box:hover::before {
    opacity: 1;
}
.info-box{
    text-align: center;
    border-radius: 13px;
    margin: 10px;
    padding: 30px 10px;
}
.info-box-section .box .pic{
    width: 100%;
    height: 150px;
    object-fit: fill;
}
.info-box h2{
    font-size: 20px;
}
.info-box p{
    text-align: justify;
}
.carousel .carousel-inner .slider_text {
    background: #ffffff52 !important;
    border-radius: 20px 0px 20px 0px !important;
}
.slider_text h2 {
    color: #000000b5;
}
.box-row {
    width: 240px;
    margin: auto !important;
}
.box-col {

}
:root {
    --color: #3c3163;
    --transition-time: 0.5s;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Open Sans';
    background: #fff;
}

a {
    color: inherit;
}

.cards-wrapper {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4rem;
    padding: 4rem;
    margin: 0 auto;
    width: max-content;
}

.card {
    font-family: 'Heebo';
    --bg-filter-opacity: 0.5;
    background-image: linear-gradient(rgba(0,0,0,var(--bg-filter-opacity)),rgba(0,0,0,var(--bg-filter-opacity))), var(--bg-img);
    height: 20em;
    width: 15em;
    font-size: 1.5em;
    color: white;
    border-radius: 1em;
    padding: 1em;
    /*margin: 2em;*/
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 5em -1em black;
    transition: all, var(--transition-time);
    position: relative;
    overflow: hidden;
    border: 10px solid #ccc;
    text-decoration: none;
}

.card:hover {
    transform: rotate(0);
}

.card h1 {
    margin-top: 10px;
    font-size: 1.5em;
    line-height: 1.2em;
}

.card p {
    font-size: 0.75em;
    font-family: 'Open Sans';
    margin-top: 0.5em;
    line-height: 2em;
    text-align: justify;
}

.card .tags {
    display: flex;
}

.card .tags .tag {
    font-size: 0.75em;
    background: rgba(255,255,255,0.5);
    border-radius: 0.3rem;
    padding: 0 0.5em;
    margin-right: 0.5em;
    line-height: 1.5em;
    transition: all, var(--transition-time);
}

.card:hover .tags .tag {
    background: var(--color);
    color: white;
}

.card .date {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75em;
    padding: 1em;
    line-height: 1em;
    opacity: .8;
}

.card:before, .card:after {
    content: '';
    transform: scale(0);
    transform-origin: top left;
    border-radius: 50%;
    position: absolute;
    left: -50%;
    top: -50%;
    z-index: -5;
    transition: all, var(--transition-time);
    transition-timing-function: ease-in-out;
}

.card:before {
    background: #ddd;
    width: 250%;
    height: 250%;
}

.card:after {
    background: white;
    width: 200%;
    height: 200%;
}

.card:hover {
    color: var(--color);
}

.card:hover:before, .card:hover:after {
    transform: scale(1);
}

.card-grid-space .num {
    font-size: 3em;
    margin-bottom: 1.2rem;
    margin-left: 1rem;
}

.info {
    font-size: 1.2em;
    display: flex;
    padding: 1em 3em;
    height: 3em;
}

.info img {
    height: 3em;
    margin-right: 0.5em;
}

.info h1 {
    font-size: 1em;
    font-weight: normal;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
    .cards-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
    }
    .info {
        justify-content: center;
    }
    .card-grid-space .num {
    /margin-left: 0;
    /text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .cards-wrapper {
        padding: 4rem 2rem;
    }
    .card {
        max-width: calc(100vw - 4rem);
    }
}

@media screen and (max-width: 450px) {
    .info {
        display: block;
        text-align: center;
    }
    .info h1 {
        margin: 0;
    }
}
.slider_text a {
    bottom: -42px;
    border: 1px solid var(--color1);
    height: 30px;
    border-radius: 4px;
    padding: 0px 10px;
    padding-top: 3px;
    font-weight: bold;
    background: var(--color1);
    color: #fff;
    display: inline-block;
    transition: all 0.6s;
    margin-left: 17.5px;
    -webkit-transition: all 0.6s;
    min-width: 100px;
}
.line {
    text-align: center;
    padding-bottom: 30px;
}
.line h4 {
    font-weight: bold;
    font-weight: 800;
    font-size: 24px;
}
.line-white h4 {
    color: white;;
}
.line .line-left {
    border-bottom: 1px solid rgb(165, 125, 36);
    margin: 4px;
    width: 60px;
    margin-bottom: 20px;
}
.line .line-right {
    border-bottom: 1px solid rgb(165, 125, 36);
    margin: 4px;
    width: 60px;
    margin-bottom: 20px;
}
.line-white .line-right , .line-white .line-left {
    border-color: white;
}
#two li {
    padding-top: 24px;
}
div.line-o {
    border-bottom: 1px solid rgb(165, 125, 36);
    margin: 0px 16px 28px;
    max-width: 400px;
}
#two div.line-e {
    border-bottom: 1px solid rgb(165, 125, 36);
    margin: 0px 8px 16px;
    width: 60px;
}
.teams .card1, .teams .card2, .teams .card3 {
    max-height: 200px;
    border-radius: 6px;
}
.section_blogs .lts_blogpost_item .lts_blg_text.padd-none , .section_blogs .lts_blg_sm_image {
    background: #f8f9fa;
    height: 160px;
    border-radius: 4px;
    margin-right: 6%;
}
.section_blogs .lts_blg_sm_image {
    float: unset;
    text-align: center;
    margin-left: 20%;
    margin-right: 0px;
}
.section_blogs .lts_blg_sm_image img {
    width: 180px;
    height: auto;
    border-radius: 4px 24px;
    margin-top: 11px;
}
.section_blogs .lts_blogpost_item .lts_blg_text h2 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
}
.section_blogs .lts_blogpost_item .lts_blg_text p {
    font-size: 12px;
}
#tree {
    background: #a57d24;
}
.dot {
    height: 4px;
    width: 4px;
    background-color: rgb(165, 125, 36);
    border-radius: 50%;
    margin: 14px 4px 0px;
}
.line-white .dot {
    background-color: white;;
}
.dot-2 {
    margin: 10px 4px 0px;
}
ul.fitish li h6 {
    font-size: 18px;
}
h4.fitish-mitish {
    font-size: 24px !important;
}
#partners .line , #two .line , #menu_slider_downs .line {
    margin-right: 36%;
}
#blogs .line {
    margin-left: 36%;
}
.mt-85 {
    margin-top: 85px;
}
@media only screen and (max-width: 640px) {
    #partners .line , #two .line , #menu_slider_downs .line {
        margin-right: 0% !important;
        margin-left: 0% !important;
    }
    #blogs .line {
        margin-right: 0% !important;
        margin-left: 12% !important;
    }
    .section_blogs .lts_blg_sm_image {
        margin-left: 0%;
        margin-bottom: 20px;
    }
    .section_blogs .lts_blogpost_item .lts_blg_text.padd-none, .section_blogs .lts_blg_sm_image {
        margin-right: 0% !important;
        margin-left: 0% !important;
    }
    .section_blogs .lts_blogpost_item .lts_blg_text h2 {
        font-size: 14px;
        padding-bottom: 1%;
    }
    .section_blogs .lts_blogpost_item .lts_blg_text p {
        font-size: 10px;
    }
    .section_blogs .lts_blogpost_item .lts_blg_text p {
        line-height: 20px;
    }
    h4.fitish-mitish {
        font-size: 18px !important;
    }
    ul.fitish li h6 {
        font-size: 14px;
    }
    .mt-85 {
        margin-top: 0px !important;
    }
    #menu_slider_downs a.my-100 {
        margin: 220px 0px !important;
    }
}
.sm-box-row {
    width: 100%;
    position: absolute;
    text-align: center;
    padding-right: 22px;
}
.sm-box {
    background:  rgb(165, 125, 36);
    margin: 0px 1px;
    padding: 1px 4px;
    border-radius: 5px;
    color: white;
}
.mr-lg-32 {
    margin-right: 32%;
}
@media only screen and (max-width: 640px) {
    .mr-lg-32 {
        margin-right: 3%;
    }
}
ul.navbar-nav .nav-item a.nav-link {
    font-weight: 500 !important;
}
div.one:hover div.third-hover-one {
    display: block;
    /* transition: 0.6s; */
}
div.two:hover div.third-hover-two {
    display: block;
    /* transition: 0.6s; */
}
div.tree:hover div.third-hover-tree {
    display: block;
    /* transition: 0.6s; */
}
div.four:hover div.third-hover-four {
    display: block;
    /* transition: 0.6s; */
}
.third-hover-one {
    position: absolute;
    top: 0px;
    right: 13px;
    width: 84%;
    display: none;
    text-align: center;
    padding: 40% 15%;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to top, #24441E , transparent);
    border-radius: 3px 30px 3px 3px;
}
.third-hover-two {
    position: absolute;
    top: 0px;
    left: 13px;
    width: 84%;
    display: none;
    text-align: center;
    padding: 40% 15%;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to top, #24441E , transparent);
    border-radius: 30px 3px 3px 3px;

}
.third-hover-tree {
    bottom: 50px;
    position: absolute;
    right: 13px;
    width: 84%;
    display: none;
    text-align: center;
    padding: 40% 15%;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to top, #24441E , transparent);
    border-radius: 3px 3px 30px 3px;
}
.third-hover-four {
    position: absolute;
    bottom: 0px;
    left: 13px;
    width: 84%;
    display: none;
    text-align: center;
    padding: 40% 15%;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-image: linear-gradient(to top, #24441E , transparent);
    border-radius: 3px 3px 3px 30px;
}
.white-box div {
    margin: 10px;
    height: 240px;
}
@media only screen and (max-width: 640px) {
    .white-box div {
        height: 144px;
    }
}
.section_partners .swiper-slide img {
    filter: grayscale(100%);
    /* filter: sepia(100%); */
}
.section_partners .swiper-slide a:hover img {
    filter: none;
}
.about_section h2{
    font-weight: bold;
}
.about_section p{
     font-weight: bold;
    font-size: 17px;
}
.about_section .btn_more{
    background-color: #295288;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    float: left;
 }
section .title{
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    direction: ltr;
}
section .title h3{
    margin-right: 10px;
    margin-left: 10px;
}
section .title::after,section .title::before{
     display: block;
     content: "";
     border-bottom: 0;
     -webkit-box-flex: 1;
     -ms-flex-positive: 1;
     flex-grow: 1;
     border-top: 1px solid #d4d4d4;
    margin-top: 16px;
}

#blog_section .btn_more {
    background-color: #818a91;
    display: inline-block;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin-right: calc(50% - 55px);
    margin-top: 22px;
}
.cmp-news-list__image-container {
    margin-bottom: 1.5rem;
}
.cmp-news-list__news-item__descriptionContainer {
    position: relative;
    display: flex;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.cmp-news-list__description--date {
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: #464646;
}
.news-list .cmp-news-list__description--newsType {
    line-height: 16px;
    margin: 0 8px 0 0;
    color: #0f0f0f;
}
.cmp-news-list__news-item{
    height: 350px;
    overflow: hidden;
}
.cmp-news-list__news-item:hover {
    background: #f5f5f5;
}
.cmp-news-list__news-item .cmp-news-list__news-item__contentContainer{
    padding: 10px;
}
.slick-slide-item .product{
    width: 200px;
    height: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #e7e6e6;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0 1px 0 rgba(51,51,51,0),0 2px 7px 0 rgba(51,51,51,0);
    position: relative;
    transition: box-shadow .2s ease;
    margin: 20px;
}
.slick-slide-item .product .se-rich-text{
    /*height: 100px;*/
    margin-top: 10px;
    overflow: hidden;
    font-family: 'Shabnam' !important;
}
.slick-slide-item .product:hover{
    box-shadow: 0 0 1px 0 rgba(51,51,51,.14),0 2px 7px 0 rgba(51,51,51,.2);
}

.slick-slide-item .product a::before {
    top: -1px;
    right: -1px;
    left: -1px;
    border-top: 3px solid #3dcd58;
}
.slick-slide-item .product a::before {
    content: "";
    position: absolute;
    opacity: 0;
    z-index: 20;
    transition: opacity .2s ease;

}
.slick-slide-item .product a:hover::before {
     opacity: 1;
}
@media screen and (min-width: 1440px){
    .cmp-teaser.teaser-txt-right .cmp-teaser__image .cmp-image {
        width: 75%;
        margin: 0 25% 0 0;
    }
}
@media screen and (min-width: 1024px){
    .cmp-teaser.teaser-txt-right .cmp-teaser__image .cmp-image {
        width: 80%;
        margin: 0 20% 0 0;
    }
}
@media screen and (min-width: 1440px){
    .cmp-teaser__image .cmp-image {
        padding: 56.25% 0 0 0;
        width: 75%;
        margin: 0 0 0 25%;
    }
}
@media screen and (min-width: 1024px){
    .cmp-teaser__image .cmp-image {
        padding: 56.25% 0 0 0;
        width: 80%;
        margin: 0 0 0 20%;
    }
}
.cmp-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
}
.cmp-picture picture, .cmp-picture img {
    width: 100%;
    display: block;
}
.cmp-image__image {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    object-fit: cover;
}
@media screen and (min-width: 1440px){
    .cmp-teaser.teaser-txt-right .cmp-teaser__content {
        margin: 0 7.125rem 0 0;
    }
}
@media screen and (min-width: 1024px){
    .cmp-teaser.teaser-txt-right .cmp-teaser__content {
        right: 0;
        left: auto;
    }
}
@media screen and (min-width: 1024px){
    .cmp-teaser__image + .cmp-teaser__content {
      /*  position: absolute;
        left: 0;
        top: 50%;*/
        transform: translate(0,-100%);
    }
}


@media screen and (min-width: 1440px){
    .cmp-teaser__content {
        width: 47%;
        margin: 0 0 0 7.125rem;
    }
}

@media screen and (min-width: 1024px){
    .cmp-teaser__content {
        width: 57%;
        padding: 4rem 3rem;
        margin: 0;
    }
}
.cmp-teaser__content::before {
    content: "";
    width: 3rem;
    height: .25rem;
    display: block;
    position: relative;
    margin-bottom: 16px;
    background-color: #ff000f;
}
.cmp-teaser__action-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px){
    .cmp-teaser__action-container {
        justify-content: flex-end;
    }
}
.cmp-teaser__content {
    position: relative;
    padding: 1.5rem;
    background-color: #fff;
}
@media screen and (min-width: 1440px){
    .cmp-teaser {
        margin: 0 0 10rem;
    }
}
@media screen and (min-width: 1024px){
    .cmp-teaser {
        margin: 0 0 6rem;
    }
}
@media screen and (min-width: 768px){
    .cmp-teaser {
        margin: 0 0 4rem;
    }
}
@media screen and (min-width: 1440px){
    .bounce-padding {
        left: -10.125rem;
        width: calc(100% + 20.25rem);
    }
}
@media screen and (min-width: 1024px){
    .bounce-padding {
        left: -2.75rem;
        width: calc(100% + 5.5rem);
    }
}
@media screen and (min-width: 768px){
    .bounce-padding {
        left: -2.25rem;
        width: calc(100% + 4.5rem);
        margin-bottom: -160px;
    }
}
.cmp-abb-cta__link--primary {
    border: 0 !important;
    background-color: #ff000f !important;
    color: white !important;
}
.cmp-abb-cta__link--primary {
    border: 0;
    background-color: #ff000f;
    color: white;
    border-radius: 24px;
    padding: 14px 24px;
    font-size: 16px;
    line-height: 20px;
    height: 48px;
}
.cmp-abb-cta__link {
    text-decoration-line: none;
    padding: .75rem 1rem;
    border-radius: 24px;
    display: inline-block;
    white-space: nowrap;
    font-size: 1rem;
    line-height: 1.25rem;
    font-family: ABBvoice-Medium;
    cursor: pointer;
}
.slick-slide-item .product img{
    height: 150px;
    object-fit: contain;
}


