/* Made with ❤  reymedia */

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
  --color-salmon: #F32C52;
}

.body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.button {
  display: flex;
  overflow: hidden;
  letter-spacing: 3px;

  margin: 10px;
  padding: 12px 12px;

  cursor: pointer;
  user-select: none;
  transition: all 150ms linear;
  text-align: center;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: none;
  text-transform: capitalize;

  color: #fff;
  border: 0 none;
  border-radius: var(--borderRadius);

  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;

  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;

  justify-content: center;
  align-items: center;
  flex: 0 0 160px;
  
  box-shadow: 2px 5px 10px var(--color-smoke);

  &:hover {
    transition: all 150ms linear;

    opacity: .85;
  }
  
  &:active {
    transition: all 150ms linear;
    opacity: .75;
  }
  
  &:focus {
    outline: 1px dotted #959595;
    outline-offset: -4px;
  }
}

.button.-salmon {
  color: beige;
  background: var(--color-salmon);
}

.button.-salmon a{
  color: beige;
}

#other-pages:focus {
  outline: none;
}

.thumb img {
  width: 100%;
  height: 100%;
}

.padding-bottom-50 {
  padding-bottom: 50px;
}

.banner-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 540px;
}
.banner-wrap .banner-content h1 {
  font-size: 3rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
.banner-wrap .banner-content h1 span {
  display: block;
}

.section-header h2 {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 30px;
}

.section-header img {
  margin-top: 20px;
  margin-bottom: 50px;
}

.page-preview {
  margin-bottom: 50px;
}
.page-preview .thumb {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.page-preview .thumb .overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-preview .thumb .overlay a {
  background: #246df8;
  color: #fff;
  border-radius: 3px;
  padding: 5px 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page-preview .thumb:hover .overlay {
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.page-preview .thumb:hover .overlay a {
  top: 50%;
}
.page-preview h3 {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.page-preview h3:hover a {
  text-decoration: underline;
}

.isotope-nav h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.isotope-nav ul {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  list-style: none;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.isotope-nav ul li {
  font-size: 1.4rem;
  padding: 3px 20px;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 15px;
}
.isotope-nav ul li.active {
  background: rgba(36, 109, 248, 0.15);
  color: #246df8;
}

@media all and (max-width: 767px) {
  .pages .col-xs-12 {
    width: 50%;
  }

  .cp-nav-demo .navbar-header .navbar-toggle {
    border: 1px solid #246df8;
    border-radius: 0;
  }
  .cp-nav-demo .navbar-header .navbar-toggle .icon-bar {
    background: #246df8;
  }
  .cp-nav-demo .navbar-collapse {
    background: #fff;
  }
  .cp-nav-demo .navbar-nav .nav-button {
    padding-bottom: 20px;
  }
  .cp-nav-demo .navbar-nav .nav-button a {
    display: inline-block;
  }

  footer {
    text-align: center;
  }
  footer .credit {
    text-align: center;
  }
}
@media all and (max-width: 539px) {
  .pages .col-xs-12 {
    width: 100%;
  }
}

#button {
  display: inline-block;
  background-color: #000;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.floating_btn {
  position: fixed;
  bottom: 0px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

.floating_btn a{
  text-decoration: none;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 40px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

h2{
  text-align:center;
  padding: 20px;
}
/* Slider */

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.page-footer {
  font-family: 'Poppins', sans-serif;
}