:root {
    --01: #9D2A27;
    --02: #F1F1F1;
    --03: #8C8C8C;
    --04: #185C5F;
    --05: #1f1a17;
    --bg-white: rgba(255, 255, 255, .7);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    ;
    --margin: 15px;
    --background-dark: #2d3548;
    --text-light: rgba(255, 255, 255, 0.6);
    --text-lighter: rgba(255, 255, 255, 0.9);
    --spacing-s: 5px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
    --width-container: 1200px;
}

@import url("https://fonts.googleapis.com/css?family=Roboto");
h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
    margin: 0;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 12px;
}

a {
    text-decoration: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--05);
    letter-spacing: 1.5px;
}

body._lock {
    overflow: hidden;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

section {
    margin: 30px 0 50px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header .closed-menu {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    outline: none;
    background: none;
}

.closed-icon {
    display: flex;
    width: 20px;
    height: auto;
}

.brand {
    padding: 5px 0;
}

.brand img {
    display: block;
    width: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    margin: 0 auto;
    background: var(--bg-white);
    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    height: 80px;
    margin: 0 auto;
}

.header .menu>.page_item {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.header .menu>.page_item:last-child {
    margin-right: 0;
}

.header .menu>.page_item>a {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 0 3px 0;
    color: var(--05);
    text-transform: capitalize;
}

.header .menu>.page_item>a:hover {
    color: var(--01);
    border-bottom: 2px solid var(--01);
    transition: 0.2s ease-out;
}

.header .burger {
    position: relative;
    cursor: pointer;
    display: none;
    width: 1.75rem;
    height: 1rem;
    margin-top: -0.25rem;
    margin-right: 10px;
    outline: none;
    opacity: 0;
    visibility: hidden;
    background: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.header .burger-line {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: var(--05);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.header .burger-line:nth-child(1) {
    top: 0;
}

.header .burger-line:nth-child(2) {
    top: 0.5rem;
}

.header .burger-line:nth-child(3) {
    top: 1rem;
}

.header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
    .header .menu>.page_item-child:hover>.sub-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .header .menu>.page_item-child:hover>a .expand::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@media only screen and (max-width: 992px) {
    .header .closed-menu {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        top: 5px;
        right: 0.5rem;
    }
    .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    .header .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: auto;
        z-index: 999;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background: var(--05);
        -webkit-box-shadow: var(--shadow-medium);
        box-shadow: var(--shadow-medium);
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .navbar.active {
        left: 0rem;
        opacity: 1;
        visibility: visible;
    }
    .header .menu {
        width: 100%;
        height: auto;
        margin: 3rem 0;
    }
    .header .menu>.page_item {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }
    .header .menu>.page_item>.sub-menu>.page_item>a {
        padding: 0.625rem 2rem;
        color: var(--05);
    }
    .header .burger {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}


/*first screen*/

.swiper__item {
    background-position: center;
    background-size: cover;
    min-height: 600px;
    height: 100vh;
}

.top-offer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.top-offer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-white);
    padding: 30px 50px;
    border-radius: 5px;
}

.top-offer__content h2 {
    text-transform: capitalize;
}

.top-offer__content h1 {
    text-transform: capitalize;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 40px;
    background-color: var(--01);
    color: var(--02);
    text-transform: uppercase;
}

.btn:hover {
    color: var(--05);
    transition: 0.2s ease-in-out;
}

.btn:focus {
    outline: 1px dashed var(--04);
    outline-offset: 3px;
}


/*priority*/

.priority__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plus {
    background-color: var(--01);
    padding: 30px;
    display: flex;
    width: 237px;
    margin-top: -100px;
    z-index: 2;
    position: relative;
    border-right: 1px var(--02) solid;
}

.plus:last-child {
    border-right: none;
}

.image {
    margin-right: 20px;
}

.image img {
    display: block;
    max-width: 150px;
}

.plus__content {
    color: var(--02);
}


/*comun style*/

.name-block {
    text-align: center;
    margin: 130px 0 60px;
    text-transform: uppercase;
}


/*destinations*/

.img {
    width: 310px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    position: relative;
    transform-origin: center;
    transform: scale(1) translateZ(0);
}

.slide-conteiner {
    display: flex;
}

.slide-text {
    position: absolute;
    top: 10%;
    left: 10%;
}

.slide-text h3 {
    color: var(--02);
}

.side-card {
    margin: 10px;
}

.img:hover {
    transform: scale(1.05) translateZ(0);
    transition: 0.5s ease;
}

.img:hover>.slide-text {
    top: 40%;
    transition: 0.3s ease;
    font-size: 30px;
}

.img:hover>.slide-text h3 {
    color: var(--01);
    font-weight: 800;
}

.slide-conteiner:hover>.side-card:not(:hover) .img {
    opacity: 0.5;
}


/*(mody)
.slide-conteiner:hover > .side-card:not(:hover) .img {
 filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
 transition: 0.2s ease-in-out;
}
/*post hot*/

.container_post {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.container_post .post {
    width: 350px;
    height: 400px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-large);
}

.container_post .post:hover .header_post {
    margin-top: -20px;
}

.container_post .post:hover .body_post {
    height: 45%;
}

.container_post .post:hover img {
    transform: translatey(-10px) translatex(-5px) scale(1.05);
}

.container_post .post:hover .ribbon img {
    transform: none;
}

.container_post .post .header_post {
    width: 100%;
    height: 40%;
    background: #ddd;
    position: absolute;
    top: 0;
    -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}

.container_post .post .header_post img {
    max-width: 100%;
    height: auto;
    transition: ease-in-out 600ms;
}

.container_post .post .body_post {
    width: 100%;
    height: 60%;
    background: #fff;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
    cursor: pointer;
}

.container_post .post .body_post .post_content {
    width: 80%;
    height: 80%;
    background: #fff;
    position: relative;
}

.container_post .post .body_post .post_content h1 {
    font-size: 20px;
    font-weight: bold;
}

.container_post .post .body_post .post_content p {
    font-size: 14px;
    font-weight: normal;
}

.container_post .post .body_post .post_content .container_infos {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 25px;
}

.container_post .post .body_post .post_content .container_infos .postedBy {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.container_post .post .body_post .post_content .container_infos .postedBy span {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.5;
    letter-spacing: 1px;
    font-weight: bold;
}


/*lable card*/

.vizible {
    position: relative;
}

.lable {
    position: absolute;
    width: 125px;
    height: 125px;
    overflow: hidden;
    z-index: 1;
    right: -10px;
    top: -10px;
}

.lable::before,
.lable::after {
    content: '';
    display: block;
    position: absolute;
    border: 5px solid var(--01);
    border-top-color: transparent;
    border-right-color: transparent;
    z-index: -1;
}

.lable::before {
    top: 0;
    left: 0;
}

.lable::after {
    right: 0;
    bottom: 0;
}

.lable span {
    display: block;
    position: absolute;
    width: 220px;
    padding: 10px 0;
    color: var(--02);
    text-align: center;
    font-weight: 700;
    text-transform: capitalize;
    background-color: #b83a35;
    box-shadow: var(--shadow-small);
    left: -32px;
    top: 23px;
    transform: rotate(45deg);
}


/*
.ribbon {
    width: 50px;
    height: 50px;
    background-color: var(--01);
    position: absolute;
    right: 10px;
    z-index: 1;
    box-shadow: var(--shadow);
}

.ribbon:before {
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -20px;
    border-left: 25px solid var(--01);
    border-right: 25px solid var(--01);
    border-bottom: 20px solid transparent;
}

.ribbon img {
    position: relative;
    width: 23px;
    margin: 0 auto;
    top: calc(50% - 16px);
}
*/

.bg-position {
    background-repeat: no-repeat;
    background-size: 100%;
}

.bg-position h2 {
    padding: 200px 0;
}


/*
@keyframes top {
  0% {
    opacity: 0;
    bottom: -80px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes icon {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-2deg);
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
/*sction article*/

h2 {
    pointer-events: none;
}

.article-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.article-container .card {
    position: relative;
    width: 500px;
    height: 200px;
    background-color: #fff;
    overflow: hidden;
    margin-right: 20px;
    box-shadow: var(--shadow-small);
}

.article-container .card:before {
    content: "";
    z-index: 99;
    position: absolute;
    top: -10px;
    left: 32px;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: #E6E5E1;
}

.article-container .card:after {
    content: "";
    z-index: 99;
    position: absolute;
    bottom: -10px;
    left: 32px;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: #E6E5E1;
}

.article-container .card ul {
    z-index: 99;
    position: absolute;
    left: 39px;
    top: 6px;
    list-style-type: none;
}

.article-container .card ul li {
    width: 2px;
    height: 2px;
    border-radius: 2px;
    margin: 6px 0;
    background-color: #E6E5E1;
}

.article-container .card h2 {
    z-index: 99;
    font-family: "Poppins", sans-serif;
    position: absolute;
    bottom: 0;
    right: 60px;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.article-container .card .fa-arrow-right {
    z-index: 1;
    position: absolute;
    right: 27px;
    bottom: 25px;
    font-size: 40px;
    cursor: pointer;
}

.article-container .card p {
    z-index: 99;
    position: absolute;
    top: 20px;
    right: 70px;
    color: #333;
    opacity: 0.7;
    font-size: 12px;
    letter-spacing: 1px;
    writing-mode: vertical-lr;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.article-container .card .pic {
    z-index: 100;
    filter: grayscale(100%);
}

.article-container .card .social {
    position: absolute;
    left: 60px;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 64px;
    border-radius: 80px;
}

.article-container .card .social i:nth-of-type(1) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.article-container .card .social i:nth-of-type(2) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.article-container .card .social i:nth-of-type(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.article-container .card .social i:nth-of-type(4) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.article-container .card:hover i {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.article-container .card button {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 30px;
    height: 30px;
    background-color: var(--01);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    mix-blend-mode: hard-light;
}

.article-container .card button i {
    font-size: 3rem;
}

.article-container .card:hover button {
    transform: scale(16.5);
}

.article-container .card:hover p {
    color: #fff;
}

.article-container .card:hover .pic {
    filter: grayscale(0);
}

.article-container .card2 .pic {}

.article-container .card2 button {
    background-color: var(--01);
}

.dr {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 100px;
}

.fas img {
    display: block;
}


/*section mc4wp */

.mc__container {
    display: flex;
    justify-content: center;
}

.mc4wp-form-fields {
    display: flex;
    gap: 10px;
    align-items: center;
}

.mc4-marion {
    padding: 8px 15px;
}

.mc4-btn {
    padding: 8px 10px;
}


/*section comment*/

.comment__slider .swiper-button-prev:after,
.comment__slider .swiper-button-next:after {
    font-size: 12px;
    font-weight: 700;
    color: var(--02);
    background-color: var(--01);
    border-radius: 20px;
}

.swiper-button-next:after {
    padding: 11px 12px 11px 14px;
}

.swiper-button-prev:after {
    padding: 11px 14px 11px 12px;
}

.comment__box {
    width: 80%;
    margin: 0 auto;
}

.comment__box blockquote {
    background-color: var(--03);
    padding: 20px;
    color: var(--02);
    position: relative;
    margin-bottom: 26px;
}

.comment__box blockquote::after,
.comment__box blockquote::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.comment__box blockquote::before {
    width: 20px;
    height: 20px;
    background: var(--03);
    box-shadow: inset 12px 0 13px rgba(0, 0, 0, 0.5);
}

.comment__box blockquote::after {
    width: 0;
    height: 0;
    border: 10px solid var(--03);
    border-bottom-color: #fff;
    border-left-color: #fff;
}

cite {
    margin-left: 40px;
    color: var(--01);
    font-weight: 700;
}


/*footer*/

footer {
    margin-top: 80px;
    background-color: var(--05);
    color: var(--02);
}

.footer .container {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}

.contacte h3,
.map h3,
.footer-menu h3 {
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contacte,
.footer-menu {
    width: 250px;
    border: 1px solid #fff;
}

.map {
    max-width: 650px;
    border: 1px solid #fff;
    text-align: center;
}


/*coment*/

.sw-coment {
    width: 75%;
    height: 180px;
}

.item-coment h2 {
    text-align: center;
}


/*right*/

.container__right {
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
    align-items: flex-end;
}

.curs-v {
    margin-top: 195px;
}


/*single*/

.top-p {
    position: relative;
    margin-top: 80px;
}

.top-p img {
    display: block;
    width: 100%;
    height: 50vh;
    position: absolute;
}

.title-p {
    display: flex;
    height: 50vh;
    justify-content: center;
    align-items: center;
    position: relative;
}

.title-p h1 {
    background-color: var(--bg-white);
    padding: 30px 70px;
    text-transform: capitalize;
    font-style: italic;
    border-radius: 5px;
}

.container__full {
    display: flex;
}

.container__leftv2 {
    width: 70%;
}

.container__rightv2 {
    width: 30%;
}

.templ-label {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: -87px;
    box-shadow: var(--shadow-medium);
}

.templ-label h2 {
    text-align: center;
    padding: 20px 0;
    background-color: var(--01);
    color: var(--02);
    font-style: italic;
}

.templ-label p {
    text-align: right;
    font-size: 35px;
    background-color: var(--03);
    margin-top: 0;
    padding: 30px 0;
    padding-right: 10px;
    color: var(--t-v2);
}

.templ-label p span {
    font-weight: 500;
    font-size: 25px;
    color: var(--01);
}

.templ-label h3 {
    text-align: center;
    padding-bottom: 30px;
}

.hotels__name h3 {
    margin-bottom: 20px;
    margin-top: 40px;
}

.list_plus li {
    list-style-type: circle;
    margin-left: 30px;
    line-height: 1.9em;
}

.title-top {
    margin-bottom: 50px;
    max-width: 400px;
    border-bottom: 2px solid #fd264f;
    padding-bottom: 20px;
    text-align: center;
    color: #727272;
}

.benefits__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.row__time img,
.row__start img,
.row__end img,
.row__medical img,
.row__feeding img,
.row__transport img {
    max-width: 70px;
    height: 70px;
    display: block;
    margin-right: 30px;
}

.row__time p,
.row__start p,
.row__end p,
.row__medical p,
.row__feeding p,
.row__transport p {
    margin-top: 5px;
}

.row__time,
.row__start,
.row__end,
.row__medical,
.row__feeding,
.row__transport {
    display: flex;
    align-items: center;
    width: 250px;
    margin-bottom: 30px;
    margin: 0 auto 40px;
}

.row__time svg,
.row__start svg,
.row__end svg,
.row__medical svg,
.row__feeding svg,
.row__transport svg {
    width: 50px;
    margin-right: 20px;
}

.cls-1 {
    fill: var(--01);
}


/*hotels*/

.hotels-top {
    position: relative;
    margin-top: 80px;
}

.hotels-top img {
    display: block;
    width: 100%;
    height: 70vh;
    position: absolute;
}

.offer-name {
    text-align: center;
    margin-top: 60px;
}

.destination-name {
    position: absolute;
    display: flex;
    width: 100%;
    height: 70vh;
    justify-content: center;
    align-items: center;
}

.destination-name h1 {
    background-color: var(--bg-white);
    font-size: 35px;
    font-weight: 700;
    font-style: italic;
    text-transform: capitalize;
    padding: 20px 40px;
    border-radius: 5px;
}


/*mesenge*/

@-webkit-keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }
    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }
    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }
    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

@keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }
    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }
    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }
    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

.floating-container {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    margin: 35px 25px;
}

.floating-container:hover {
    height: 300px;
}

.floating-container:hover .floating-button {
    box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
    -webkit-transform: translatey(5px);
    transform: translatey(5px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.floating-container:hover .element-container .float-element:nth-child(1) {
    -webkit-animation: come-in 0.4s forwards 0.2s;
    animation: come-in 0.4s forwards 0.2s;
}

.floating-container:hover .element-container .float-element:nth-child(2) {
    -webkit-animation: come-in 0.4s forwards 0.4s;
    animation: come-in 0.4s forwards 0.4s;
}

.floating-container:hover .element-container .float-element:nth-child(3) {
    -webkit-animation: come-in 0.4s forwards 0.6s;
    animation: come-in 0.4s forwards 0.6s;
}

.floating-container .floating-button {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #2cb3f0;
    bottom: 0;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

.floating-container .float-element .material-icons {
    vertical-align: middle;
    font-size: 16px;
}

.floating-container .float-element:nth-child(1) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}

.floating-container .float-element:nth-child(2) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}

.floating-container .float-element:nth-child(3) {
    background: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}