@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes fadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;

  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {

  font-family: 'ProximaNova-Regular', Tahoma, Geneva, Verdana, sans-ser;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: #121212;
  background: #ffffff;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  a,
  button {
   
    border: none;
    outline: none;
  }
}

.menu{ margin: 0px; padding: 0px; position: absolute; width: 100%;}

.header {

  display: block;
  top: 0;
  left: 0;
  width: 100%; 
  height: auto;

  margin: 0px auto 0;
  z-index: 999;

  outline: none;
  
}
.blue-background{background: #1e6298; height: 56px;}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          
}

.inverse { background: rgba(0, 0, 0, 0.8); position: fixed; z-index:10; height: 100%; width: 100%; left:0px; top:0px;}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;  padding-top: 8px; 
}

.name{background: #fff; border-radius: 50%; width: 28px;
  height: 28px; float: right;
  text-align: center;
  font-size: 13px;
  font-weight: bold; margin-left: 15px;
  line-height: 28px;
  margin-top: 11px;}
  
  #usercombo{ position: absolute; background: #fff; z-index: 1; padding: 10px; right: 15px; top: 40px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16); width: 176px;}

  #usercombo .profile-name {
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #usercombo a {
    font-size: 14px;
    color: #000; border-top: 1px solid rgba(150, 150, 150, 0.15); width: 100%; padding: 5px 15px !important;
  }

  #usercombo1{ position: absolute; background: #fff; z-index: 1; padding: 10px; right: 0px; top: 45px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16); width: 176px;}
  #usercombo1 li{ width: 100%; float: left;}
  #usercombo1 .profile-name {
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #usercombo1 a {
    font-size: 14px;
    color: #000; border-top: 1px solid rgba(150, 150, 150, 0.15); width: 100%; padding: 8px 15px !important;
  }

  
  @media screen and (max-width: 767px) {
    #usercombo{ top: 56px;}
    #usercombo li{list-style-type: none;}
  }


.header .menu > ul > li {
  display: inline-block; vertical-align: top;
  line-height: 18px; margin-top: 10px;
  margin-right: 2rem; font-family: 'ProximaNova-Bold', Tahoma, Geneva, Verdana, sans-serif;
}


.header .menu > ul > li:last-child{ margin-right: 0px;}

.header .icon{ width: 36px; float: left; margin-right: 5px;}

.header .menu > ul > li > a {
  position: relative;
  font-family: inherit;
  font-size: 1.125rem; font-family: 'ProximaNova-Regular', Tahoma, Geneva, Verdana, sans-serif;

  line-height: 1.15; padding: 24px 0px;
  border: none;
  outline: none;
  color: #fff;

  text-rendering: optimizeLegibility;
  /* -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: 0.3s ease-in-out; */
  transition: all 0.3s ease-in;
}
.header .menu > ul > li i{ vertical-align: middle;}
.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem; top: 40px;
  padding: 1rem 2rem;
  border: none;
  outline: none; 
  z-index: 500;
display: none!important;
opacity: 0;
    background: #ffffff; box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.1); transition: all 0.3s ease-in;
  /* -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */

}

.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}

.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #012169;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.header .menu > ul > li .menu-subs > ul > li > a .icon{ width: 26px; height: 26px; border-radius: 100%; text-align: center; display: inline-block; font-size: 16px; margin-right: 3px; line-height: 26px; background: #fafafa; border: solid 1px #efefef;;}

.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}

.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); transition: all 0.3s ease-in;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height: 1;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: #012169;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: .25rem 1rem; justify-content:center;
}

.menu-column-4 > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 1.5rem 1rem; 
}

 .menu-column-3 > .list-item{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3%;
      flex: 0 0 33.3%; text-align: center;
padding: 20px 1rem;
}

.menu-column-5 > .list-item{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18%;
      flex: 0 0 18%; text-align: center; padding: 20px 1rem;
}



.menu-subs .btn{ background: #ffffff; border:solid 1px #1e6298; margin-top: 10px; color: #1e6298;   transition: all 0.5s; border-radius: 15px;  border: solid 1px #1e6298; padding: 1px 12px 2px; display: inline-block; font-size: 12px;}
.menu-subs .btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s; font-family: 'ProximaNova-Regular', Tahoma, Geneva, Verdana, sans-serif;
  }


.menu-subs .btn span:after {
    content: '';
    border: solid #1e6298;  padding: 2px;  transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border-width: 0 1px 1px 0;
    position: absolute;
    opacity: 0;
    top: 6px;
    right: -10px;
    transition: 0.5s;
  }
  
  .menu-subs .btn2{ font-size: 18px; padding: 8px 20px; border-radius: 20px; margin-right: 15px;}
  .menu-subs .btn2 span:after{ padding: 4px;  border-width: 0 2px 2px 0;}
  .menu-subs .btn2:hover span {
    padding-right: 20px;
  }

  .menu-subs .get {
    background: #1e6298;
    border: solid 1px #1e6298; font-size: 18px; padding: 8px 20px; border-radius: 20px;
    color: #fff;
    margin-left: 0px;
}
.menu-subs .get span:after { border: solid #ffffff;  padding: 4px;  transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    border-width: 0 2px 2px 0; }
  
   .menu-subs .btn:hover span {
    padding-right: 10px;
  }
  .menu-subs .get:hover span {
    padding-right: 20px;
  }
  .menu-subs .mb{ margin: 20px 0px 20px; width: 100%;}
  
.menu-subs .btn:hover span:after {
    opacity: 1;
    right: 0;
  }

.header .menu .list-item a{ color: #000; transition:all 0.3s ease-in}
.header .menu .list-item a:hover h6{ color: #1e6298; transition:all 0.3s ease-in}
.header .menu .list-item a:hover .img-block{ transform: scale(1.1);}

.header .menu .list-item a:hover .img-cercal{ transform: scale(1.1);}

.header .menu .list-item h6{ text-align: center; font-size: 18px; padding: 10px 0px 0px; font-weight: normal; line-height: 1.1; font-family: 'ProximaNova-Regular', Tahoma, Geneva, Verdana, sans-serif; }
.header .menu .list-item h6 span{ width: 100%; text-align: center; display: inline-block; font-size: 12px; color: #333; padding-top: 5px;}
.img-block{ background: #c1c2c4; display: inline-block; padding: 5px 5px 2px; border-radius: 10px; transition:all 0.3s ease-in}
.img-cercal{ border-radius: 50%; display: flex; padding-top: 20px; align-items: center; box-shadow: 0px 0px 20px rgba(0, 0, 0,0.05); transition: all 0.3s ease-in; background: #fff; text-align:center; display: inline-block; width: 100px; height: 100px;}
.header .menu .text-link{ position: relative;}
.header .menu .text-link h6{text-align: left; transition: all 0.3s ease-in; padding: 0px 25px; border-bottom: solid 1px #efefef; padding-bottom: 15px;}
.header .menu .text-link a:before{content:""; border: solid #ffffff;  padding: 3px;  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg); display: inline-block; position: absolute; left: 31px; top:5px;
  border-width: 0 2px 2px 0; transition: all 0.3s ease-in;}
  .header .menu .text-link a:hover:before{border-color:#1e6298!important; transition: all 0.3s ease-in;}
  .header .menu .text-link a:hover h6{ padding-left: 30px; transition: all 0.3s ease-in;}

.img-block img{ width: 100%;}
.text-center{ text-align: center;} 

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #e91e63;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
  text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
 
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: #c8102e;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #FACC20; 
}

.search-box{
  background: #ffffff;
  position: absolute; text-align: center;
  top: 77px;
  right: 0%;
  width: 100%;
  height: 75px;
  line-height: 70px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
 
  display: none;
}

.search-box:before{
  content: "";
  position: absolute;
  top: -4px;
  right: 216px;
 height: 3px; width: 35px; background:#012169 ;
}

.search-box input[type="text"]{
  width: 45%;
  padding: 10px 10px;
  margin-left: 23px;
  border: 1px solid #012169;
  outline: none;  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.search-box input[type="button"]{
  width: 100px;
 height: 42px;
  background: #012169;
  color: #fff;
  margin-left: -6px;
  border: 1px solid #012169; font-weight: bold; font-size: 1rem;
  outline: none;
  cursor: pointer; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media only screen and (min-width: 993px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 8px; padding: 20px 0px;
    display: inline-block!important; opacity: 1;  -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
}

.menu-mobile-header,  
.menu-mobile-trigger {
  display: none;
}

@media only screen and (max-width: 1023px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .img-block{ margin-top: 20px;}
  .header-item-center{ border-top: none;}

  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .menu-mobile-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem; 
    height: 1.5rem;
    border: none;
    outline: none;

    background: none;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu > ul > li{ margin-left: 0px;}
  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #FFFFFF;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-item-center .overlay { display: block;}
  .header .menu {
    position: fixed!important;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #ffffff;
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin-left: 0!important;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 1.5rem;
 
    padding: .6rem 3.125rem .6rem 1rem; font-size: 1rem!important; color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header-item-right a:hover, .header .menu > ul > li:hover > a{ color: #1e6298;}
  .header .menu > ul > li br{ display: none;}
  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit; padding-left: 15px; line-height: 1;
    color: #121212;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }
  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block!important;
  }
  .menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem 15px 25px; 
  }
  .menu-column-4 > .list-item img.responsive {
    margin-top: 0;
  }
  .menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}


.breadcrumb li:first-child:before{content: ""; padding: 0px;}
.main {display: block; width: 100%;min-height: 100vh; margin-top: 76px;}

@media screen and (max-width: 1250px) {
  .header .menu > ul > li{ margin-right: 1.5rem;}
}

@media screen and (max-width: 1200px) {
  .header .menu > ul > li{ margin-right: 1.15rem;}
}



@media screen and (max-width: 1120px) {
  .header .menu > ul > li{margin-right: 1rem; }
  .header .menu > ul > li > a{font-size: 15px;}

}

@media screen and (max-width: 1080px) {
  .header .menu > ul > li > a{ font-size: 14px;}
  .header .menu > ul > li{ margin-right: 15px;}
}

@media screen and (max-width: 1080px) {
  .menu-subs .get{font-size: 15px;
    padding: 6px 15px;}
    .menu-subs .btn2 {
      font-size: 15px;
      padding: 4px 15px; margin-right: 5px;}
      .menu-subs .btn span::after{ top: 4px;}
}


.cd-top {display: inline-block;height: 40px;width: 40px;position: fixed;bottom: 40px;right: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);overflow: hidden;
   text-indent: 100%;white-space: nowrap;
   background: rgba(232, 98, 86, 0.8) url(../images/top-arrow.png) no-repeat center 50%;
   visibility: hidden; opacity: 0; -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
   transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;}
 
 .cd-top.cd-top--show,
 .cd-top.cd-top--fade-out,
 .cd-top:hover {-webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;}
 .cd-top.cd-top--show {visibility: visible;opacity: 1;}
 .cd-top.cd-top--fade-out {opacity: .9;}
 .cd-top:hover {background-color: #e86256; opacity: 1;}