@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  background-color: #f5f5f5;
  font-size: 62.5%;
  scroll-behavior: smooth; }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 60%; } }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 55%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 55%; } }
  @media only screen and (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media only screen and (max-width: 25em) {
    html {
      font-size: 45%; } }

body {
  display: grid;
  grid-template-columns: 1fr 120rem 1fr; }
  @media only screen and (max-width: 75em) {
    body {
      grid-template-columns: 1fr; } }

.header {
  grid-column: 1 / -1; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 5;
  top: 0;
  right: 0;
  background-color: #181117;
  overflow-x: hidden;
  transition: 0.1s;
  padding-top: 15rem;
  font-family: "Montserrat", sans-serif;
  text-align: right; }

.sidenav a {
  padding: 0 0.5rem 2rem 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 2rem;
  color: #818181;
  display: block;
  transition: 0.3s; }

.sidenav a:hover {
  color: #f1f1f1; }

.sidenav .closebtn {
  position: absolute;
  top: 0.5rem;
  right: 3.5rem;
  font-size: 5rem; }

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px; }
  .sidenav a {
    font-size: 18px; } }

.sticky {
  position: fixed;
  width: 100%;
  z-index: 3; }

.navbar {
  transition: all 0.5s;
  background-color: #ececec;
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  padding: 1rem 1rem 1rem 3rem;
  box-shadow: 0rem 0.1rem 0.3rem rgba(24, 17, 23, 0.2); }
  @media only screen and (max-width: 37.5em) {
    .navbar {
      padding: 1rem; } }
  .navbar__logo {
    height: 5rem; }
    @media only screen and (max-width: 37.5em) {
      .navbar__logo {
        height: 4.5rem; } }
  .navbar__button {
    margin: 0 3rem 0 1rem;
    font-size: 3rem;
    background-color: transparent;
    align-self: center; }
    @media only screen and (max-width: 37.5em) {
      .navbar__button {
        margin: 0 1rem 0 1rem; } }

.btn-whatsapp {
  align-self: center;
  padding: 1rem 2rem;
  margin-right: 1rem;
  background-color: #1ebea5;
  color: #fff;
  font-size: 2.5rem;
  border-radius: 4rem;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }
  @media only screen and (max-width: 37.5em) {
    .btn-whatsapp {
      font-size: 2rem;
      width: 17rem; } }
  .btn-whatsapp:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 0.2rem rgba(24, 17, 23, 0.4);
    background-color: rgba(30, 190, 165, 0.8); }
  .btn-whatsapp:active {
    transform: translateX(0);
    box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }

button {
  border: none;
  cursor: pointer;
  outline: none; }

.section__2 {
  grid-column: 1 / -1;
  display: grid;
  justify-self: center; }
  .section__2__button {
    width: 100%;
    background-color: #f3bc2b;
    padding: 2rem 3rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }
    .section__2__button-2 {
      background-color: #de193a;
      color: #fff !important;
      text-align: center;
      margin-bottom: 4rem; }
      .section__2__button-2:hover {
        background-color: rgba(222, 25, 58, 0.9) !important;
        transform: translateY(-0.2rem);
        box-shadow: 0 0.4rem 0.2rem rgba(24, 17, 23, 0.4);
        background-color: #f3bc2b; }
      .section__2__button-2:active {
        background-color: #de193a !important;
        transform: translateX(0);
        box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }
    @media only screen and (max-width: 37.5em) {
      .section__2__button {
        padding: 2rem; } }
    .section__2__button:hover {
      transform: translateY(-0.2rem);
      box-shadow: 0 0.4rem 0.2rem rgba(24, 17, 23, 0.4);
      background-color: #f3bc2b; }
    .section__2__button:active {
      transform: translateX(0);
      box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }

.link {
  text-decoration: none;
  color: #333;
  font-family: "Montserrat", sans-serif;
  display: grid; }
  .link-2 {
    color: #fff;
    justify-self: center;
    text-decoration: none;
    margin-bottom: 4rem; }

.section {
  grid-column: 2 / 3;
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 5rem 2rem 2rem 2rem; }
  @media only screen and (max-width: 75em) {
    .section {
      grid-column: 1 / -1;
      margin: 0; } }
  @media only screen and (max-width: 56.25em) {
    .section {
      padding: 6rem 2rem; } }
  .section__title {
    grid-column: 1 / -1;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    letter-spacing: -0.1rem;
    font-size: 4rem;
    margin-bottom: 5rem; }
    @media only screen and (max-width: 37.5em) {
      .section__title {
        font-size: 3.5rem;
        padding-top: 5rem; } }

.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4rem;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif; }
  @media only screen and (max-width: 75em) {
    .form {
      grid-gap: 1.5rem; } }
  @media only screen and (max-width: 56.25em) {
    .form {
      grid-gap: 1.5rem;
      grid-template-columns: 1fr;
      padding-right: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .form {
      padding-right: 2rem; } }
  .form__grid {
    display: grid;
    grid-template-columns: 5.5rem repeat(6, 1fr);
    grid-template-rows: repeat(6, max-content);
    grid-gap: 1rem;
    padding-right: 2rem; }
    @media only screen and (max-width: 75em) {
      .form__grid {
        grid-column-gap: 0.5rem; } }
    @media only screen and (max-width: 56.25em) {
      .form__grid {
        padding-right: 0; } }
    .form__grid--circle {
      grid-row: 1 /-1;
      display: grid;
      align-self: start;
      transform: translateY(-0.5rem);
      align-content: center;
      justify-content: center;
      grid-gap: 0.5rem;
      height: 6rem;
      width: 6rem;
      background-color: #f3bc2b;
      color: #de193a;
      font-size: 4rem;
      font-weight: 600;
      border-radius: 4rem;
      box-shadow: 0 0 1rem rgba(24, 17, 23, 0.2);
      z-index: 2; }
    .form__grid--description {
      background-color: #f3bc2b;
      color: #333;
      display: grid;
      align-items: center;
      align-self: center;
      padding-left: 4rem;
      border-radius: 4rem;
      grid-column: 2 / -1;
      width: 110%;
      height: 5rem;
      transform: translateX(-4rem);
      z-index: 1;
      font-size: 2rem;
      font-weight: 400; }
      @media only screen and (max-width: 75em) {
        .form__grid--description {
          padding-left: 5rem; } }
      @media only screen and (max-width: 56.25em) {
        .form__grid--description {
          width: 106%; } }
      @media only screen and (max-width: 37.5em) {
        .form__grid--description {
          width: 110%; } }
  .form__label {
    font-size: 2rem;
    grid-column: 1 / -1; }
  .form__button {
    grid-column: 1 / span 3;
    grid-row: 1 / 2;
    padding: 1rem 2rem;
    margin-right: 2rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: left;
    align-self: center;
    background-color: #ececec;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4);
    color: #333; }
    @media only screen and (max-width: 25em) {
      .form__button {
        padding: 1rem;
        font-size: 2rem; } }
    .form__button-big {
      background-color: #f3bc2b;
      grid-column: 1 / -1;
      font-size: 2rem;
      display: grid;
      justify-self: end;
      margin: 0;
      font-family: "Montserrat", sans-serif; }
      @media only screen and (max-width: 56.25em) {
        .form__button-big {
          justify-self: center;
          padding: 2rem 3rem; } }
    .form__button--active {
      background-color: #f3bc2b; }
    .form__button--icon {
      color: #de193a;
      font-size: 2.5rem;
      float: right;
      margin-right: 1rem; }
      @media only screen and (max-width: 25em) {
        .form__button--icon {
          margin-right: 0rem;
          font-size: 2.5rem; } }
    .form__button-right {
      grid-column: 4 / span 3;
      grid-row: 1 / 2; }
    .form__button:hover {
      transform: translateY(-0.2rem);
      box-shadow: 0 0.4rem 0.2rem rgba(24, 17, 23, 0.4);
      background-color: #f3bc2b; }
    .form__button:active {
      transform: translateX(0);
      box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }
  .form__group {
    display: grid;
    grid-column: 2 / -1;
    grid-row: 2 / -1; }
  .form__line {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 0.5rem;
    margin-bottom: 0.5rem; }
    .form__line--input {
      border-radius: 1rem;
      border: none;
      background-color: #ececec;
      padding: 1rem 1.5rem;
      outline: none;
      font-size: 2rem;
      font-family: "Montserrat", sans-serif;
      box-sizing: border-box;
      transition: all 0.4s;
      width: 100%; }
      .form__line--input-country {
        grid-column: 1 / 5; }
      .form__line--input-cep {
        grid-column: 5 / 7; }
      .form__line--input-logradouro {
        grid-column: 1 / span 5; }
      .form__line--input-num {
        grid-column: 6 / span 2; }
      .form__line--input-complemento {
        grid-column: 1 / -1; }
      .form__line--input-bairro {
        grid-column: 1 / 4; }
      .form__line--input-cidade {
        grid-column: 4 / 6; }
      .form__line--input-uf {
        grid-column: 6 / span 2; }
      .form__line--input-qtd {
        grid-column: 1 / 4; }
      .form__line--input-peso {
        grid-column: 4 / 7; }
      .form__line--input-altura {
        grid-column: 1 / span 2; }
      .form__line--input-largura {
        grid-column: 3 / span 2; }
      .form__line--input-compr {
        grid-column: 5 / span 2; }
      .form__line--input-textarea {
        grid-column: 1 / -1;
        resize: none;
        font-family: "Montserrat", sans-serif; }
      .form__line--input-nomeCompleto {
        grid-column: 1 / -1; }
      .form__line--input-email {
        grid-column: 1 / -1; }
      .form__line--input-celular {
        grid-column: 1 / span 4; }
      .form__line--input-error {
        border: 0.2rem solid #de193a; }

.label {
  font-size: 1.5rem;
  transform: translate(0.5rem, 0.3rem); }
  .label-qtd {
    grid-column: 1 / 4; }
  .label-peso {
    grid-column: 4 / 7; }
  .label-altura {
    grid-column: 1 / span 2; }
  .label-largura {
    grid-column: 3 / span 2; }
  .label-compr {
    grid-column: 5 / span 2; }
  .label-textarea {
    grid-column: 1 / -1; }

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 19px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  grid-column: 1 / span 6;
  margin-top: 1rem; }
  @media only screen and (max-width: 37.5em) {
    .container {
      font-size: 2rem; } }

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee; }

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #de193a; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem; }
  @media only screen and (max-width: 37.5em) {
    .services__grid {
      grid-template-columns: repeat(2, 1fr); } }
  .services__grid--img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.2);
    transition: all 0.3s; }
    .services__grid--img:hover {
      transform: translateY(-0.2rem) scale(1.01);
      box-shadow: 0 0.2rem 2rem rgba(24, 17, 23, 0.4); }

.footer {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 21rem 1fr 1fr;
  padding: 4rem 3rem 4rem 2rem;
  background-color: #ececec;
  font-family: "Montserrat", sans-serif;
  color: #333;
  align-items: center;
  margin-top: 2rem; }
  @media only screen and (max-width: 56.25em) {
    .footer {
      grid-template-columns: 1fr; } }
  @media only screen and (max-width: 37.5em) {
    .footer {
      grid-template-columns: 1fr; } }
  .footer__logo {
    height: 5rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo {
        justify-self: center;
        margin-bottom: 2rem; } }
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-self: center;
    grid-gap: 0.5rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__grid {
        grid-template-columns: 1fr;
        justify-self: center;
        text-align: center; } }
  .footer__text {
    justify-self: start;
    font-size: 1.5rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__text {
        display: none; } }
  .footer__content {
    font-size: 1.5rem;
    padding-right: 1rem;
    padding-left: 1rem; }
    @media only screen and (max-width: 37.5em) {
      .footer__content {
        justify-self: center; } }
  .footer__icon {
    font-size: 1.5rem;
    color: #355387;
    justify-self: center; }
    @media only screen and (max-width: 56.25em) {
      .footer__icon {
        display: none; } }

.accordion {
  cursor: pointer;
  padding: 2rem;
  margin-top: 1rem;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.5s;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  border-radius: 0.5rem;
  background-color: #ececec;
  box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.2); }
  @media only screen and (max-width: 37.5em) {
    .accordion {
      font-size: 2rem; } }
  .accordion:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 0.2rem rgba(24, 17, 23, 0.4); }
  .accordion:active {
    transform: translateX(0);
    box-shadow: 0 0.2rem 0.2rem rgba(24, 17, 23, 0.4); }

.panel {
  padding: 0 1.8rem;
  font-size: 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-family: "Montserrat", sans-serif; }
  .panel__paragraph {
    padding: 2rem 0 4rem 0; }

.message {
  display: none;
  background-color: #de193a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  padding: 2rem;
  text-align: center;
  z-index: 3;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0rem 0rem 2rem rgba(24, 17, 23, 0.4); }

.ism-slider > ol,
.ism-slider > ol > li,
.ism-slider > ol > li > img {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0; }

.ism-slider {
  overflow: hidden;
  position: relative;
  padding: 0 !important;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box; }
  @media only screen and (max-width: 37.5em) {
    .ism-slider {
      display: none; } }

.ism-slider .ism-slides {
  list-style: none;
  position: absolute;
  height: 100%;
  top: 0;
  padding: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1; }

.ism-slider li.ism-slide {
  height: 100%;
  overflow: hidden;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #d5d5d5;
  text-align: center; }

.ism-slider .ism-img-frame {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%; }

.ism-slider a.ism-image-link {
  position: absolute;
  color: inherit;
  text-decoration: none;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ism-slider .ism-img {
  display: block;
  border: none;
  position: absolute;
  pointer-events: none; }

.ism-button,
.ism-pause-button {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
  text-align: center;
  z-index: 6;
  cursor: pointer;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center center; }

.ism-pause-button {
  display: none;
  left: 50%; }

.ism-slider:hover .ism-pause-button {
  display: block; }

.ism-caption {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 1em;
  text-shadow: none;
  line-height: 1.2em;
  padding: 0.25em 0.5em;
  width: auto;
  height: auto;
  text-align: center;
  visibility: hidden; }

a.ism-image-link .ism-caption,
a.ism-caption {
  text-decoration: none;
  font-weight: normal; }

a.ism-caption:hover {
  text-decoration: underline; }

.ism-caption-0 {
  z-index: 3; }

.ism-caption-1 {
  z-index: 4; }

.ism-caption-2 {
  z-index: 5; }

.ism-radios {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 1px; }

.ism-slider .ism-radios {
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 6;
  bottom: 5px;
  left: 0;
  right: 0;
  width: auto;
  background-color: rgba(255, 255, 255, 0);
  padding: 0 7px;
  height: 0;
  overflow: visible; }

.ism-slider .ism-radios.ism-radios-as-thumbnails {
  bottom: 5px; }

.ism-radios li {
  position: relative;
  display: inline-block;
  margin: 0 3px;
  padding: 0; }

.ism-radios input.ism-radio {
  display: none; }

.ism-radios label {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  text-decoration: none;
  cursor: pointer; }

.ism-radios-as-thumbnails label {
  -webkit-background-size: 120% auto;
  -moz-background-size: 120% auto;
  -o-background-size: 120% auto;
  background-size: 120% auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0.8; }

.ism-radios-as-thumbnails label:hover {
  border: 2px solid #fff;
  opacity: 1; }

.ism-radios-as-thumbnails li.active label {
  border: 2px solid white;
  opacity: 1; }

p.ism-badge {
  margin: 0 auto;
  text-align: right;
  font-size: 10px;
  padding-top: 1px;
  color: #ccc;
  font-family: sans-serif;
  font-weight: normal; }

p.ism-badge a.ism-link {
  color: inherit;
  text-decoration: none;
  margin-right: 0.25em; }

p.ism-badge a.ism-link:hover {
  color: #aaa;
  text-decoration: underline; }

.ism-zoom-in {
  -webkit-animation: zoomin 0.81s linear 1;
  animation: zoomin 0.81s linear 1; }

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(3);
    transform: scale(3); } }

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    -webkit-transform: scale(3);
    transform: scale(3); } }

@-webkit-keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translate(-1200px, 0);
    transform: translate(-1200px, 0); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@keyframes slidein {
  0% {
    -webkit-transform: translate(-1200px, 0);
    transform: translate(-1200px, 0); }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); } }

@-webkit-keyframes popin {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

@keyframes popin {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); } }

.ism-zoom-pan {
  -webkit-animation: zoompan 20s linear 1;
  animation: zoompan 20s linear 1; }

@-webkit-keyframes zoompan {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1); }
  50% {
    -webkit-transform: translate(-5%, -5%) scale(1.3);
    transform: translate(-5%, -5%) scale(1.3); }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1); } }

@keyframes zoompan {
  0% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1); }
  50% {
    -webkit-transform: translate(-5%, -5%) scale(1.3);
    transform: translate(-5%, -5%) scale(1.3); }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1); } }

.ism-zoom-rotate {
  -webkit-animation: zoomrotate 20s linear 1;
  animation: zoomrotate 20s linear 1; }

@-webkit-keyframes zoomrotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1); }
  50% {
    -webkit-transform: rotate(-5deg) scale(1.3);
    transform: rotate(-5deg) scale(1.3); }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1); } }

@keyframes zoomrotate {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1); }
  50% {
    -webkit-transform: rotate(-5deg) scale(1.3);
    transform: rotate(-5deg) scale(1.3); }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1); } }

/* SLIDER */
#my-slider {
  width: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px; }

#my-slider-ism-badge {
  width: 100%; }

#my-slider:before {
  content: '';
  display: block;
  padding-top: 28%; }

#my-slider .ism-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%; }

#my-slider .ism-button {
  display: block;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  background-size: 16px 16px;
  top: 50%;
  margin-top: -25px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  visibility: visible; }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-button {
      background-color: transparent;
      width: 30px;
      height: 30px;
      margin-top: -3rem; } }

#my-slider .ism-button-prev {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEX///////////////////////////////////////////9/gMdvAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAAuUAAALlARv+XnsAAABUSURBVEjH7dYxCgAgEAPB8weX/39WFBtBbsFSY2sYyzXicDLq0wQDKQGQAKiJAZTEvC+IRgPBYAEyYOB1AAf4hAkTXxB5nySOGmaRw4pp5rhv34MOQwscJ7/MrxQAAAAASUVORK5CYII=);
  left: 10px; }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-button-prev {
      left: 1rem; } }

#my-slider .ism-button-next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEX///////////////////////////////////////////9/gMdvAAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAAuUAAALlARv+XnsAAABYSURBVEjH7dYxDoAwDEPR5Ab1/S8LVEgsyL8SG3XWWK/dnKpnumA0/L4lAOSJE/DEtXfEBBxxBwYFBH8IEWJbggL4RIAAPwFWC+VDqXEtYrFyNWO5v58HB4q9HAkl7KTYAAAAAElFTkSuQmCC);
  right: 10px; }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-button-next {
      right: 1rem; } }

#my-slider .ism-pause-button {
  width: 50px;
  height: 50px;
  background-size: 16px 16px;
  top: 50%;
  margin-top: -25px;
  border-radius: 25px;
  margin-left: -25px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAc0lEQVR42u3SsQkAIAxFQeP+O38XsBKxMPfKgCQcjqHe1W6YJFeXVNXJuxd3zO4/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAID0RwuEoAh40yYcSQAAAABJRU5ErkJggg==); }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-pause-button {
      background-color: transparent; } }

#my-slider .ism-pause-button.ism-play {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAs6AAALOgFkf1cNAAACy0lEQVR42uWbS2hUVxyHv78PLKKiFgXBiIgvBEVKwZWL4kJrF7oQCSpoAlYkuhCyq4hQ2goqSBFBsNBCoXShbgp15XsTQSGKqKj1QdTYFCVQiuDic5FcGkQhj0nm3vl/6+Ge+X3zO2fumTkXhoi6S51NVtQbapfallVAh//Toc7KLED1jbpPnZJVQMF99fPMAgqOqZ9mFqD6UP06s4CC8+r0MucZN8rX/wJ4pu5VP8nYgIHcU5dna8BAFgM31e8rvUiOoAHvt2FHZgEFf6iTs0yBD/EV0K3uVidkFAAwFTgB3FKXZBRQsBS4q+5XZ2YUUPAtcEVtzioAYBnwm/q7OimjgILNwAt1Z1YBADOAk+ptdUFGAQDRPy0equ213GBVRcBADgOX1Y1ZBQAsB86qP4/0BqqqAgq292+3W7IKAJgNnFI71XkZBRQ5VgBP1DZ1WjYBAzkOXFLXZhUAsBI4p55Qx2cUULAbeKxuyyoAYC7wi3pdnZNRQJHzs/5FslWdmk1AwUTgJ+Ciui6jAACBWcDfGQX0At8A8yPiBsCEROHPA80R0ZNtEXwKtETEmvfDZ2jAIeDHiHjxsRc0ogCBl8DGiOjIdiv8H3AQaBpM+EZrwFVgU0S8zLYd7gLaImL1UMM3QgOOAUcjomu4F6iqgH+AzRFxoRabhCrxlr6/zppqEb5qDbgGbIiI7lpvE8vOc6A9IlbVOnwVGnAS+CEinozWAGUV8BrYGhF/jvZAZZwCh4B5YxG+bA3oBNZHxPOxHLQMDegG9kfEyrEOX4YG/AociIhH9XoD9RLQC7RGxJl6168eU+Aofb/JnSnB9BvTBtwBvhzN7/SyNqAH+C4ilpUt/LAY4lnh0+pCGolBCuhVt9CIDPKhqco8WVrLRfAvYG1EPKjSB1qLRfAVcARYVLXwtZgC5+pxxL3eAq6p/47kaFrVBexRmxolzzsZ+iOF4pXTWQAAAABJRU5ErkJggg==); }

#my-slider .ism-button:hover {
  background-color: rgba(0, 0, 0, 0.6); }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-button:hover {
      background-color: rgba(0, 0, 0, 0.4); } }

#my-slider .ism-pause-button:hover {
  background-color: rgba(0, 0, 0, 0.6); }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-pause-button:hover {
      background-color: rgba(0, 0, 0, 0.4); } }

#my-slider .ism-radios {
  display: block;
  height: 20px;
  text-align: center; }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-radios {
      height: 10px; } }

#my-slider .ism-radios label {
  width: 15px;
  height: 15px;
  border-radius: 10px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.5); }
  @media only screen and (max-width: 37.5em) {
    #my-slider .ism-radios label {
      width: 10px;
      height: 10px; } }

#my-slider .ism-radios li.active label {
  background-color: white; }

#my-slider .ism-radios label:hover {
  background-color: rgba(255, 255, 255, 0.8); }

/* SLIDES */
#my-slider .ism-slide-0 .ism-img-frame {
  width: 100%; }

#my-slider .ism-slide-0 .ism-img {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

#my-slider .ism-slide-1 .ism-img-frame {
  width: 100%; }

#my-slider .ism-slide-1 .ism-img {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

#my-slider .ism-slide-2 .ism-img-frame {
  width: 100%; }

#my-slider .ism-slide-2 .ism-img {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/* CAPTIONS */
#my-slider .ism-slide-0 .ism-caption-0.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-0 .ism-caption-1.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-0 .ism-caption-2.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-1 .ism-caption-0.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-1 .ism-caption-1.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-1 .ism-caption-2.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-2 .ism-caption-0.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-2 .ism-caption-1.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-2 .ism-caption-2.ism-caption-anim {
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s; }

#my-slider .ism-slide-0 .ism-caption-0 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 10%;
  left: 5%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-0 .ism-caption-1 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 60%;
  left: 40%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-0 .ism-caption-2 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 20%;
  left: 60%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-1 .ism-caption-0 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 10%;
  left: 5%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-1 .ism-caption-1 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 60%;
  left: 40%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-1 .ism-caption-2 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 20%;
  left: 60%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-2 .ism-caption-0 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 10%;
  left: 5%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-2 .ism-caption-1 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 60%;
  left: 40%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

#my-slider .ism-slide-2 .ism-caption-2 {
  font-size: 1.25em;
  font-family: sans-serif;
  position: absolute;
  top: 20%;
  left: 60%;
  border-radius: 4px;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7); }

.invisible {
  display: none; }
