/* FRONTEND CSS
*********************************************/


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px; /* height of sticky header */
}

body {
    background-color: #F5F5F5;
    background-image: url(../images/background.svg);
    background-position: top center;
    background-size: inherit;
    background-repeat: no-repeat;
}

html, body {
    font-family: 'Clarity City';
    
}

body.modal-open {
    overflow: hidden !important;
}

#wrapper {
	min-height: 100%;
}

#wrapper:after {
	content: "";
	display: block;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.cf:before, .cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
}

.page span {
    color: inherit !important;
    font-weight: inherit !important;
}

::-moz-selection { 
  background: #BACCC7; 
  color: #034A47; 
}

::selection { 
  background: #BACCC7;
  color: #034A47; 
}

.vertical-center {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* FADER
*********************************************/

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: #FAF5F3;
    animation-duration: 500ms;
    animation-timing-function: ease-in-out;
  }

  #fader:before {
    content: 'fade'
  }

  @keyframes fade-out {
    from { opacity: 1 }
    to { opacity: 0 }
  }

  @keyframes fade-in {
    from { opacity: 0 }
    to { opacity: 1 }
  }

  #fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
  }

  #fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
  }


/* SCROLL TO TOP BUTTON
*********************************************/

#toTop {
    padding: 24px 18px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: none;
    z-index: 99;
    width: 60px;
    height: 60px;
 	cursor: pointer;
}


/* HEADER
*********************************************/

header.header-nav {
    border-bottom: 1px solid #19535F;  
    width: 100%;
    padding: 0;
    z-index: 9;
    position: fixed;
    height: 90px;
}

.menu-nav {
    border-bottom: 1px solid #19535F;  
    width: 100%;
    height: 90px;
}

header.header-nav .logo, .menu-nav .logo{
    float: left;
    height: 90px;
    border-right: 1px solid #19535F;
    padding-top: 30px;
}

header.header-nav:before {
	content: "";
	position: absolute;
	background: inherit;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    transition: transform .3s ease;
    background-color: rgba(245,245,245,0.9);
    backdrop-filter: blur(10px);
    height: 100%;
}

header.header-nav .navigation {
    padding-top: 23px;
}

header.header-nav .menu-button span.button, .menu-nav .menu-button span.button {
    font-size: 22px;
    line-height: 45px;
    text-align: center;
    padding: 12px 10px 7px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #272E37;
    border: 1px solid #C98A3D;
    background: rgba(255, 255, 255, .2);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    
}

header.header-nav .menu-button span.button:hover {
    background-color:#C98A3D;
    color: #ffffff;
}

header.header-nav .menu-button, .menu-nav .menu-button {
    margin-top: 25px;
}

.menu-nav .menu-button span.button {
   color: #FFFFFF;
   background-color: transparent;
}
.menu-nav .menu-button span.button:hover  {
    background-color: #C98A3D;
    cursor: pointer;
}

/* MAIN MENU
*********************************************/


header.header-nav  .menu ul.nav>li {
    margin: 0px;
    position: relative;
}
header.header-nav  .menu ul.nav>li>a {
    font-family: 'Clarity City Semi';
    font-size: 14px;
    color: #1D1D1D;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 100;
    text-decoration: none;
    padding: 0 2px 10px;
    margin: 0 13px;
    line-height: 45px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

header.header-nav  .menu ul.nav>li.active>a::after, .overlay .menu ul li.active>a::after {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #C98A3D;
    top: 5px;
    left: 0;
    pointer-events: none;
    content: '';
}

header.header-nav  .menu ul.nav>li.active>a.btn::after, .overlay .btn-primary::before, .overlay .btn-primary::after {
    display: none;
}

header.header-nav  .menu ul.nav>li>a, .overlay .menu ul li a {
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

header.header-nav  .main-menu ul.nav>li>a::before, .overlay .menu ul li a::before{
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
    content: '';
}

header.header-nav  .main-menu ul.nav>li>a:hover::before, .overlay .menu ul li a:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}
header.header-nav  .main-menu ul.nav>li>a::before ,.overlay .menu ul li a::before{
    position: absolute;
    width: 100%;
    height: 2px;
    background: #C98A3D;
    top: 5px;
    left: 0;
    pointer-events: none;
}

/* DROP DOWN MENU
*********************************************/

.main-menu .nav li ul {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 0;
    margin: 0;
	z-index: 1000;
}

.main-menu .nav li:hover > ul {
    display: block;
}
.main-menu .nav li ul {
    min-width: 250px;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #fff;
}

.main-menu .nav li ul li {
	width: 100%;
    margin: 0px;
    border-bottom: 1px solid #FAF5F3;
}

.main-menu .nav li ul li:last-of-type {
    border-bottom: 0px;
}

.main-menu .nav li ul li a {
    white-space: nowrap;
    position: relative;
    display: block;
    font-weight: normal;
    padding: 15px 15px;
    color: #1D1D1D;
    font-family: 'Clarity City Semi';;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    text-decoration: none;
	text-align: left;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
}



.main-menu .nav li ul li a:focus, .main-menu .nav li ul li a:hover {
    color: #1D1D1D;
    text-decoration: none;
    background-color: #C98A3D;
}


/* BUTTONS
*********************************************/

.btn {
    line-height: 1.2 !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s ease !important;
    font-family: 'Clarity City Semi';
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    font-weight: bold !important;
    white-space: break-spaces;
}

.btn:after {
    font-family: 'Font Awesome 5 Pro';
    font-weight: normal; 
    content: "\f178";
    margin-left: 10px;
    position: relative;
    right: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.btn:hover:after {
    right: -5px;
}

.btn-lg {
    padding: 20px 30px !important;
    margin-top: 5px;
}

.btn-sm {
    padding: 15px 25px !important;
    margin-top: 5px;
}

.btn-primary {
    color: #ffffff !important;
    border: 0px !important;
    border-color: transparent !important;
    background: #19535F;
}

.btn-primary:hover {
    background: #C98A3D;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .25);
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: #034A47;
    border-color: #034A47;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(186, 204, 199, .5);
}

.btn-secondary {
    color: #ffffff !important;
    border: 1px solid #C98A3D;
    background: #C98A3D;
}

.btn-secondary:hover {
    color: #ffffff;
    background-color: transparent;
    border: 1px solid #C98A3D;
}

.service-tile .btn-secondary:hover {
    color: #272E37 !important;
}

.btn-outline-secondary, .overlay .btn-primary {
    color: #272E37 !important;
    border-color: #C98A3D !important;
    border-width: 1px !important;
    border-style: solid !important;
    background:  rgba(255, 255, 255, .2);
}

.btn-outline-secondary:after, .overlay .btn-primary:after {
    color: #272E37 !important;
}

.btn-outline-secondary:hover, .overlay .btn-primary:hover {
    background-color: #C98A3D !important;
}

.approach-tile .btn-outline-secondary, .cta-tile .btn-outline-secondary, .overlay .btn-primary {
    color: #ffffff !important;
    background: transparent;
}

.approach-tile .btn-outline-secondary:after, .cta-tile .btn-outline-secondary:after, .overlay .btn-primary:after {
    color: #ffffff !important;
}

.journal a.btn.btn-secondary.btn-sm {
    border: 1px solid #034A47 !important;
    background: transparent;
    color: #034A47 !important;
}

.journal a.btn.btn-secondary.btn-sm:hover {
    background-color: #034A47 !important;
    color: #fff !important;
}
.journal a.btn.btn-secondary.btn-sm:after {
    color: #034A47 !important;
 
 }

.journal a.btn.btn-secondary.btn-sm:hover:after {
   color: #fff !important;

}



/* SECTIONS
*********************************************/

section#home {
    position: relative;
    padding-top: 200px;
}

section#content {
    position: relative;

}

.pos-intro {
    position: relative;
    height: 100%;
}

/* BACKGROUNDS
*********************************************/


/* IMAGES
*********************************************/

.pos-image img {
    width: 100%;
    height: inherit;
}

/* ABOUT
*********************************************/

.pos-position {
    font-family: 'Clarity City Semi';
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0px 0px 15px 0px;
    color: #19535F;
    font-weight: 500;
}

/* APPROACH
*********************************************/

.approach-tile {
    background: #19535F;
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


/* CALL TO ACTION TILE
*********************************************/

.cta-tile {
    background: #19535F;
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* JOURNAL
*********************************************/

.journal-tile {
    background: rgba(255,255,255,0.3);
    border: 1px solid #19535F;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 100%;
}

.page-nav {
    font-family: 'Clarity City';
	font-size: 14px;
	color: #034A47;
	letter-spacing: 1.5px;
	text-transform: uppercase;
    text-decoration: none !important;
}

/* STUDIES
*********************************************/

.studies {
    margin-top: 30px;
}

.studies p {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.studies a {
    text-decoration: none;
}

.studies a:hover {
    text-decoration: underline;
}

.studies ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.studies ul li, .studies ol li {
    margin: 0px 0px 15px 0px;
    border-bottom: 1px solid #C98A3D;
    font-size: 14px;
    line-height: 1.3;
    padding: 0px 10px 10px;
}

/* SERVICES
*********************************************/

.service-tile {
    background: rgba(255,255,255,0.20);
    border: 1px solid #19535F;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.service-tile {
    margin-top: 30px;
    height: 100%;
}

.service-tile ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.service-tile ul li, .service-tile ol li {
    margin: 0px 0px 10px 0px;
    border-bottom: 1px solid #C8D4D6;
    font-size: 15px;
    line-height: 1.3;
    padding: 5px 10px 10px;
}

.service-tile ul li:last-of-type, .service-tile ol li:last-of-type {
    border-bottom: 0px;
}

.service-tile .feature {
    margin-bottom: 15px;
}

.service-tile .cost {
    font-family: 'Clarity City Semi';
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
    color: #19535F;
    border-top: 1px solid #19535F;
    padding-top: 15px;
    margin-bottom: 15px;

}


.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* SERVICES LIST
*********************************************/

.services-tile {
    background: rgba(255,255,255,0.20);
    border: 1px solid #19535F;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.services-tile-link a {
    color: #272E37 !important;
    border-color: #C98A3D !important;
    border-width: 1px !important;
    border-style: solid !important;
    background: #C98A3D;
    padding: 15px 25px !important;
    line-height: 1 !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .3s ease !important;
    font-family: 'Clarity City Semi';
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    font-weight: bold !important;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
}


.services-tile-link a:hover {
    background-color: rgba(255, 255, 255, .2) !important;
    color: #272E37 !important;
    border-width: 1px !important;
    border-style: solid !important;
    background: rgba(255, 255, 255, .2);
}

.services-tile-link a:after {
    color: #272E37 !important;
    font-family: 'Font Awesome 5 Pro';
    font-weight: normal;
    content: "\f178";
    margin-left: 10px;
    position: relative;
    right: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}


.services-tile-link a:hover:after {
    right: -5px;
}

/* LOCATIONS
*********************************************/

.service-image img {
    width: 100%;
    height: inherit;
}


/* SCROLL TO NEXT SECTION
*********************************************/

a.scroll {
    margin-top: 10px;
}

/* TABLES
*********************************************/


table {
    border: solid 1px #19535F;
    border-collapse: collapse;
    border-spacing: 0;
}
table thead th {
    background-color: #19535F;
    border: solid 1px #19535F;
    color: #ffffff;
    padding: 10px;
    text-align: left;
}
table thead th p {
    color: #ffffff;
    margin-bottom: 0px;
}
table tbody td {
    border: solid 1px #19535F;
    padding: 10px;
    background: rgba(255, 255, 255, .2);
}

.yoo-zoo td, .yoo-zoo th {
    padding: 10px !important;
	vertical-align: top;
}

.yoo-zoo tr.white {
	background: #e17656;
}

.yoo-zoo tr.white td p {
	color: #ffffff !important;
	text-transform: uppercase;
}

.yoo-zoo td p, .yoo-zoo th p {
    margin: 0px !important;
}

/* FOOTER
*********************************************/

footer {
 
}
.footer {
    color: #FFFFFF;
    background-color: #19535F;
}

footer .footer ul.footer-disclaimer {
    list-style: none;
	padding: 0px;
	margin: 0px 0 15px 0;
}

footer .footer ul.footer-disclaimer li {
    float: left;
	padding: 0 15px 0 0;
	border-right: 1px solid #ffffff;
	margin: 0 15px 0 0;
	line-height: 14px;
	font-size: 14px;
	color: #ffffff;
}

footer .footer ul.footer-disclaimer li.last {
	border-right: 0px;
}

footer .footer .footer-menu p, footer .footer .footer-menu a {
    font-size: 14px;
    margin-bottom: 10px;
}

footer .footer .grindstone {
    text-align: right;
}

/* OVERLAY MENU
*********************************************/

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #19535F;
    overflow-x: auto;
    overflow: hidden;
    transition: 0.5s;
}

.overlay .menu {
    margin: 0 auto;
    display: block;
    top: 10%;
    position: relative;
}

.overlay .menu ul {
	padding: 10px 0 0;
}

.overlay .menu ul li {
	list-style: none;
	margin: 0px;
    cursor: pointer;
    margin-bottom: 25px;
    line-height: 1.3;
}




.overlay .menu ul li.parent {

}

.overlay .menu ul li ul {
    margin-top: 15px;
    margin-left: 15px;
}

.overlay .menu ul li ul li {
    display: block;
    margin-bottom: 10px;
    margin-right: 30px;
}

.overlay .menu ul li ul li:last-of-type {
    margin-bottom: 0px;
    margin-right: 0px;
}

.overlay .menu ul li ul li a {
    font-size: 13px;
    position: relative;
    white-space: normal;
}

.overlay .menu ul li ul li a::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 2px;
    top: 5px;
    left: -15px;
    display: inline-block;
    background-color: #C98A3D;
    position: absolute;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}





.overlay .menu ul li:last-of-type {
    margin-bottom: 10px;
}

.overlay .menu ul li, .overlay .menu ul li a  {
    font-family: 'Clarity City';
    font-size: 14px;
    letter-spacing: 2.62px;
    color: #FFFFFF;
    padding: 0 2px 10px;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-bottom: 2px solid transparent;
}

.overlay .menu .menu-col {
    border-left: 1px solid #FFFFFF;
    padding: 0 0 0 40px;
}

.overlay .menu .button .nav {
    display: inline-block;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

/* SLIDERS
*********************************************/

[data-rlta-element=container]>[data-rlta-element=button] {
    border-bottom: 1px solid #19535F;
    background-image: url(../images/slide_sprite.png);
    background-position: right -24px;
    background-size: 34px 200px;
    background-repeat: no-repeat;
    background-color: transparent;
    text-decoration: none;
    padding: 10px 40px 10px 10px;
    margin-bottom: 30px;
}

[data-rlta-element=heading] {
    font-family: 'Clarity City';
    color: #19535F;
    line-height: 1.2;
    font-weight: normal;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: none;
}

[data-rlta-element=panel] {
    margin-bottom: 30px;
}

[data-rlta-element=panel-content] {
    border-top: 0px;
    padding: 0px 30px;
}


/* PAGINATION
*********************************************/


.zoo-pagination a:hover, .zoo-pagination span {
    text-decoration: none;
    padding: 15px 20px;
    text-align: center;
    float: left;
    background: #034A47;
    border: 0px;
    color: #fff;
    font-family: 'Clarity City';
    font-size: 15px;
    text-align: center;
    line-height: 22px;
}

.zoo-pagination a {
    text-decoration: none;
    text-align: center;
    padding: 15px 20px;
    float: left;
    color: #034A47;
    border: 0px;
    background: #ffffff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: 'Clarity City';
    font-size: 15px;
    text-align: center;
    line-height: 22px;
}

/* SKIP TO CONTENT
*********************************************/

#skippy {
    display: block;
    padding: 1em;
    color: #034A47 ;
    background-color: #BACCC7;
    outline: 0;
}

.skippy {
	width: 100%;
	min-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

#skippy .skiplink-text {
    padding: .5em;
    outline: 1px dotted;
}


#bfElementGroupNoWrap92, #bfElementGroupNoWrap90,#bfElementGroupNoWrap88 {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

#bfElementGroupNoWrap92 input, #bfElementGroupNoWrap90 input, #bfElementGroupNoWrap88 input {
    flex: auto;
    margin: 5px 0 0 ;
}

#bfElementGroupNoWrap92 label, #bfElementGroupNoWrap90 label, #bfElementGroupNoWrap88 label {
    flex: auto;
    margin: 0px !important;
}

#bfElementGroupNoWrap92::before, #bfElementGroupNoWrap90::before, #bfElementGroupNoWrap88::before {
    content: "Low";
    position: absolute;
    top: 25px;
    left: 5px;
    color: #19535F;
    font-weight: 600;
}

#bfElementGroupNoWrap92::after, #bfElementGroupNoWrap90::after, #bfElementGroupNoWrap88::after {
    content: "High";
    position: absolute;
    top: 25px;
    right: 12px;
    color: #19535F;
    font-weight: 600;
}

/* PARTNERS
*********************************************/


  .partner-tag {
      margin: 0 .5em;
      background: rgba(255,255,255,0.3);
      border: 1px solid #19535F;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
      overflow: hidden;
  }
  
  .partner-tag:hover {
      background: rgba(255, 255, 255, .2);
      transform: scale(1.05);
      cursor: pointer;
  }  
  
  .partner-tag img {
      width: 100%;
      height: inherit;
  }
  
  .slider {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  width: calc(260px * 16);
  display: flex;
  animation: scroll 32s linear infinite;
}

.slide-track:hover {
	animation-play-state: paused;
}

.slide {
	width: 260px;
    height: 150px;
    display: grid;
    place-items: center;
	align-items: center;
    transition: 0.5s;
    cursor: pointer;
	padding: 10px;
}

.slide:hover{
  transform:scale(1.01)
}


@keyframes scroll {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(calc(-260px * 8));
  }
}

@media screen and (max-width: 768px) {

  .slide-track {
    width: calc(180px * 16);
  }

  .slide {
    width: 180px;
	padding: 0px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-180px * 8));
    }
  }
}

/* SLICK SLIDER
*********************************************/

.slick-slide img {
  display: block;
  min-width: 100%;
  width: 100%;
  height: auto;
}

.slick-slider .slide-arrow {
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.slick-slider:hover .slide-arrow {
    opacity: 1;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 5;
}
.slide-arrow:focus {
   outline: none;
}
.prev-arrow {
  left: 30px;
  width: 40px;
    height: 40px;
  background-image: url(../images/prev-arrow.svg);
  background-size: 10px 21px;
  background-repeat: no-repeat;
  background-position: 15px 9px;
  background-color: transparent;
  border: 0px;
}
.next-arrow {
 
    right: 30px;
    width: 40px;
    height: 40px;
    background-image: url(../images/next-arrow.svg);
    background-size: 10px 21px;
    background-repeat: no-repeat;
    background-position: 15px 9px;
    background-color: transparent;
    border: 0px;
}
      
 