/*
style.css
---------
ICE
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma;
    line-height: 1.6em;
    width: 100%;
}

body a:link {
    color: rgb(236, 240, 241);
    text-decoration: none;
}

body a:visited {
    text-decoration: none;
    color: rgb(236, 240, 241);
}

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

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

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1.2s;
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.arrow {
    position: fixed;
    bottom: 55px;
}

.cover2 {
    -webkit-box-shadow: 1px 5px 8px rgba(255,255,255, 0.3);
    -moz-box-shadow: 1px 5px 8px rgba(255,255,255, 0.3);
    box-shadow: 1px 5px 8px rgba(255,255,255, 0.3);
    width: 27%;
}


.cover {
    -webkit-box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.33);
    width: 27%;
}

#menu li {
    text-align: right;
    list-style: none;
}

#menu li.active {
    background: #000;
    background: rgba(0, 0, 0, 0);
        color: rgb(236, 236, 236);
}

#menu li a {
    text-decoration: none;
        color: rgb(236, 236, 236);
}

#menu li.active a:hover {
        color: rgb(236, 236, 236);
}

#menu li:hover {}

#menu li a,
#menu li.active a {
    padding: 4px 18px;
    display: block;
}

#menu li.active a {
    color: #737CA1;
}

#menu {
    position: fixed;
    top: 0;
    right: 2%;
    height: 40px;
    z-index: 70;
    padding: 0;
  margin-top:2%;
}

html.fp-enabled,
.fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    top: 8%;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box;
    /* <=28 */
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

@-webkit-keyframes uparrow {
  0% { -webkit-transform: translateX(0); opacity: 0.4 }
  100% { -webkit-transform: translateX(-0.4em); opacity: 0.9 }
}
@-webkit-keyframes downarrow {
  0% { -webkit-transform: translateX(0); opacity: 0.4 }
  100% { -webkit-transform: translateX(0.4em); opacity: 0.9 }
}

.fp-controlArrow {
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 8px;
    opacity:0.4;
}

.fp-controlArrow.fp-prev {
      left: 1%;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.fp-controlArrow.fp-next {
      right: 1%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}


.fp-scrollable {
    overflow: hidden;
    position: relative;
}

.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    border: 0 !important;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translate3d(0, -50%, 0);
}

#fp-nav.fp-right {
    display: none;
}

#fp-nav.fp-left {
    display: none;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0 !important;
    right: 0;
    margin: 0 auto !important;
}

.fp-slidesNav.fp-bottom {
    bottom: 17px;
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 3s;
}

.fp-slidesNav.fp-top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: inline-block;
    width: 1x;
    height: 1px;
    margin: 9px;
    position: relative;
}

.fp-slidesNav ul li {}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 8px;
    width: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 100%;
    background: none;
    border: 1px solid black;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: black;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0px 0px -5px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #000;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active+.fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.fp-right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.fp-left {
    left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
    height: auto !important;
}

#section1 {
    background-color:black;
}

#section2 {
    background: -webkit-gradient(linear, top left, bottom left, from(#4bbfc3), to(#7baabe));
    background: -webkit-linear-gradient(#FAC042, #FA8B22);
    background: linear-gradient(30deg, #FAC042 #F98A21 50%, #FA8B22 50% 100%);
}

.scroll-icon {
    position: absolute;
    left: 50%;
    bottom: 4%;
    padding: 0 10px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 3s;
}

/* Popup container - can be anything you want */
.popup {
    margin-top:1%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: auto;
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 3s;
}

/* The actual popup */
.popup .popuptext {
    visibility: hidden;
    width: 200px;
    background-color: rgba(222,232,238, 0.3);
    text-align: center;
    border-radius: 6px;
    padding: 20px 50px 20px 50px;
    position: absolute;
    z-index: 1;
  	margin-bottom: 40px;
    bottom: 135%;
    left: 50%;
    margin-left: -100px;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.33);
}

/* Popup arrow */
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
}

/* Toggle this class - hide and show the popup */
.popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 2s;
    animation: fadeIn 2s;
}


/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*Only display content to screen readers*/
.fp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.img-container {
    overflow:hidden;

}

.modal {
    background : rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.7s ease-out;
}

.modal.open {
    opacity: 1;
    pointer-events: all;
}

.full-img {
    position: absolute;
    height: 70%;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.7s ease-out;
}

.full-img.open{
    transform: translate(-50%, -50%) scale(1);

}

.full-img2 {
    position: absolute;
    height: 70%;
    top:50%;
    left:150%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.7s ease-out;
}

.full-img.open2{
    transform: translate(-50%, -50%) scale(1);

}

.full-img3 {
    position: absolute;
    height: 70%;
    top:150%;
    left:50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.7s ease-out;
}

.full-img.open3{
    transform: translate(-50%, -50%) scale(1);

}

.modal p {
    color:white;
    font-size: 2rem;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -5%);
}

/* 100% Image Width on Smaller Screens */
@media screen and (max-width: 640px) {

    .cover {
        width: 60%;
    }
  
    .cover2 {
        width: 60%;
    }

.fp-controlArrow.fp-prev {
      left: 3%;
}

.fp-controlArrow.fp-next {
      right: 3%;
}

.scroll-icon {
    bottom: 6%;

}  
}