.tabs-animated {
    overflow: hidden;
    padding-top: 75px;
}
.tab-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 0;
    margin: 0 0 65px;
}
.tab-switcher li {
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    position: relative;
    margin-right: 10px;
}
.tab-switcher li:last-child {
margin-right: 0;
}
.tab-switcher li:hover a, .tab-switcher li a:hover {color: #1485c4;border-bottom: 4px solid #1485c4;}
.tab-switcher li.active:after {}
.tab-switcher li {
    list-style: none;
}
.tab-switcher li a {
    color: #000;
    cursor: pointer;
    font-size: 17px;
    text-align: left;
    display: flex;
    justify-content: center;
    width: 100%;
    text-decoration: none !important;
    transition: all 0.3s ease 0s;
    position: relative;
    text-transform: uppercase;
    padding: 0 15px 15px;
    align-items: center;
    font-family: 'Montserrat';
    border-bottom: 4px solid transparent;
    font-weight: 300;
}
.tab-switcher li.active a {
    cursor: default;
    color: #1485c4;
    border-bottom: 4px solid #1485c4;
}
.tab-content>.tab-pane {
    display: none;
    margin: 0;
    /* overflow: hidden; */
    padding: 0;
}

.tab-content div {
    z-index: 1;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    transition: all linear 0.3s;
}
.tab-content>.active {
    display: block;
}

/* Keyframes */

@-webkit-keyframes content-in {
  0% {
    opacity: 0;
        transition: 0.8s all ease;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
       transition: 0.8s all ease;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
}

@keyframes content-in {
  0% {
    opacity: 0;
 transition: 0.8s all ease;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transition: 0.8s all ease;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
}
}

@-webkit-keyframes content-in-box {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes content-in-box {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.showroombloc {
    -webkit-animation: content-in-box 1s ease-in-out;
    animation: content-in-box 1s ease-in-out;
}

@media screen and (max-width: 1090px) {
.tab-switcher li a {
padding: 0 25px;
}
}
@media screen and (max-width: 800px) {
.tabs-animated {
    overflow: hidden;
    padding-top: 55px;
}
.tab-switcher li a {
    padding: 0 15px;
    font-size: 14px;
}
}

@media screen and (max-width: 767px) {
.tab-switcher {
    height: auto;
    padding: 0 15px;
    justify-content: center;
}
.tab-switcher li {
    list-style: none;
}
.tab-switcher li::after {
    right: 0;
    top: 35px;
    left: 0;
    margin: 0 auto;
}
.tab-switcher li a {
    height: 50px;
}
}
