/*font*/
@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.eot');
    src: url('../fonts/Gotham-Book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Book.woff2') format('woff2'),
    url('../fonts/Gotham-Book.woff') format('woff'),
    url('../fonts/Gotham-Book.ttf') format('truetype'),
    url('../fonts/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham-Bold.eot');
    src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Bold.woff2') format('woff2'),
    url('../fonts/Gotham-Bold.woff') format('woff'),
    url('../fonts/Gotham-Bold.ttf') format('truetype'),
    url('../fonts/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.eot');
    src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gotham-Medium.woff2') format('woff2'),
    url('../fonts/Gotham-Medium.woff') format('woff'),
    url('../fonts/Gotham-Medium.ttf') format('truetype'),
    url('../fonts/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gotham-Condensed-Medium';
    src: url('../fonts/GothamCondensed-Medium.eot');
    src: url('../fonts/GothamCondensed-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamCondensed-Medium.woff2') format('woff2'),
    url('../fonts/GothamCondensed-Medium.woff') format('woff'),
    url('../fonts/GothamCondensed-Medium.ttf') format('truetype'),
    url('../fonts/GothamCondensed-Medium.svg#GothamCondensed-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gotham-Condensed-Bold';
    src: url('../fonts/GothamCondensed-Bold.eot');
    src: url('../fonts/GothamCondensed-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamCondensed-Bold.woff2') format('woff2'),
    url('../fonts/GothamCondensed-Bold.woff') format('woff'),
    url('../fonts/GothamCondensed-Bold.ttf') format('truetype'),
    url('../fonts/GothamCondensed-Bold.svg#GothamCondensed-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gotham-Condensed-Book';
    src: url('../fonts/GothamCondensed-Book.eot');
    src: url('../fonts/GothamCondensed-Book.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamCondensed-Book.woff2') format('woff2'),
    url('../fonts/GothamCondensed-Book.woff') format('woff'),
    url('../fonts/GothamCondensed-Book.ttf') format('truetype'),
    url('../fonts/GothamCondensed-Book.svg#GothamCondensed-Book') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  
  
  /* // GENERAL COLORS // */
  
  .white {
      color: white;
  }
  
  .blue {
      color: #0096af;
  }
  
  .bg-gray {
      background-color: #969696;
  }
  
  .bg-blue {
      background-color: #0096af;
  }
  
  /* // GENERAL FONTS // */
  
  h1 {
      margin: 0;
      line-height: inherit;
  }
  
  /* // INDEX CSS // */
  .block {
      margin-top: 25px;
  }
  
  .block__text {
      min-height: 276px;
      padding: 20px !important;
      margin: 20px !important;
      background-color: #39bbcf;
  }
  
  .block__text h3 {
      color: white !important;
  }
  
  .category {
      padding: 0px;
  }
  
  .category a:hover img {
      opacity: 0.8;
      transition: .3s;
  }
  
  .category img {
      padding: 20px;
  }
  
  .category:nth-child(1) {
      padding-right: 10px;
  }
  
  .category:nth-child(2) {
      padding-left: 10px;
  }
  
  .category--wrapper {
      background-color: #eaeaea;
  }
  
  .category .category--header {
      box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
      padding: 8px 15px 0px;
      min-height: 60px;
  }
  
  
  /* Columns Start */
  
  @media (min-width: 768px) {
      .five-columns>.col-sm-2 {
          width: 20%;
      }
  }
  
  /* Columns End*/
  
  /* Feature Box Start */
  
  .feature-box {
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      min-height: 250px;
      margin: 20px 0px 20px;
  }
  
  .feature-box .item {
      text-align: center;
      padding: 10px 5px;
  }
  
  .feature-box .item img {
      background-color: white;
      border-radius: 50%;
      box-shadow: 0 6px 8px rgba(0, 0, 0, .3);
      width: 90px;
      height: 90px;
      z-index: 2;
      position: relative;
      padding: 12px;
      margin: 0px auto;
      top: 10px;
  }
  
  .feature-box .item:before {
      content: '';
      width: 110px;
      height: 110px;
      border-radius: 50%;
      box-shadow: 0 6px 8px rgba(0, 0, 0, .3);
      background-color: #fe671f;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
  }
  
  .feature-box .item.item--blue:before {
      content: '';
      width: 110px;
      height: 110px;
      border-radius: 50%;
      box-shadow: 0 6px 8px rgba(0, 0, 0, .3);
      background-color: #0096af;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
  }
  
  .feature-box .item:after {
      content: '';
      background: url(../images/icon-bottom-line.svg) no-repeat;
      width: 30px;
      min-height: 108px;
      position: absolute;
      z-index: 1;
      margin: 0px auto;
      left: 50%;
      transform: translateX(-50%);
      top: 120px;
  }
  
  .feature-box .item>ul>li {
      list-style: none;
  }
  
  .feature-box .item h5 {
      text-align: center;
      color: white;
      position: absolute;
      background: #959595;
      padding: 5px 0px 1px;
      line-height: normal;
      margin: 0;
      top: 40px;
      z-index: 3;
      min-width: 150px;
      letter-spacing: 0;
      cursor: pointer;
  }
  
  .feature-box .item.item--blue h5 {
      text-align: center;
      color: white;
      position: absolute;
      background: #0096af;
      padding: 5px 0px 1px;
      line-height: normal;
      margin: 0;
      top: 40px;
      z-index: 3;
      min-width: 150px;
      letter-spacing: 0;
      cursor: pointer;
  }
  
  /* Feature Box End*/
  
  /* Paddign & Margin */
  .p-0 {
      padding: 0 !important;
  }
  
  .m-0 {
      margin: 0 !important;
  }
  
  .vertical-centered {
  
      display: flex !important;
      justify-content: center;
      flex-direction: column;
  }
  
  /* Dropdown Start*/
  
  .dropdown {
      position: absolute;
      display: block;
  }
  
  .dropdown-content {
      display: none;
      position: relative;
      background-color: #f9f9f9;
      min-width: 200px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      padding: 12px 16px;
      z-index: 1;
      top: 69px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
  }
  
  .dropdown-content a {
      font-weight: bold;
      color: #969696;
      font-size: 14px;
      padding: 5px 0px;
      display: block;
      text-align: left;
      border-bottom: 1px solid #ccc;
  }
  
  .dropdown-content a:hover {
      color: #fe671f !important;
  }
  
  .dropdown-content a:last-child {
      border-bottom: 0;
  }
  
  .dropdown:hover .dropdown-content {
      display: block;
  }
  
  
  /* Buttons */
  
  a.button {
      flex: 1 1 auto;
      margin: 5px;
      text-align: center;
      transition: 0.4s;
      color: white;
      border-radius: 30px;
      width: auto;
      font-size: 25px;
      box-shadow: 0 6px 8px rgba(0, 0, 0, .3);
      white-space: normal;
      padding: 0px 20px;
      font-weight: 600;
      font-family: "proxima-nova-extra-condensed", sans serif;
  }
  
  a.button:hover {
      opacity: 0.9;
      color: white !important;
      text-decoration: none !important;
  }
  
  .button-orange {
      background-color: #ff671f;
      border: 2px solid white;
  }
  
  .button__position-lb {
      position: absolute;
      bottom: 30px;
      left: 25px;
  }
  
  .button__position-lt {
      position: absolute;
      top: 30px;
      left: 30px;
  }
  
  .button__position-lt-90 {
      position: absolute;
      top: 90px;
      left: 30px;
  }
  
  .button__position-rb {
      position: absolute;
      bottom: 30px;
      right: 25px;
      float: right;
  }
  
  /* Search Box */
  
  .search {
      width: 100%;
      position: relative;
      display: flex;
  }
  
  .searchTerm {
      border: 2px solid #ff671f;
      padding: 15px 10px !important;
      height: 20px;
      border-radius: 30px 0 0 30px;
      color: #9DBFAF;
      max-width: 220px;
      width: 100% !important;
      min-width: 120px;
  }
  
  .searchTerm:focus {
      color: #00B4CC;
  }
  
  .searchButton {
      width: 40px;
      background: #ff671f;
      text-align: center;
      color: #fff;
      cursor: pointer;
      font-size: 16px;
      padding: 10px;
      border-radius: 50%;
      position: relative;
      right: 21px;
      top: -2px;
  }
  
  /*Resize the wrap to see the search bar change!*/
  .wrap {
      width: 100%;
      position: absolute;
      top: 77%;
      left: 50%;
      transform: translateX(-39%);
  }
  
  /* Devices */
  
  @media screen and (max-width:767px) {
  
      .category:nth-child(1) {
          padding-right: 0px;
      }
  
      .category:nth-child(2) {
          padding-left: 0px;
          margin-top: 20px
      }
  
      .feature-box {
          display: flex;
          flex-direction: column;
          justify-content: center;
          min-height: 250px;
          margin: 10px 25px !important;
          align-items: center;
      }
  
      .feature-box .item {
          border-right: 0;
          border-bottom: 1px solid #ccc;
          min-height: 300px;
          width: 100%;
margin-top:40px;
      }
  
      .dropdown {
          position: relative;
          display: block;
          max-width: 250px;
          margin: 0px auto;
  
      }
  
      .dropdown-content {
          position: relative;
          top: 40px;
  display: block;
      }
  
      .feature-box .item h5 {
          position: relative;
      }
    .feature-box .item.item--blue h5 {
          position: relative;
      }
  }
  
  
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .carousel-inner .item{
  width: 100%!important;
  }
  .item{
  width: 20%!important;
  }
  
  .item--blue{
  width: 20%!important;
  }
  .searchTerm {
      border: 2px solid #ff671f;
      padding: 10px 10px !important;
      height: 35px;
      border-radius: 30px 0 0 30px;
      color: #9DBFAF!important;
      max-width: 220px;
      width: 100% !important;
      min-width: 120px;
  }
  
  }
  
  .gotham {
      font-family: "Gotham-Condensed-Bold", sans-serif;
      font-size: 35px;
  }
    
    .header-title {
      font-size: 38px;
      padding: 0 10px 0 5px;
    }