@font-face {
    font-family: Nexa;
    src: url("assets/fonts/Nexa-Light.otf") format("opentype");
}

@font-face {
    font-family: NexaBold;
    src: url("assets/fonts/Fontfabric\ -\ NexaBold.otf") format("opentype");
}
* {
    font-family: 'NexaBold', sans-serif;
    z-index: 100;
}
h1, h2, h3, h4, h5, h6, button {
    font-family: 'Coiny', cursive;
}

body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

p {
    font-size: 0.9rem;
}

.chips-bag-section {
    display: flex;
    transition: 0.4s all;
}
.chips-bag-section img {
    width: 100%;
    padding: 1rem;
}

.chips-bag-section .flavour-wrapper {
    position: relative;
    transition: 0.4s all;
}
.chips-bag-section .flavour-wrapper .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.chips-bag-section .flavour-wrapper:hover .overlay {
    opacity: 1;
}

.chips-bag-section .overlay p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    text-align: center;
    width: 92%;
}


.stories {
    background: #f9bc9f;
}
.stories h2 {
    color: #146a8d;
    text-transform: uppercase;
}
.stories img {
    width: 100%;
}
.stories .with-img {
    background-size: cover;
    background-position: center;
    background-image: url(https://thecoconutmama.com/wp-content/uploads/2021/07/coconut-chips-recipe-blog-final-1024x1024.jpg);
}


.home {
    height: 102vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    top: 0;
    z-index: 0;
}

.home video {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: contrast(80%);
}

.home img {
    filter: invert(1);
    width: 150px;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.home .sos-wrapper {
    position: absolute;
    width: 25%;
    right: 0%;
    top: 50%;
    transform: rotate(12deg) translate(-10%, -50%);
}
.home .sos-wrapper img {
    width: 100%;
}
.home h1 {
    color: white;
    font-weight: 600;
}

.home .content-1 {
    position: absolute;
    z-index: 1000;
    left: 3%;
    top: 10%;
}
.home .content-2 {
    position: absolute;
    z-index: 1000;
    right: 3%;
    top: 60%;
}

.home .text-bg {
    width: 65%;
    height: 95%;
    margin-top: 2.5%;
    position: absolute;
}
.home .text {
    width: 65%;
    background-color: rgba(0, 63, 151, .2);
}
.home p {
    margin: 1rem;
}
.home .sos {
    position: absolute;
    width: 17%;
    transform: rotate(15deg) translate(-50%, -50%);
    top: 50%;
    left: 0;
}
.home .sos-right {
    position: absolute;
    width: 17%;
    transform: rotate(-15deg) translate(50%, -50%);
    top: 50%;
    right: 0;
}

.home .sos img, .home .sos-right img {
    width: 100%;
}
.home p {
    font-weight: 500;
    color: white;
}
.home .down {
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 4%);
    animation: arrow-anim infinite ease-in-out 2s;
}
.home .down:hover {
    cursor: pointer;
}

@keyframes arrow-anim {
    0% {
        transform: translate(-50%, 4%);
    }
    50% {
        transform: translate(-50%, -18%);
    }
    100% {
        transform: translate(-50%, 4%);
    }
}


.spacer {
    background-color: rgba(133,203,192);
}
.table-section {
    background-color: #f2b5bc;
    /*height: 85vh;*/
}
.table-section .col-md-6 {
    position: relative;
}
.table-section h2 {
    color: #e9004d;
    text-transform: uppercase;
}
.table-section p {
    color: #494e7f;
}
.table-section td b {
    font-family: NexaBold;
}
.button--mimas {
	text-transform: uppercase;
	letter-spacing: 0.05rem;
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 0.5rem;
	overflow: hidden;
	color: #fff;
	background: #e9004c;
    width: 200px;
    padding: 0.4rem;
    text-align: center;
    box-shadow: #000 2px 3px 8px;
    transition: 0.5s;
}

.button--mimas span {
    position: relative;
    transition: 0.4s;
    color: white !important;
}

.button--mimas::before {
	content: '';
	transform: skew(30deg);
	transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.button--mimas:hover {
	cursor: pointer;
    box-shadow: #000 2px 3px 2px;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
}
  
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

  
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
  
.flip-card-front {
    background-color: #bbb;
    color: black;
}
  
.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
}

.swiper {
    width: 100%;
}
.swiper3 {
    width: 100%;
}
.swiper-slide {
    position: relative;
}
.swiper-slide img {
    width: 100%;
}
.flavours .swiper-slide img {
    width: 90%;
    filter: grayscale(0%);
    transition: 0.5s;
}
.flavours .swiper-slide .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.8rem 0.7rem 0.2rem 0.7rem;
    opacity: 0;
}
.flavours .swiper-slide:hover img {
    transform: scale(1.2);
    filter: grayscale(35%);
    cursor: pointer;
    transition: 0.5s;
}
.flavours .swiper-slide:hover .text {
    opacity: 1;
    filter: grayscale(35%);
    cursor: pointer;
    transition: 0.5s;
}
.flavours .hidden-slide {
    visibility: hidden;
    width: 100%;
}

[data-scroll] {
    transition: all 3s;
}

[data-scroll="in"] {
    opacity: 1;
}
[data-scroll="out"] {
    opacity: 0;
}

.table-section table {
    text-align: left;
}




.flavours {
    background: white;
}
.flavours h2 {
    color: #1b2850;
    text-transform: uppercase;
}

.blockquote {
    padding: 30px 20px 10px 20px;
    position: relative;
}
.blockquote p {
    color: #146a8d;
    font-size: 0.8rem;
    text-align: center;
}


.blockquote::after {
    content: "";
    bottom: -1.4rem;
    left: 50%;
    position: absolute;
    border-bottom: 8px solid #146a8d;
    border-radius: 20px;
    height: 0px;
    transform: translateX(-50%);
    width: 4rem;
}
.blockquote:last-child::after {
    border-bottom: none;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);
.otro-blockquote{
  font-size: 1rem;
  width:60%;
  margin:50px auto;
  font-family:Open Sans;
  font-style:italic;
  color: #555555;
  padding:1.2em 30px 1.2em 75px;
  border-left:8px solid #78C0A8 ;
  line-height:1.6;
  position: relative;
  background:#EDEDED;
}

.otro-blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:#78C0A8;
  font-size:4em;
  position: absolute;
  left: 10px;
  top:-10px;
}

.otro-blockquote::after{
  content: '';
}

.otro-blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1em;
}




.where {
    position: relative;
    height: 40rem;
}
.where .blur {
    position: absolute;
    top: -2%;
    left: -5%;
    height: 7%;
    width: 110%;
    filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.0);
    filter: blur(6px);
    z-index: 9999;
}
.where .left {
    background-color: #e67a3a;
    color: black;
    position: relative;
}
.where .left h2 {
    color: #6a3331;
}
.where .right {
    background-color: #f6e0a4;
    color: white;
    z-index: 100;
    position: relative;
}
.where .right img {
    width: 40%;
    margin: 0 auto;
}
.where h2 {
    color: #6a3331;
}
.where p {
    color: #6a3231;
    font-weight: 500;
}

.where .button, .where .button-2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

/*
.where .left img {
    position: absolute;
    width: 30%;
    right: 0;
    top: 55%;
    transform: translate(50%, -50%);
    z-index: 1000;
    transition: 0.6s all;
}
.where .left img:hover {
    transition: 0.4s all;
    width: 35%;
    cursor: pointer;
}

.where .left .bg-image {
    background-image: url(https://i.pinimg.com/originals/15/4f/df/154fdf2f2759676a96e9aed653082276.png);
    filter: blur(5px);
    height: 50%;
    width: 50%;
    background-size: cover;
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    z-index: 0;
}*/

.button-2:hover {
    cursor: pointer;
    transition: 0.4s;
    box-shadow: #000 2px 3px 3px;
}
.button-2 {
    transition: 0.5s;
    background-color: #e15d26;
    padding: 10px 20px;
    width: 300px;
    border-radius: 12px;
    z-index: 1000;
    font-weight: bolder;
    color: white;
    z-index: 10000;
    box-shadow: #000 2px 3px 10px;
}
.button:hover {
    cursor: pointer;
    transition: 0.4s;
    box-shadow: #000 2px 3px 3px;
}
.button {
    transition: 0.5s;
    background-color: #f9e09a;
    padding: 10px 20px;
    width: 340px;
    border-radius: 12px;
    z-index: 1000;
    font-weight: bolder;
    color: black;
    z-index: 10000;
    box-shadow: #000 2px 3px 10px;
}

footer {
    background-color: #f2b5bc;
    /*background-image: linear-gradient(315deg, #e31e25 0%, #e47f54 74%);
    background-size: 400% 400%;
	animation: gradient 15s ease infinite;*/
}
footer * {
    color: #e9004d;
}
footer span.other {
    color: white;
}

footer .icon-holder {
    justify-content: space-evenly;
}
.footer-copyright {
    background: #e9004d;
}
.footer-copyright {
    color: white;
}
.footer-copyright span {
    color: rgba(255, 255, 255, 0.8);
}
@media(max-width: 768px) {
    footer .d-flex {
        width: 75% !important;
    }
    .swiper2 .swiper-button-prev, .swiper2 .swiper-button-next {
        display: none;
    }
    .left .button.mt-5 {
        margin-top: 1rem !important;
    }
    .flavours .swiper-slide .text {
        padding-bottom: 0.5rem !important;
    }
}














.messages {
	width: 80%;
	margin: 0 auto;

	display: inline-flex;
	flex-flow: column wrap;
}

.message_w_sm{
	display: inline-flex;
	flex-flow: nowrap;
}
.message_w_sm_r{
	align-self: flex-end;
	align-items: flex-end;
	display: inline-flex;
	flex-flow: nowrap;
}
.message_w_sm_r img{
	margin-bottom: 2px;
	height: 36px;
}
.message_w_sm img{
	height: 36px;
	margin-top: 2px;
}

.messages .message {
	font-size: 16px;
	margin: 1.5px;
	max-width: 90%;
}
.oneline{
	display: block;
	font-size: 16px;
	padding-top: 7.5px;
	padding-right: 15px;
	padding-left: 15px;
	height: 40px;
	border-radius: 34px;
}
.moreline{
	padding-top: 6px;
	padding-right: 15px;
	padding-left: 15px;
	height: auto;
	border-radius: 18px;
	padding-bottom: 6px;
}

.message.sender {
	vertical-align: middle;
	font-size: 16px;
	align-self: flex-start;
	background-color: #E3E3E3;
	color: black;
	text-align: left;
}
.message.recipient {
	text-align:right;
	align-self: flex-end;
	color:white;
	background-color: #00add8;
}

.text-with-image-mobile {
    display: none;
}

.text-with-image-right .left-side{
    padding-left: 3rem !important;
}


.text-with-image .left-side img{
    display:none;
}

.text-with-image{
    display:table
}
.text-with-image .left-side,
.text-with-image .right-side{
    width:49%;
    display:table-cell;
    vertical-align:middle;
}

.text-with-image .right-side h2{
    font-weight:500;
    padding-bottom:1.2rem
}
.text-with-image .right-side{
    padding-left:3rem
}
.text-with-image .right-side p{text-align:justify}.text-with-image .left-side img{width:100%}.text-with-image .right-side button{}.text-with-image-right{margin-top:4rem!important;display:table}.text-with-image-right .left-side,.text-with-image-right .right-side{width:49%;display:table-cell;vertical-align:middle}.text-with-image-right .left-side h2{padding-bottom:1.2rem!important}.text-with-image-right .left-side{padding-right:3rem}.text-with-image-right .right-side{background-position:center;background-size:cover}.text-with-image-right .left-side button{border:1px solid #181818;}.text-with-image .left-side img{display:none}.text-with-image{display:table}.text-with-image .left-side,.text-with-image .right-side{width:49%;display:table-cell;vertical-align:middle}.text-with-image .right-side h2{font-weight:500;padding-bottom:1.2rem}.text-with-image .right-side{padding-left:3rem}.text-with-image .right-side p{text-align:justify}.text-with-image .left-side img{width:100%}.text-with-image .right-side button{}.text-with-image-right{margin-top:4rem!important;display:table}.text-with-image-right .left-side,.text-with-image-right .right-side{width:49%;display:table-cell;vertical-align:middle}.text-with-image-right .left-side h2{padding-bottom:1.2rem!important}.text-with-image-right .left-side{padding-right:3rem}.text-with-image-right .right-side{background-position:center;background-size:cover}.text-with-image-right .left-side button{border:none;}

.content table {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
}
.content table td {
    white-space: nowrap;
}





/* RESPONSIVE */
@media(max-width: 768px) {
    .message {
        font-size: 12px !important;
    }
    .home h1 {
        font-size: 20px !important;
        width: 120%;
        margin-left: -10% !important;
    }
    .home {
        overflow: hidden;
    }
    .home .texts {
        margin-top: -7rem;
    }
    .home .sos {
        bottom: 0;
        transform: rotate(15deg) translate(-30%, 30%);
        overflow: hidden;
        top: auto;
        width: 33%;
    }
    .home .sos-right {
        display: none;
    }

    .table-section > div > .d-flex {
        flex-direction: column-reverse !important;
    }

    .table-section .button--mimas {
        margin: 0 auto;
        margin-bottom: 1.6rem;
    }

    .table-section table {
        font-size: 12px;
    }

    .spacer > div > div {
        text-align: center;
    }

    .stories h2 {
        margin: 0 auto;
        width: 95%;
    }
    .stories .d-flex {
        flex-wrap: wrap;
    }

    .where .d-flex {
        flex-direction: column;
    }
    .where .bg-image {
        display: none;
    }
    .where .left img {
        position: relative;
        transform: none;
        margin-top: 3rem;
        width: 40%;
    }

    .text-with-image-right {
        display: none;
    }
    .text-with-image-mobile {
        margin-top: 2rem;
        display: block;
    }
    .text-with-image-mobile p {
        text-align: left;
        font-size: 13px;
        width: 95%;
        margin: 0 auto;
        margin-top: 13px;
    }
    .where {
        height: auto;
    }
    .text-with-image-mobile img {
        width: 94%;
        margin: 0 auto;
        display: block;
    }

    .messages-first {
        width: 110%;
        margin-left: -5%;
    }
    .table-section table {
        margin-top: 0 !important;
    }
    .table-section .texts {
        padding: 1rem;
    }
    .where .button, .where .button-2 {
        transform: none;
        position: relative;
        left: auto;
    }
    .text-with-image-mobile .alairas {
        width: 110px;
    }
    .mobile-only {
        display: block !important;
    }
    .pc-only {
        display: none !important;
    }
    .spacer-box .mobile-only {
        margin: 0 auto;
        text-align: center;
        font-size: 2rem;
    }
}

.mobile-only {
    display: none;
}


.spacer-box p {
    font-size: 5rem;
    margin-left: 80vw;
    font-family: 'Coiny', cursive;
}

.text-with-image-right, .text-with-image-mobile {
    color: #273b76;
}

.parallax {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
  }
  .parallax__layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
  }
  .parallax__layer--base {
    transform: translateZ(10px);
  }
  .parallax__layer--back {
    transform: translateZ(-1px) scale(2);
  }
  .parallax__group {
    position: relative;
    height: 100vh;
    transform-style: preserve-3d;
  }

  .text-with-image-right .right-side{
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.home h2 {
    color: white;
    text-shadow: 0px -3px #d72a5b;
}

.home .text-1 {
    animation: anim1 infinite 50s;
}

@keyframes anim1 {
    0% {
        opacity: 0;
    }
    2% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    22% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.home .text-2 {
    animation: anim2 infinite 50s;
}

@keyframes anim2 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    22% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    42% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.home .text-3 {
    animation: anim3 infinite 50s;
}

@keyframes anim3 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    42% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    62% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.home .text-4 {
    animation: anim4 infinite 50s;
}

@keyframes anim4 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    62% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    82% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.home .text-5 {
    animation: anim5 infinite 50s;
}

@keyframes anim5 {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    82% {
        opacity: 1;
    }
    98% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.headlines {
    /*rgba(233,146,146,255)*/
    
    background: linear-gradient(#f57879 0%, #f2b5bc 100%);
    background-repeat: no-repeat;
    background-position: center;
    width: 100vw;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
}
.headlines h2 {
    font-size: 4.3rem;
}
.headlines .text {
    padding-top: 30%;
    padding-bottom: 10%;
    position: relative;
    left: 50%; 
    transform: translateX(-50%);
    width: 80%;
}
.headlines .text .inactive {
    color: rgba(231, 0, 76, 0.2);
}
.headlines .text .active {
    color: rgba(231, 0, 76, 1);
}

.alairas {
    width: fit-content;
}
.alairas * {
    text-align: center;
}
.alairas img {
    width: 8rem;
}
.alairas p {
    border-top: solid 2px #273b76;
    width: fit-content;
    z-index: 1000;
}

/*
.swiper img {
    transition: 0.5s;
    filter: grayscale(100%);
}
.swiper img:hover {
    transition: 0.4s;
    filter: grayscale(0%);
    cursor: pointer;
}
*/

.swiper-button-prev, .swiper-button-next {
    color: #1b2850 !important;
}

.stories .swiper2 p {
    position: absolute;
    width: 44%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0067a1;
}


.stories .blur {
    position: absolute;
    top: -2%;
    left: -5%;
    height: 7%;
    width: 110%;
    filter: blur(6px);
    z-index: 9999;
    background: #f9bc9f;
}
.flavours .blur {
    position: absolute;
    top: -2%;
    left: -5%;
    height: 7%;
    width: 110%;
    filter: blur(6px);
    z-index: 9999;
    background: white;
}
.headlines .blur {
    position: absolute;
    top: -1vh;
    left: -2%;
    height: 5%;
    width: 110%;
    filter: blur(6px);
    z-index: 9999;
    background: #f57879;
}
.where .blur-down {
    position: absolute;
    bottom: -9%;
    left: -2%;
    height: 10%;
    width: 110%;
    filter: blur(6px);
    z-index: 9999;
    background: white;
}

html, body {
    overflow-x: hidden;
}
.blur {
    overflow-x: hidden;
}

@media(max-width: 768px) {
    .headlines .arrow-wrapper, .headlines .arrow-wrapper-2 {
        display: none;
    }
    @supports ( -webkit-touch-callout : none) {
        .home {
            background-attachment: scroll;
        }
    }
    
    @supports not ( -webkit-touch-callout : none) {
        .home {
            background-attachment: fixed;
        }
    }

    @supports ( -webkit-touch-callout : none) {
        .new-stories {
            background-attachment: scroll !important;
        }
    }
    
    @supports not ( -webkit-touch-callout : none) {
        .new-stories {
            background-attachment: fixed !important;
        }
    }
    
    
    .headlines h2 {
        font-size: 2.4rem !important;
    }
    .blur {
        height: 5% !important;
    }
    .where .blur {
        height: 6% !important;
    }
    .swiper2 .swiper-pagination {
        position: relative;
        margin-top: .8rem;
        margin-bottom: .5rem;
    }
    .swiper2 .col-md-6 img {
        width: 90% !important;
        margin: 0 auto;
    }
    .swiper2 .col-md-6 {
        margin: 0 auto;
    }
    .swiper2 .col-md-6 p {
        width: 65% !important;
    }
    .swiper2 .swiper-button-next {
        display: none;
    } 
    .where .blur-down {
        position: absolute;
        bottom: -2%;
        left: -2%;
        height: 3%;
        width: 110%;
        filter: blur(6px);
        z-index: 9999;
        background: white;
    }
    h1, h2, h3, h4, h5, h6, p {
        text-align: center !important;
    }
}

@media(min-width: 1500px) {
    .swiper2 .col-md-6 img {
        width: 60% !important;
    }
}
@media(max-width: 1400px) {
    .swiper2 .col-md-6 p {
        width: 50%;
    }
    .headlines h2 {
        font-size: 2.7rem;
    }
}

@media(max-width: 1367px) {
    .modal-dialog {
        width: 55% !important;
        max-width: 55% !important;
    }
}
@media(max-width: 768px) {
    .modal-dialog {
        width: 95% !important;
        max-width: 95% !important;
    }
}
.modal {
    padding: 0 !important;
}
.modal .modal-footer .btn {
    background-color: #e15d26 !important;
    color: white !important;
    border-color: #e15d26 !important;
}

.modal .d-flex .col img {
    width: 50%;
    padding: 1.5rem;
    margin: 0 auto;
}

.modal .col a {
    text-decoration: none;
    color: black;
}

@media(max-width: 768px) {
    .modal .d-flex {
        flex-direction: column;
    }
}

table td b {
    color: white;
}
table td {
    color: #5c5985;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    --bs-table-accent-bg: #f0dbdb !important;
}
.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: #e6c2c2 !important;
}
.new-stories {
    background-image: url(assets/background-parallax.jpg);
    background-attachment: fixed;
    height: 30rem;
    background-size: cover;
    background-position: center center;
}
.swiper2 {
    top: 37%;
    height: 30%;
    width: 75%;
    margin: 0 auto;
}
.swiper2 .swiper-wrapper{
    height: 100%;
}

.new-stories .swiper-slide {
    height: 100%;
    text-align: center;
    transition: 0.5s all;
}
.new-stories .bg {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    transition: 0.5s all;
}
.new-stories .bg p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
}
.new-stories .blur {
    position: absolute;
    top: -3%;
    left: -5%;
    height: 7%;
    width: 110%;
    filter: blur(6px);
    z-index: 9999;
    background: white;
}

.arrow-wrapper {
    position: absolute;
    bottom: 15%;
    right: 10%;
}
.arrow-wrapper-2 {
    position: absolute;
    top: 50%;
    left: 4%;
}
.arrow-wrapper-3 {
    position: absolute;
    top: 10%;
    left: 4%;
}
.arrows {
    width: 60px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 20px;
  }
  
  .arrows path {
    stroke: #e7004c;
    fill: transparent;
    stroke-width: 4px;  
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite; 
  }
  
  @keyframes arrow
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  @-webkit-keyframes arrow /*Safari and Chrome*/
  {
  0% {opacity:0}
  40% {opacity:1}
  80% {opacity:0}
  100% {opacity:0}
  }
  
  .arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; /* Safari 和 Chrome */
  }
  
  .arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
  }
  
  .arrows path.a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s; /* Safari 和 Chrome */
  }


  #wrapper {
    display: table;
    width: 100%;
    height: 100%;
  }
  #wrapper-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
  }
  #scroll-down {
    display: block;
    position: relative;
    padding-top: 79px;
    text-align: center;
  }
  .arrow-down {
    display: block;
    margin: 0 auto;
    width: 12px;
    height: 50px;
  }
  .arrow-down:after {
    content: '';
    display: block;
    margin: 0;
    padding: 0;
    width: 13px;
    height: 12px;
    border-top: 4px solid #b91a2f;
    border-right: 4px solid #b91a2f;
    behavior: url(-ms-transform.htc);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  #scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    position: absolute;
    top: 0px;
    left: 50%;
    margin-left: -1px;
    width: 4px;
    height: 90px;
    background: #b91a2f;
    content: ' ';
  }
  @-webkit-keyframes elasticus {
    0% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
    50% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    50.1% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    100% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
  }
  @-moz-keyframes elasticus {
    0% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
    50% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    50.1% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    100% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
  }
  @-o-keyframes elasticus {
    0% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
    50% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    50.1% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    100% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
  }
  @keyframes elasticus {
    0% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
    50% {
      -webkit-transform-origin: 0% 0%;
      -ms-transform-origin: 0% 0%;
      -moz-transform-origin: 0% 0%;
      -o-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    50.1% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -moz-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      transform: scale(1, 1);
    }
    100% {
      -webkit-transform-origin: 0% 100%;
      -ms-transform-origin: 0% 100%;
      -moz-transform-origin: 0% 100%;
      -o-transform-origin: 0% 100%;
      transform-origin: 0% 100%;
      -webkit-transform: scale(1, 0);
      -ms-transform: scale(1, 0);
      -moz-transform: scale(1, 0);
      -o-transform: scale(1, 0);
      transform: scale(1, 0);
    }
  }
  #paschka {
    display: block;
    color: white;
    font-family: helvetica neue, helvetica, arial;
    font-size: 32px;
    text-decoration: none;
    position: fixed;
    bottom: 0px;
    right: 0px;
    padding: 0px;
    transition: all 0.1s ease;
    background: #000;
    height: 40px;
    line-height: 30px;
    vertical-align: middle;
    width: 40px;
    text-align: center;
    border-radius: 5%;
    bottom: 20px;
    right: 20px;
  }
  #paschka:hover {
    background: #232323;
    transition: all 0.1s ease;
    color: #f0f0f0;
  }
.home {
    position: relative;
}

video {
  pointer-events: none;
}