.serv__icon {
    object-fit: contain;
}

/* flipped card */

.flip {
    transition: all .6s ease;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    cursor: pointer;
    min-height: 250px;
  }
  .back,
  .front{
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: RotateX(0deg);
    -moz-transform: RotateX(0deg);
    -webkit-transform: RotateX(0deg);
    -webkit-font-smoothing: antialiased;
  }

  .front{
    position: absolute;
    top: 0;
  }
  
  .back{
    transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
  }
  
  .flipped {
    transform: perspective(600px) rotateY(-180deg);
    -moz-transform: perspective(600px) rotateY(-180deg);
    -webkit-transform: perspective(600px) rotateY(-180deg);
  }

  .card_header {
    height: 35%;
    padding: 10px 20px 20px;
  }

  .sidecontrol {
    flex-basis: 8%;
  }

/* feedback form */

.sideform {
  position: absolute;
  height: 100%;
  right: 0;
  top: 350px;
}

.moved {
    z-index: 9999;
    right: 0;
    transform: translateX(250px);
    transition: all 1.0s; }
    .moved.is-active {
      transform: translateX(0px);
    }

#form-btn {
  border: solid 1px rgb(214, 214, 214);
  border-radius: 50%;
  position: absolute;
  right: 100%;
  height:50px;
  width: 50px; }
    #form-btn i {
        color: #0d3050;
    }

.feedback {
    width: 250px;
}


/* mobile toggle menu */

.hamb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
    height: 16px;
    cursor: pointer; }
    .hamb i {
      position: absolute;
      top: 50%;
      right: 0;
      width: 100%;
      height: 1px;
      margin-top: -1px;
      background-color: #0d3050;
      -webkit-transition: background 0.3s ease;
      transition: background 0.3s ease; }
      .hamb i:before, .hamb i:after {
        content: "";
        position: absolute;
        top: -7px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #0d3050;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
      .hamb i:after {
        top: 7px; }
    .hamb.is-active i {
      width: 90%;
      background-color: transparent;
      -webkit-transition: background 0.1ms ease;
      transition: background 0.1ms ease; }
      .hamb.is-active i:before {
        background-color: #000;
        -webkit-transform: translateY(7px) rotate(-45deg);
                transform: translateY(7px) rotate(-45deg); }
      .hamb.is-active i:after {
        background-color: #000;
        -webkit-transform: translateY(-7px) rotate(45deg);
                transform: translateY(-7px) rotate(45deg); }

  @media (min-width: 1200px) {
    .banner {
        width: 100%;
    }
  }

  @media only screen and (max-width: 767px) {
    .head__menu {
        padding: 0;
        transform: translateY(1000px);
        -webkit-transition: transform 0.6s ease;
        transition: transform 0.6s ease;
        z-index: 2;
        position: fixed;
        bottom: 40px;
        left: 10px;
        width: calc(100% - 20px);
        padding-bottom: 10px;
        margin-right: 0;
        overflow-y: auto;
        border: solid 1px rgb(212, 212, 212);
        box-shadow: 5px 0rem 14px 0px #02020269;
        }
        .head__menu.is-active {
            transform: translateY(0);
            -webkit-transition: transform 0.6s ease;
            transition: transform 0.6s ease; }
        }

@media (min-width: 992px) {
  .row-cols-lg-2>* {
    flex: 0 0 auto;
    width: 48%;
  }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 200px;
    }
    .sidecontrol {
        flex-basis: 0%;
    }
}