
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
  border: inherit !important;
}

::-moz-selection {
  background-color: rgba(255, 102, 51,.9);
}

::selection {
  background-color: rgba(255, 102, 51,.9);
}

a {
  color: #222;
}

a:hover {
  text-decoration: none;
  color: #222;
}

p {
  margin: 0;
}

.row {
  overflow: hidden;
}

/* HEADER-START
=============== */

header {
  position: fixed;
  z-index: 1000;
  box-sizing: border-box;
}

.header-wrap {
  position: relative;
  width: 100vw;
  height: 100px;
  height: auto;
  padding: 0 7% 0 5%;
  margin: 10px 0 10px 10px;
  transition: all 1000ms ease;
  display: flex;
  justify-content: space-between;
}

.header-light {
  background-color: #FFF;
}

/* @media (min-width: 0) {

  .header-wrap {
    padding-left: 2.5%;
  }

}

@media (min-width: 576px) {

  .header-wrap {
    padding-left: 2%;
  }

}

@media (min-width: 768px) {

  .header-wrap {
    padding-left: 1.2%;
  }

}

@media (min-width: 992px) {

  .header-wrap {
    padding-left: 1%;
  }

} */

/* LOGO-START
============= */

#home-logo {
  transition: all 1000ms linear;
  width: auto;
}

.logo {
  position: absolute;
  height: 60px;
  min-width: 50%;
  line-height: 98px;
  left: 0;
  top: 0;
  transition: all 500ms linear;
  z-index: 10;
  display: inline-block;
  margin-left: 5%;
}

.logo-img {
  width: 50px;
  height: 50px;
  line-height: 98px;
  transition: all 500ms ease-in-out;
  z-index: 10;
  margin-right: 15%;
}

.logo-splus {
  transform: scale(.65);
}

/* @media (min-width: 0) {
  .logo-img {
    margin-right: 7%;
  }
}

@media (min-width: 420) {
  .logo-img {
    margin-right: 10%;
  }
}

@media (min-width: 850px) {
  .logo-img {
    margin-right: 13%;
  }
}

@media (min-width: 1000px) {
  .logo-img {
    margin-right: 20%;
  }
} */

.logo-transparent, .logo-scroll {
  transition: all 500ms ease-in-out;
}

/* LOGO-END
=========== */

/* NAV-START
============ */

.light {
  color: #FFF;
}

.dark {
  color: #333;
}

nav {
  z-index: 1000;
}

.nav-elements {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  height: 100px;
  margin: 0;
  font-size: .7rem;
  transition: 1s ease;
}

.nav-element {
  list-style: none;
  line-height: 100px;
  margin: 0 10px;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.home-nav-item, .home-nav-item-search {
  text-transform: uppercase;
  padding-bottom: 5px;
  transition: 1s ease;
  border: none;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.home-nav-item::before {
  content: '';
  height: 0rem;
  width: 0;
  border-left: 1px solid rgba(255,102,51,.8);
  transition: all .5s linear;
  margin-right: 5px;
}

.home-nav-item::after {
  content: '';
  height: 0rem;
  width: 0;
  border-left: 1px solid rgba(255,102,51,.8);
  transition: all .5s linear;
  margin-left: 5px;
}

.nav-element:hover .home-nav-item:before, .nav-element .home-nav-item:hover:after {
  width: 1px;
  height: .6rem;
}

.nav-element:hover .home-nav-item, .nav-element:hover .home-nav-item-search {
  cursor: pointer;
  color: #FF6633;
}

.nav-search {
  height: 20px;
  width: 100px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border: .5px solid rgba(255,255,255,1);
  padding: 0 10px;
  display: none;
  background: transparent;
  color: #FFF;
}

.nav-search-icon {
  padding-left: 10px;
  transition: .5s ease;
}

.nav-search-icon:hover {
  cursor: pointer;
  color: #FF6633;
}

.nav-active {
  color: rgba(153,153,153,.8) !important;
}

/* NAV-END
========== */

/* HAM-NAV-START
================ */

.hamburger {
  position: absolute;
  top: 0;
  right: 8.5%;
  line-height: 100px;
  font-size: 36px;
  display: none;
  transition: .3s ease;
  font-weight: 600;
  color: #FFF;
}

.hamburger-transparent {
  color: #FFF;
}

.hamburger-scroll {
  color: #000;
}

.visible {
  display: block;
}

.hidden {
  display: none;
}

@media (min-width: 0px) {

  .nav-elements-wrap {
    display: none;
  }

  .hamburger {
    display: block;
    right: 11%;
  }

}

@media (min-width: 320px) {

  .hamburger {
    right: 12%;
  }

}

@media (min-width: 590px) {

  .hamburger {
    right: 8.5%;
  }

}

@media (min-width: 850px) {

  .nav-elements-wrap {
    display: flex;
  }

  .hamburger {
    display: none;
  }

}

.hamburger:hover {
  color: #FF6633;
  cursor: pointer;
}

.ham-nav {
  position: absolute;
  top: 0px;
  left: 0;
  display: block;
  width: 100vw;
  height: 0;
  background-color: #FFF;
  transition: all 500ms ease-in-out;
  z-index: -1;
  overflow-y: hidden;
}

.ham-nav-show {
  height: 212px;
  transition: all 500ms ease-in-out;
  display: block;
  overflow-y: hidden;
}

.ham-menu-wrap {
  position: relative;
  top: 100px;
  transition: all 500ms ease-in-out;
  transform: translateY(-212px);
  z-index: -1;
  overflow-y: hidden;
}

.ham-menu-show {
  transform: translateY(0px);
  z-index: -1;
}

@media (min-width: 0px) {

  .ham-menu-wrap {
    display: flex;
  }

  .ham-menu {
    display: block;
  }

}

@media (min-width: 850px) {

  .ham-nav {
    display: none;
  }

  .ham-menu-wrap {
    display: none;
  }

  .ham-menu {
    display: none;
  }

}

.ham-menu {
  padding-left: 5.5%;
}

.ham-menu li {
  line-height: 1rem;
  list-style: none;
  transition: 300ms ease;
}

.ham-menu li:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.ham-menu-item {
  font-size: .7rem;
  line-height: .8rem;
  text-transform: uppercase;
}

.ham-menu-item:hover {
  color: #FF6633;
}

/* #ham-nav-close {
  position: absolute;
  right: 8.5%;
  bottom: 0;
  font-size: .7rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-transform: uppercase;
}

#ham-nav-close:hover {
  color: rgba(255,0,0,1);
}

.ham-x {
  background-color: rgba(255,0,0,.7);
  color: #FFF;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  text-align: center;
  line-height: 15px;
  font-size: 15px;
}

#ham-nav-close:hover {
  cursor: pointer;
} */

/* HAM-NAV-END
============== */

/* HEADER-END
============= */

/* ==========================
========================== */

/* CONTENT-START
================ */

.content-wrap {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
}

/* HOME-START
============= */

.home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(.3);
          filter: brightness(.3);
  -webkit-animation: zoom-in 5s ease-in forwards;
          animation: zoom-in 5s ease-in forwards;
}

.home-img-lighter {
  -webkit-filter: brightness(.5);
          filter: brightness(.5);
}

@-webkit-keyframes zoom-in {

  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    		filter: brightness(.3);
  }

  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    		filter: brightness(.6);
  }

}

@keyframes zoom-in {

  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
            filter: brightness(.3);
  }

  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
            filter: brightness(.6);
  }

}

.home-text-block {
  position: absolute;
  color: #FFF;
  top: 30%;
  left: 0;
  width: 100%;
}

.home-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  height: auto;
  width: 100%;
  position: absolute;
}

.home-text-wrap > p {
  margin: .5rem 0;
}

.home-btn {
  border-radius: 0;
  background-color: transparent;
  border: .2px solid #FFF;
  margin-top: .5rem;
  height: 36px;
  font-size: .5rem;
  border: none;
  letter-spacing: 1rem;
  cursor: pointer;
  color: #FFF;
  font-weight: 200;
}

@media (min-width: 0) {
  .home-btn {
    font-size: .5rem;
    letter-spacing: .4rem;
  }
}

@media (min-width: 768px) {
  .home-btn {
    font-size: .7rem;
    letter-spacing: 1rem;
  }
}

.home-btn:focus {
  box-shadow: none !important;
}

.blurry {
    transition: .5s ease;
}

.blurry:hover {
  color: rgba(255,102,51,0.05);
  text-shadow: 0 0 5px rgba(255,102,51,0.8);
}

.home-geometry-wrap {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 15%;
  left: 50%;
  width: 1px;
  height: 100px;
}

@media (min-width: 0) {

  .home-geometry-wrap {
    bottom: 18%;
  }

}

@media (min-width: 768px) {

  .home-geometry-wrap {
    bottom: 15%;
  }

}

.home-geometry {
  border-left: 1px solid rgb(255, 102, 51);
  height: 25%;
  width: 100%;
  -webkit-animation: downmove 3s infinite;
          animation: downmove 3s infinite;
}

@-webkit-keyframes downmove {

  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    height: 0%;
  }

  100% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    height: 100%;
  }
}

@keyframes downmove {

  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    height: 0%;
  }

  100% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    height: 100%;
  }
}

/* HOME-END
=========== */


/* ABOUT-START
============== */

.about, .team, .services, .contacts, .news {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 40vh;
  padding: 7%;
  padding-bottom: 0;
}

.about-content-wrap {
  position: relative;
  width: 100%;
  height: auto;
}

@media (min-width: 0) {
  .about-content-wrap {
    padding-right: 0;
  }
}

@media (min-width: 420px) {
  .about-content-wrap {
    padding-right: 15px;
  }
}

.team-content, .contacts-content-wrap {
  width: 100%;
  height: auto;
  position: relative;
  padding: 1.5rem 0;
}

.about-content {
  padding: 0;
}

.about-icon-wrap {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin: 5rem 0;
}

.about-icon {
  text-align: center;
  font-size: 5rem;
  color: #333;
  border-radius: 100%;
  transition: all 300ms ease-in-out;
}

.about-icon:hover {
  cursor: pointer;
  color: #FF6633;
  background-color: rgba(204,204,204,1);
}

.about-description {
  margin-top: 5rem;
}

.about-description > div {
  text-align: justify;
}

@media (min-width: 0) {
  .about-description > div:nth-child(1) {
    padding-right: 7%;
    padding-left: 7%;
    margin-bottom: 60px;
    border-right: none;

  }
  .about-description > div:nth-child(2) {
    padding-right: 7%;
    padding-left: 7%;

  }
}

@media (min-width: 768px) {
  .about-description > div:nth-child(1) {
    padding-right: 90px;
    padding-left: 0;
    margin-bottom: 0px;
    border-right: 1px solid rgba(51,51,51,.5);

  }
  .about-description > div:nth-child(2) {
    padding-left: 90px;
    padding-right: 0;

  }
}

/* ABOUT-END
============ */

/* TEAM-START
============ */

@media (min-width: 0) {

  .team-content {
    padding-bottom: 0;
    margin-bottom: 0;
  }

}

@media (min-width: 768px) {

  .team-content {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

}

.team-img {
  height: 150px;
  width: 150px;
  background-color: #444;
  text-align: center;
  line-height: 150px;
}

.team-content-wrap {
  min-width: 170px;
}

.team-content-wrap > div > div:nth-child(1) {
  padding: 10px;
  border: 1px solid rgba(64,64,64,.3);
  position: relative;
  width: 170px;
}

.team-content-wrap > div:nth-child(1) {
  position: relative;
}

.team-wrapper > .team-img-wrap {
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  overflow: hidden;
  margin-top: 50px;
}


.team-img:hover, .portfolio-img-wrap:hover {
  cursor: pointer;
}

.team-img-overlay {
  position: absolute;
  width: 150px;
  height: 150px;
  display: none;
  -webkit-animation: fadeinout 1s linear forwards;
          animation: fadeinout 1s linear forwards;
  top: 10px;
  left: 10px;
  transition: all 1000ms ease-in-out;
}

@-webkit-keyframes fadeinout {

  0% {
    -webkit-filter: opacity(0%);
            filter: opacity(0%);
  }

  100% {
    -webkit-filter: opacity(70%);
            filter: opacity(70%);
  }

}

@keyframes fadeinout {

  0% {
    -webkit-filter: opacity(0%);
            filter: opacity(0%);
  }

  100% {
    -webkit-filter: opacity(70%);
            filter: opacity(70%);
  }

}

.team-img-wrap:hover .team-img-overlay,
.portfolio-img:hover .portfolio-img-overlay {
  display: block;
  transition: .5s ease;
}

.overlay-icons-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  transition: all 1000ms ease-in-out;
}

.overlay-icon {
  color: rgba(64,64,64,8);
  font-size: .8rem;
  margin: 5px;
  padding: 10px;
  background-color: #FFF;
  height: 1.9rem;
  width: 1.9rem;
  text-align: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 1000ms ease-in-out;
  display: hidden;
}

.overlay-icon:hover {
  color: #EEE;
  background-color: #222;
}

.overlay-icon-left, .overlay-icon-right, .overlay-icon-middle {
  position: relative;
  transition: all 1s ease;
}

.fadein {
  -webkit-animation: fadein 1s ease;
          animation: fadein 1s ease;
}

@-webkit-keyframes fadein {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

@keyframes fadein {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

.slideinleft {
  -webkit-animation: slideinleft 1s linear forwards;
          animation: slideinleft 1s linear forwards;
}

@-webkit-keyframes slideinleft {

  0% {
    opacity: 0;
    left: -50px;
  }

  100% {
    opacity: 1;
    left: 0;
  }

}

@keyframes slideinleft {

  0% {
    opacity: 0;
    left: -50px;
  }

  100% {
    opacity: 1;
    left: 0;
  }

}

.slideinright {
  -webkit-animation: slideinright 1s linear forwards;
          animation: slideinright 1s linear forwards;
}

@-webkit-keyframes slideinright {

  0% {
    opacity: 0;
    top: 50px;
  }

  100% {
    opacity: 1;
    top: 0;
  }

}

@keyframes slideinright {

  0% {
    opacity: 0;
    top: 50px;
  }

  100% {
    opacity: 1;
    top: 0;
  }

}

.team-text-wrap {
  text-align: center;
  width: 170px;
}

.team-text-wrap > p {
  margin-top: 10px;
}

.team-member-title {
  color: #333;
  margin: 1rem 0 .5rem;
}

.team-member-description {
  margin-top: 1.5rem;
  font-size: .8rem;
}

/* TEAM-END
=========== */

/* SERVICES-START
================= */

.services, .portfolio, .testimonial {
  padding: 7% 0 0;
}

.services-content-wrap {
  width: 100%;
  height: auto;
  padding: 3rem 3rem 0;
}

@media (min-width: 0) {
  .services-content-wrap{
    padding-right: 3rem;
  }
}

@media (min-width: 420px) {
  .services-content-wrap {
    padding-right: 4rem;
  }
}

.services-content-wrap > .row > div {
  margin-bottom: 30px;
}

.service-card {
  text-align: center;
}

.service-title {
  margin-top: 1rem;
  font-weight: 600;
  color: #333;
}

.card-img-custom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 140px;
  height: 140px;
  background-color: #FFF;
  border: 1px solid rgba(64,64,64,.4);
  border-radius: 100%;
}

.services-icon {
  font-size: 3rem;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #333;
  background-color: rgba(64,64,64,.8);
  box-sizing: content-box;
  transition: all 500ms ease-in-out;
}

.services-icon:hover {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: rgba(255,102,51,.9);
}

.rotate45 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.service-details {
  font-size: .8rem;
  line-height: 1.5;
}

/* SERVICES-END
=============== */

/* TESTIMONIAL-START
==================== */

.testimonial-content-wrap {
  width: 100%;
  height: 80vh;
  margin: 3rem 0 0;
  position: relative;
}

.testimonial-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  position: relative;
}

.top-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  position: relative;
}

.top-slider-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
}

.testimonial-carousel {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
  position: relative;
}

.testimonial-indicators {
  position: absolute;
  bottom: 10%;
  margin-bottom: 0;
  height: 2px;
}

.testimonial-indicators > li {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  margin: 0 10px;
}

.testimonial-indicators .active {
  background-color: #FF6633;
}

.testimonial-item-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.testimonial-item {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(242, 242, 242, 1);
}

.testimonial-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}

.testimonial-caption-wrap {
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 10%;
}

.testimonial-caption-wrap > .carousel-caption {
  bottom: 0;
}

.testimonial-caption-wrap p {
  line-height: 1.2rem;
}

.testimonial-caption > p:nth-child(1) {
  margin-bottom: 1rem;
}

/* TESTIMONIAL-END
================== */

/* PORTFOLIO-START
================== */

.portfolio-content-wrap {
  width: auto;
  height: auto;
  margin: 3rem 30px 0 15px;
  box-sizing: border-box;
}

@media (min-width: 0) {
  .portfolio-content-wrap {
    margin-right: 15px;
  }
}

@media (min-width: 420px) {
  .portfolio-content-wrap {
    margin-right: 30px;
  }
}

.portfolio-item {
  height: auto;
  display: flex;
  flex-direction: column;
}

.portfolio-img-wrap {
  height: 80%;
  width: 100%;
  padding: 6px;
  border: 1px solid rgba(64,64,64,.2);
  border-bottom: none;
  position: relative;
  transition: all 500ms ease-in-out;
  cursor: pointer;
}

.portfolio-img-wrap:hover .portfolio-img {
  -webkit-filter: brightness(.6);
          filter: brightness(.6);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 500ms ease-in-out;
}

.portfolio-img-overlay {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  top: 1px;
  left: 1px;
  display: none;
  -webkit-animation: fadein 1s linear forwards;
          animation: fadein 1s linear forwards;
}

.portfolio-item > p {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  border: 1px solid rgba(64,64,64,.2);
  border-top: none;
  letter-spacing: .005rem;
}

/* PORTFOLIO-END
================ */

/* NEWS-START
============= */

.news-content-wrap {
  margin-top: 3rem;
}

@media (min-width: 0) {
  .news-content-wrap {
    margin-right: 0;
  }
}

@media (min-width: 420px) {
  .news-content-wrap {
    margin-right: 15px;
  }
}

.owl-carousel:hover {
  cursor: pointer;
}

.news-slide {
  height: auto;
  position: relative;
  cursor: pointer;
}

.news-slide > a {
  height: 100%;
  width: 100%;
}

.news-img-wrap {
  min-height: 60%;
  position: relative;
  margin-bottom: 1rem;
  overflow-x: hidden;
  transition: 500ms ease-in-out;
}

.news-img {
  transition: 500ms ease-in-out;
}

.news-img-wrap:hover > .news-img {
  -webkit-filter: brightness(.6);
          filter: brightness(.6);
}

.news-slide-heading-wrap {
  bottom: 0;
}

.news-slide-date {
  margin-top: 1rem;
  font-size: .8rem;
}

.news-slide-heading:hover, .news-slide-date:hover {
  color: #FF6633;
}

.news-popup {
  position: relative;
  background-color: #FFF;
  padding: 7%;
  width: calc(100vw - 14%);
  box-sizing: border-box;
  min-height: 100vh;
  height: auto;
  margin: 7%;
}

.news-popup-heading {
  margin: 5% 0 0;
}

.news-popup-date {
  margin: 1rem 0;
  font-size: .875rem;
}

.news-popup-text {
  text-align: left;
  margin: 2rem 0;
}

.mfp-arrow {
  position: fixed;
}

/* NEWS-END
=========== */

/* CONTACT-START
================ */

.contacts {
  padding-bottom: 7%;
  height: auto;
  background-color: rgba(64,64,64,.1);
  margin-top: 30px;
}

.contacts-content-wrap {
  padding-top: 3rem;
}

@media (min-width: 0) {
  .contacts-content-wrap{
    padding-right: 0;
  }
}

@media (min-width: 420px) {
  .contacts-content-wrap {
    padding-right: 15px;
  }
}

/* .contacts-content {
  position: relative;
} */

.contact-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 50px;
}

.contact-icon-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.address, .phone, .email {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-bottom: 1rem;
}

@media (min-width: 0) {

  .address, .phone, .email {
    margin-bottom: .5rem;
  }

}

@media (min-width: 992px) {

  .address, .phone, .email {
    margin-bottom: 2rem;
  }

}

.email {
  margin-bottom: 0;
}

.contacts-icon {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 20px;
  font-size: 1.2rem;
  text-align: center;
  -webkit-columns: #333;
     -moz-columns: #333;
          columns: #333;
}

.address > div:nth-child(2),
.phone > div:nth-child(2),
.email > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.address > div:nth-child(2) > p:nth-child(1),
.phone > div:nth-child(2) > p:nth-child(1),
.email > div:nth-child(2) > p:nth-child(1) {
  margin-right: 1.25rem;
  margin-bottom: .5rem;
  text-transform: capitalize;
}

/* .contacts-content-wrap > .contacts-content {
  overflow-y: hidden;
} */

/* .contacts-form-wrap {
  height: auto;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-input {
  height: 20px;
}

#form-message {
  height: 83px;
  margin-bottom: 23px;
}

.form-btn-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.contact-form-btn {
  bottom: 0;
  background-color: #EEE;
  color: #222;
  border: none;
  border-radius: 0;
  font-size: .5rem;
  width: 100%;
  height: 20px;
  padding: 3px 12px;
  background-color: rgb(191,191,191);
  color: #333;
}

@media (min-width: 0px) {

  .contacts-form-wrap {
    margin-top: 3rem;
  }

  #form-message {
    margin-bottom: 0;
  }

}

@media (min-width: 992px) {

  .contacts-form-wrap {
    margin-top: 0;
  }

  #form-message {
    margin-bottom: 23px;
  }

} */

/* CONTACT-END
============== */



/* SCROLL-TOP-START
=================== */

.top {
  position: fixed;
  z-index: 3000;
  visibility: hidden;
}

.top:hover {
  cursor: pointer;
}

.up-arrow {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 1%;
  bottom: 2%;
  font-size: 20px;
  color: rgba(255,255,230,1);
  padding: 10px;
  background-color: rgba(64,64,64,.2);
}

.up-arrow:hover {
  background-color: rgba(64,64,64,.4);
}

/* SCROLL-TOP-END
=================  */

/* CONTENT-END
============== */
