/*/////////////rev1////////////////*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
    --default-color: #333333;
    --accent-color: #F57C00; 
    
    --default-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--default-font);
}

a {
  color: var(--accent-color);
}

.accent {
    color: var(--accent-color);
}

header {
  min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* Buttons */
.uber-btn {
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  
  .button1 {
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
  }
  
  .button2 {
    border: 1px solid;
  }

  a.button1 {
    color: #fff;
  }
  
  a.button2 {
      border: 1px solid;
    color: var(--default-color);
  }

  .button3 {
    background: #fff;
    color: var(--default-color);
    font-weight: 500;
  }

  .button4 {
    background: #333;
    color: #fff;
    font-weight: 500;
  }

  .button4:hover {
    background: #fff;
    color: #333;
    font-weight: 500;
  }

  .uber-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  a.uber-btn:hover {
    text-decoration:none;
  }
  
  
  /* button 1 */
  .button1 {
    transition: all 0.2s ease-in-out;
  }
  
  .button1:after {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #F79520;
  }
  
  .button1:hover,
  .button1:active {
    color: #fff;
    background: transparent;
    border-color: #F79520;
  }
  
  .button1:hover:after,
  .button1:active:after {
    height: 100%;
  }
  
  /* header */
  header .button2:after {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #fff;
  }
  
  header .button2:hover,
  header .button2:active {
    color: var(--default-color);
  }
  
  header .button2:hover:after,
  header .button2:active:after {
    height: 100%;
  }
  
  /* CTA buttons */
  
  .cta-buttons .button2:after {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--default-color);
  }
  
  .cta-buttons .button2:hover,
  .cta-buttons .button2:active {
    color: #fff;
  }
  
  .cta-buttons .button2:hover:after,
  .cta-buttons .button2:active:after {
    height: 100%;
  }


/* Navbar */

.navbar {
    background: transparent;
}

.navbar-nav {
        margin-top: 20px;
        padding: 0 25px;
    }

      
      .navbar-nav.bttns.pull-right .nav-item{
        margin: 10px;
      }
      
      .navbar-collapse.collapse.show {
          display: block;
          background: rgba(0,0,0,0.5);
          padding-bottom: 30px;
          text-align: center;
      }
      
      
      .navbar-dark a.nav-link, .navbar-collapse.collapse.show a.nav-link {
          color: #fff;
      }
      .navbar-light a.nav-link {
        color: #333;
        font-weight: 500;
    }

    .navbar-light a.button2:hover,
    .navbar-light a.button2:active, .navbar-light a.button1:hover,
    .navbar-light a.button1:active{
      color: #fff !important;
      background: #333;
      border-color: #333;
    }

    .navbar-light a.button1 {
      color: #fff !important;
    }


    

      #navbarCollapse {
          align-items: center;
      }
      
      li.nav-item.show, li.nav-item:hover {
          position: relative;
      }
      
      .dropdown-menu {
        background-color: #333;
          width: max-content;
        padding: 0;
      }

      .navbar-light .dropdown-menu a.nav-link {
        color: #fff;
    }

    .navbar-light .show > .dropdown-menu {
      background-color: rgba(0,0,0,0.8);
    }
      
      .dropdown-menu li:hover {
        background: var(--accent-color);
      }

      .navbar-light .dropdown-menu li:hover a.nav-link {
        color: #fff;
    }
      
      
      button.navbar-toggler.navbar-toggler-right {
          position: absolute;
          top: 40px;
          margin: 0;
          
      }
      .navbar-light .navbar-toggler {
        border-color: rgba(0,0,0,.1);
        background: var(--accent-color);
    }
      .navbar-toggler-icon img{
       max-width: 32px; 
        padding: 5px;
      }
      
      @media (min-width: 992px) {
      .navbar-toggleable-md .navbar-nav .nav-link {
          padding-right: .5rem;
          padding-left: .5rem;
      }
        
        .navbar-nav.bttns.pull-right {
          margin-left: auto;
      }
      }
      
      @media (min-width: 1300px) {
      .navbar-toggleable-md .navbar-nav .nav-link {
          padding-right: 1.5rem;
          padding-left: 1.5rem;
      }
        
      }

      @media (min-width: 992px) and (max-width: 1270px) {
        a.nav-link {
          font-size: .90em;
      }
      }
      
      @media (max-width:992px) {
        .dropdown-menu {
          width: 100%;
          text-align: center;
      }
        .dropdown-menu .nav-link {
          padding-right: .5rem;
          padding-left: .5rem;
      }
      }


/** **************************************************
                    Home Page 
******************************************************/

/* MVP*/
section.mvp {
    text-align: center;
    padding: 5% 5% 5%;
    color: #fff;
}

section.mvp h1 {
    font-size: 2.5em;
    text-align: center;
    text-transform: uppercase;
}


section.mvp p {
    font-size: 1em;
    text-align: center;
    text-transform: capitalize;
}

section.mvp .cta-banner {
    margin-top: 5%;
}

.cta-banner .uber-btn {
color: #fff;
border-radius: 5px;
display: inline-block;
margin: 10px;
}



.video-background {
    background: url(/assets/img/video-banner-poster.jpg) #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -99;
    overflow: hidden;
    height: 100vh;
  }
  .video-background ._pattern-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.7;
    bottom: 0;
    background-image: url(https://cdnjs.cloudflare.com/ajax/libs/vegas/2.3.1/overlays/03.png);
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
}

.video-background #myVideo {
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    top: -50%;
}



/* Social Proof */
.social-proof {
    text-align: center
  }
  
  .re-logo .owl-item {  
    padding: 2em;
  -webkit-filter: grayscale(1);
      filter: grayscale(1);
  }

  .re-logo .re-item {  
    padding: 2em;
  -webkit-filter: grayscale(1);
      filter: grayscale(1);
  }

.re-logo .re-item img {
  max-height: 130px;
  max-width: 130px;
  object-fit: contain;
}
  
  .social-proof h3 {
    margin-top: 30px;
  }
  
  .social-proof  .lead {
      font-size: 1.15rem;
      font-weight: normal;
    max-width: 800px;
    margin: 30px auto;
  }


  /* page container sections */
  .page-container section {
    padding: 30px;
  }

  .page-container section::before {
    content: '';
    width: 40px;
    height: 20px;
    background: url(/assets/img/coprsite-rev/icons/ubr-sign.svg) no-repeat;
    margin: 20px auto 60px;

    display: block;
  }

  .page-container section .introblurb {
      text-align:center;
      margin-bottom: 30px;
  }

  .page-container section h2{
    font-weight: 300;
    font-size: 2.7rem;
    margin-bottom: 30px;
  }

  .page-container section .lead{
    font-size: 1.5rem;
  }

  section .cta-buttons {
    padding: 30px;
  }
  
  section .cta-buttons a {
    display: inline-block;
    margin: 20px;
  }

/*Features*/
section.features {
    text-align: center;
  }
  
  .featureboxes {
    display: flex;
    justify-content:center;
    
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .fb-item {
    width: 20%;
    min-height: 210px;
    margin: 1%;
    border-bottom: 2px solid #fff;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  .feature-icon {
    min-height: 62px;
    margin-bottom: 20px
  }
  
  .fb-item:hover {
    background: #f8f8f8;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--accent-color);
  }
  
  .fb-item svg path{
    fill: black;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  }
  
  .fb-item:hover svg path {
    fill: var(--accent-color);
  }
  
@media screen and (max-width:768px) {
    .featureboxes {
        display: flex;
        flex-wrap: wrap;
    }
    .featureboxes .fb-item {
        width: 40%;
        margin: 20px auto;;
      }
}

@media screen and (max-width:580px) {
    .featureboxes .fb-item {
        width: 50%;
    }

}

/* products */
.products .row {
  max-width: 1440px;
  margin: 30px auto;
}

.prod {
  margin: 30px;
  border-top: 1px solid #ccc;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}
.prod:hover{
  border-top: 1px solid var(--accent-color);
}

.prod .p-icon {
  padding: 10% 0 15%;
}

.prod h3 {
    font-size: 1.50rem;
    margin-bottom: 30px;
}
.p-icon img{

  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.prod:hover .p-icon img{
  transform: rotate(360deg) scale(2);
}

a.cta-lm {
font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  display: inline-block;
}

a.cta-lm {
  position: relative;
  padding: 20px 0;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

a.cta-lm:before {
  content: '';
	position: absolute;
	z-index: -1;
  width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--accent-color);
  
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

a.cta-lm:hover {
  color:#fff;
  text-decoration: none;
  padding: 20px 10px;
}

a.cta-lm:hover:before {
  	width: 100%;
}


/* Video testimonials */
.testi-vids-slider{
  max-width: 960px;
margin: 30px auto;
display: flex;
flex-direction: column;
justify-content: center;
}

.video-tab {
margin-bottom: 30px;
}

.video-tab .slick-slide img {
  display: block;
  margin: 0 auto;
padding: 10px 0;
filter: grayscale(1);
}

.video-tab .slick-current img {
border-bottom: 2px solid var(--accent-color);
filter: grayscale(0);
}

.video-testi .slick-slide img {
  transition: all 1s ease-in-out;
}
.video-testi .slick-slide:hover img {
  transform: scale(1.1);
}

/* Orange */

section.orange {
  background: var(--accent-color);
  color: #fff;
  padding: 10vh 20px;
}

.page-container section.orange::before {
  background: url(/assets/img/coprsite-rev/icons/ubr-sign-w.svg) no-repeat;
}

section.orange .introblurb {
  max-width: 960px; 
  margin: 0 auto;
}

.orange .o-sectionbtns {
  color: #fff;
  text-align: center;
}

.orange .o-sectionbtns a{
  display: inline-block;
}

.o-sectionbtns a.button {
  color: #fff;
}

.orange .o-sectionbtns a.button3:hover {
  color: #fff;
  background: #333;
}

.button3 {
  background: #fff;
  color: var(--default-color);
  font-weight: 500;
}


/** **************************************************
                    Hosting Page 
******************************************************/
/* hosting banner */
.h-desc {
  padding: 15% 0 5% 10%;
}

.h-blurb {
    padding: 0 50px;
}

.h-blurb h1 {
    font-size: 3em;
    font-weight: 700;
  line-height: 1.3;
}

.h-blurb h1 small {
  font-weight: 500;
}

.h-screen:before {
  content: '';
  width: 148px;
  height: 132px;
  background: #c4c4c4;
  position: absolute;
  top: 10%;
  left: -5%;
  z-index: -1;
  opacity: 0.5;
}

.h-screen:after {
  content:'';
  width: 148px;
  height: 132px;
  border: 1px solid var(--accent-color);
  position: absolute;
    bottom: -20px;
  right: 0;
  z-index: -1;
}

.h-screen img {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}




@media (max-width: 1200px){
  .h-blurb h1 {
    font-size: 2.5em;
    font-weight: 700;
  line-height: 1.3;
}
  .h-screen img {
  width: 100%;
  z-index: 1;
  position: relative;
}
  
  .h-screen:after {
      content:'';
  width: 148px;
  height: 132px;
  border: 1px solid var(--accent-color);
  position: absolute;
    bottom: -20px;
  right: -20px;
}

  .h-desc {
  padding: 1%;
}
  
 section.h-banner  .cta-buttons a {
    margin: 10px;
}
  
}

@media (max-width: 768px) {
  .h-blurb h1 {
    font-size: 2em;
  }
  .h-blurb {
    padding: 0 20px;
  }
  section.h-banner .cta-buttons {
    padding: 20px;
  }

}

@media screen and (min-width: 1201px) and (max-width:1390px) {
  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.h-screen:before {
  top: 10%;
  left: 0;
}

.h-screen:after {
  bottom: 10%;
  right: 0;
  z-index: -1;
}

.h-blurb h1 {
  font-size: 2.25em;
}

}

/* Risk Free */
section.rf {
  padding: 30px 0;
}

.rf .row > [class*=col] {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

section.rf h2 {
font-size: 3em;
}

.rf .cl {
padding: 20px 0 20px 50px;
background: url("/assets/img/coprsite-rev/icons/check-square-o.svg") no-repeat center left;
}

.rf .img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

@media (min-width:992px) {
section.rf .cta-buttons {
  padding: 0px;
}

section.rf .cta-buttons a {
  margin-left: 0px;

}
}


@media (max-width:992px) {
.rf-desc {
  padding: 10%;
}
section.rf .cta-buttons a {
  display: block;
  text-align: center;
}
section.rf h2 {
  font-size: 2.5em;
  text-align: center;
}

.order-md-12 {
  order: 12;
}
.order-md-1 {
  order: 1;
}

}

/* Theme Showcase */
section.ts {
  text-align: center;
}
.thms-item {
  padding: 20px;
}
.thms-item img {
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
border-radius: 5px 5px 0px 0px;
}

@media screen and (max-width: 768px) {
  section .cta-buttons a {
    display: inline-block;
    margin: 10px;
}
}

/*Customer Support*/
.cs img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: left;
}

section.cs .introblurb {
  text-align: left;
  padding: 0 0 0 50px;
}

section.cs .cta-buttons {
  padding: 30px 0;
}

section.cs .cta-buttons a{
  margin-left: 0;
}

@media (max-width: 992px) {
section.cs .introblurb {
  text-align: center;
padding: 20px;
}
section.cs .cta-buttons {
  padding: 0px;
  text-align: center;
}
}


/** **************************************************
                   ECS Page 
******************************************************/

.ecs-page .site-header .container{
  background: url(../img/ipad-bg.png) no-repeat;
  background-position: 5% 100%;
  background-size: 400px;
}

.ecs-page .site-header h1{
  font-size: 2.5em;
  z-index: 3;
  position: relative;
  background-color: #fff;
  padding: 20px;
  display: inline-block;
}

.ecs-page .site-header img {
   z-index: 1;
  position: relative;
}

.ecs-page .site-header p {
  margin-top: 20px; margin-left: 10%;
  padding: 20px 10%;
  font-size: initial;
  font-family: var(--header-font);
  background: rgba(255, 255, 255, 0.6);
}

.ecs-page .frp {
  padding: 30px 0;
  min-height: 50vh; 
  background: url(../img/scale-bg.png) no-repeat right;
  background-size: cover;
  display: flex;
  align-items: center;

  position: relative;
}

.ecs-page .frp:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 0;
  top: 0;
  left: 50%;
  padding: 0;
  margin: 0;
}

.ecs-page .frp-item {
  padding: 20px;
}

.ecs-page .frp h1 {
  text-align: center;
  font-weight: 700;
}

.ecs-page .frp h2 {
  margin: 30px auto;
  padding-left: 10px;
  border-left: 10px solid #ccc;
  font-weight: 700;
  font-size: 1.8rem;
  color: #333;
}

.ecs-page .frp .col-md-6 {
  background: rgba(255, 255, 255, 0.6); 
          padding: 20px;
}

section.activate::before {
  display: none;
}

.ecs-page .activate{
  background: #F57C00;
  padding: 60px 0;
  color: #fff;
  
}

.ecs-page .activate a{
  color: #fff;
  font-weight: 700;
}


.page-container section.faq {
  padding: 60px 30px;
  position: relative;
}

.page-container section.faq .container .col-md-8{
  background: #fff;
  padding: 30px;
}

section.faq::before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('/assets/img/coprsite-rev/faq-bg.jpg');/* for non-webp*/
  background-repeat:no-repeat;
  background-size: cover;
  height: 100%;
  width: 35%;
  top: 0;
  left: 0;
  margin: 0;
}
.faq .btn-link {
  font-weight: 700;
  color: var(--accent-color);
  border-radius: 0;
}
.faq .btn-link:hover, .faq .btn-link:active {
  text-decoration: none;
}

.ecs-page div#accordion {
  width: 100%;
}

.ecs-page div#accordion .card-body {
  padding: 20px 40px;
}

.ecs-page div#accordion .mb-0 button {
  white-space: normal !important;
  text-align: left;
}

/** **************************************************
                    Custom Design 
******************************************************/

.cd-banner {
  text-align: center;
  /*background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 150%), url(/assets/img/coprsite-rev/cd.webp) no-repeat;*/
  background-image: url(/assets/img/coprsite-rev/cd.jpg); /* for non-webp */
  background-repeat: no-repeat;
  background-size: cover;

  height: 70vh;
}

.banner-desc {
  padding: 5%;
  text-align: center;
  background: linear-gradient(45deg, #eeeeee 0%, #f8f8f8 100%);

  height: 70vh;
}

.banner-desc .button1:hover, .banner-descr .button1:active {
  color: #fff;
  background: var(--default-color);
  border-color: var(--default-color);
}

.banner-desc h1 {
  text-transform: capitalize;
}

.banner-desc p {
  max-width: 800px;
  padding: 20px;
}

section#theme-list {
  position: relative;
}

section#theme-list::before {
  position: absolute;
  top: 60px;
  z-index: 0;
}



#theme-list .left-details{
  display: flex;
  justify-content: center;
  flex-direction: column;
  width:30%;
  padding-left: 3%;
  padding-right:3%;
  padding-top:10%;
  margin: 0 auto;
}

.left-details .cta-buttons {
  padding: 0px;
}

.left-details .cta-buttons a{
margin: 20px 0;
} 

.custom-web-design section#theme-list::before {
  position: relative;
}

.custom-web-design #theme-list .left-details{
padding-top: 5vh;
}

.customSlickClass div > img {
  box-shadow: none;
  transform: translateY(150px);
  cursor: pointer;
  transition: all 0.3s ease!important;
  padding: 0 20px;
  max-width: 250px;
  width: 100%;
}
#theme-list .hidden-info-custom {
padding: 20px 5px 20px 40px;
}


#theme-list .hidden-info-custom a{
  display: none;
  color:#fff;
  background: #333;
  font-weight: 600;
  text-transform: uppercase;
  
}
@media screen and (max-width: 1200px) {
  
  #theme-list {
      flex-direction: column;
  }  
  
    #theme-list .left-details {
      display: block;
      width: 100%;
      padding-left: 3%;
      padding-right: 3%;
      padding-top: 10%;
      margin: 0 auto;
      
      text-align: center;
      max-width: 800px;
  }
    
    #theme-list .left-details h3 {
      margin-bottom: 30px;
    }
    #theme-list .left-details p{
    text-align: center;
      max-width: 800px;
    }
    
    .customSlickClass div > img {
    max-width: 100%;
    width: 100%;
        transform: translateY(50px);
  }
  }
  
  @media (max-width: 992px) {
     #theme-list .hidden-info-custom {
      opacity: 1;
      padding: 10px;
      margin: 0 auto;
      text-align: center;
      max-width: 100%;
  }
    .customSlickClass div > img {
    padding: 0 10px;
    }
    #theme-list .theme-slider {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
      text-align: center;
  }
  section#theme-list::before {
    display: none;
  }
    
  }

.hiw .row {
  padding-top: 30px;
  background: url(/assets/img/coprsite-rev/icons/o_line.svg) repeat-x center;
}

@media (max-width: 768px){
  .hiw .row {
    padding-top: 30px;
    background: url(/assets/img/coprsite-rev/icons/o-line-y.svg) repeat-y center;
  }

  section#theme-list, section#theme-list::before {
    display: block;
    top: 20px;
  }
}


.hiw-item {
  padding: 60px 5% 5%;
  margin: 20px;
  background: #FFFFFF;
  /* Shadow */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #ccc;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.hiw .p-icon {
  margin-bottom: 10%;
}
.hiw h3 {
  margin-bottom: 30px;
}

.hiw p {
  font-size: 14px;
}

.hiw-item:hover {
  border-top: 2px solid var(--accent-color);
  transform: scale(1.1);
}

.hiw-item:hover h3{
  color: var(--accent-color);
}

.cd-ft .ft-scrn, .cd-ft .ft-scrn img {
  width: 100%;
}

.ft-item {
  padding: 20px 20px 0;
}

.ft-item h3{
  padding: 30px 0;
}

.cd-ft .cta-buttons {
    margin: 0 auto;
}

.testimonial-wrap {
  background: #f8f8f8; 
 }
 
 .testimonial-wrap .item-wrapper {
     padding: 0 20px;
   margin-bottom: 30px;
     background: #fff;
     border-radius: 10px;
   box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
 }








/** Footer **/

/*footer styles*/
footer {
    padding: 70px 0;
}
.clear {
    display: block;
    clear: both;
}

footer p,
.footer-list a {
    font-size: 13px;
    font-family: var(--default-font);
    text-align: justify;
}

footer h5 {
    font-size: 13px;
    margin-bottom: 40px;
}

footer .box {
    padding: 0 40px;
}

footer hr {
    width: 100px;
    text-align: left;
    float: left;
}

#top-footer {
    margin: 80px 0;
    padding: 20px 0;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-list {
    padding: 0;
}

.footer-list li {
    display: block;
}

.footer-list a {
    color: #292b2c;

}

.footer-list a:hover {
    color: #db752b;

}

#btm-footer {
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.copyright {

    margin-top: 20px;
}

.floating-social-media{ position: fixed; top: 130px; left: 0; background: var(--accent-color);z-index: 999; }
.floating-social-media ul{ padding: 10px 0 20px 0; list-style: none; margin:0; }
.floating-social-media li a{ width: 50px; height: 15px; display: block; font-size: 20px; text-align: center; color:#fff; transition: none !important; }
.floating-social-media li a:hover{ color: #000; }
.floating-social-media li a svg path{ transition: none !important; }
.floating-social-media li{ padding: 15px 0; }

/* New Navigation */
body:not(.home-rev) .navbar{
  background: #fff;
}
nav li.separator {
  color: #ccc;
  padding: 0 30px;
  font-size: 26px;
  font-weight: 100;
}
@media screen and (max-width: 992px){
nav li.separator {display: none;}
}
