 a,
 button,
 p {
    font-family: Roboto, sans-serif !important
}

 .banner-heading,
 .page-heading h1 {
    font-family: var(--heading-font) !important;
    text-align: center
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/roboto/Roboto-Regular.ttf);
    font-weight: 400
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/roboto/Roboto-Medium.ttf);
    font-weight: 500
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/roboto/Roboto-Bold.ttf);
    font-weight: 700
}

@font-face {
    font-family: Gloock;
    src: url(../fonts/gloock/Gloock-Regular.ttf);
    font-weight: 900
}


body {
    --PrimaryColor: #f05f75;
    --ButtonColor: #5e9a8d;
    --ButtonTextColor: #fff;
    --heading-font: 'Gloock', serif;
    --LightBg: #0e0e0e;
    --headingColor: #333333;
    --textcolor: #676d7f;
    --BackgroundImage: url(../img/bg-shade.jpg);
    --BackgroundColor: #e7f0ee;
    background: var(--BackgroundColor);
    font-family: Roboto, sans-serif;
}

body::before {
    width: 100%;
    height: 100vh;
    position: fixed !important;
    left: 0;
    top: 0;
    z-index: -10;
    content: '';
    background: var(--BackgroundImage) no-repeat center center var(--BackgroundColor);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    opacity: .1;
}



 button {
    transition-duration: .3s;
    outline: 0 !important
}

 p {
    font-size: 16px;
    line-height: 28px;
    color: var(--textcolor);
    font-family: Roboto, sans-serif;

}

 a {
    outline: 0 !important;
    transition-duration: .3s
}

 .container-fluid {
    padding-left: 140px;
    padding-right: 90px;
}

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
    color: var(--headingColor);
    padding: 0;
    margin: 0;
    font-family: Roboto, sans-serif
}

::-webkit-scrollbar {
    width: 8px;
    height: 0
}

::-webkit-scrollbar-track {
    border-radius: 0
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--PrimaryColor);
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--PrimaryColor)
}


 .bannerwrapper-div {
    height: calc(100vh - 120px);
    display: table;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

 .banner-wrapper-div {
    width: 100%;
    overflow: hidden;
    position: relative;
}



 .bannerwrapper-div .carousel {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1000;
}

 .bannerwrapper-div .carousel-inner {
    width: 550px;
    height: 550px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    left: 50%;
    margin-left: -270px;

    animation: 4s infinite alternate bannerimg-anim;
    transform-origin: center;
    transform-box: fill-box
}

@keyframes bannerimg-anim {
    0% {
        transform: rotate(10deg)
    }

    50% {
        transform: rotate(-10deg)
    }

    100% {
        transform: rotate(10deg)
    }
}

 .bannerwrapper-div .carousel-inner img {
    width: 550px;
    height: 550px;
    object-fit: cover;
}

 .banner-caption-wrap {
    height: calc(100vh - 120px);
    display: table;
}

 .banner-caption-wrap .bannermiddle-align {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

 .banner-caption-wrap .bannermiddle-align h1 {
    font-size: 145px;
    padding: 0;
    margin: 0;
    color: var(--PrimaryColor);
    line-height: 160px;
    font-weight: 900;
}

 .banner-caption-wrap .bannermiddle-align h6 {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--headingColor);
}

 .banner-caption-wrap .bannermiddle-align h5 {
    padding: 0;
    margin: -10px 0px 0px 0px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--headingColor);
}

 .sidemenu-wrapper {
    width: 100px;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    display: table;
    z-index: 1030;
}

 .sidemenu-wrapper .menu-middle-align {
    display: table-cell;
    vertical-align: middle;
}

 .sidemenu-wrapper .menu-middle-align ul {
    width: 60px;
    position: relative;
    left: 20px;
    background: var(--ButtonColor);
    padding: 10px 0px;
    border-radius: 30px;
    margin: 0;
}

 .sidemenu-wrapper .menu-middle-align ul li {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;

}

 .sidemenu-wrapper .menu-middle-align ul li a {
    height: 50px;
    line-height: 50px;
    color: var(--ButtonTextColor);
    font-size: 15px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
}

 .sidemenu-wrapper .menu-middle-align ul li:last-child:before {
    display: none;
    visibility: hidden;
}

 .sidemenu-wrapper .menu-middle-align ul li:before {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 1px;
    background: var(--ButtonTextColor);
    content: '';
    opacity: 0.2;
}

 .sidemenu-wrapper .menu-middle-align ul li font {
    position: absolute;
    left: 20px;
    width: auto;
    top: 12px;
    background: var(--ButtonColor);
    font-size: 13px;
    height: 26px;
    line-height: 26px;
    padding: 0px 12px;
    border-radius: 3px;
    opacity: 0;
    transition-duration: 0.3s;
    white-space: nowrap;
}

 .sidemenu-wrapper .menu-middle-align ul li a:hover font {
    opacity: 1;
    left: 65px;
}

 .waitingfor-adventure {
    width: 100%;
    height: 100px;
    background: var(--ButtonColor);
    border-radius: 5px;
}

 .waitingfor-adventure h2 {
    color: var(--ButtonTextColor);
    font-family: var(--heading-font);
    padding: 0;
    margin: 0;
    font-size: 42px;
}

 .waitingfor-adventure h5 {
    width: 100%;
    padding: 0;
    margin: 18px 0px 0px 0px;
    color: var(--ButtonTextColor);
    font-size: 18px;
    font-weight: normal;
}

 #countdown ul {
    width: 100%;
    padding: 0px 7px 0px 0px;
    margin: 10px 0px 0px 0px;
    display: block;
    text-align: right
}

 #countdown ul li {
    list-style: none;
    padding: 21px 0 0;
    margin: 0 5px;
    text-align: center;
    min-height: auto;
    width: 80px;
    height: 80px;
    display: inline-block;
    position: relative;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden
}



 #countdown ul li font {
    width: 100%;
    height: auto;
    line-height: 20px;
    color: var(--ButtonTextColor);
    text-align: center;
    display: inline-block;
    font-weight: 600;
    font-size: 34px
}

 #countdown ul li h6 {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    color: var(--ButtonTextColor);
    font-weight: 400;
    font-size: 12px;
    opacity: 1
}


 .whatsapp-sharebtn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1050;
    border: none;
    background-color: var(--ButtonColor);
    text-align: center;
    width: 60px;
    height: 60px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 0;
    color: var(--ButtonTextColor);
    font-size: 22px;
    cursor: pointer;
    outline: 0 !important;
    line-height: 60px
}

 .whatsapp-sharebtn:hover {
    text-decoration: none;
    color: var(--ButtonTextColor)
}


 .header-topfixed {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1020
}

 .header-topfixed button {
    width: 45px;
    height: 45px;
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    float: right;
    padding: 0;
    margin: 0 0 0 1px;
    border: none;
    outline: 0;
    font-size: 16px;
    cursor: pointer
}

 .menu-btn {
    display: none;
    visibility: hidden;
}

 .banner-date {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: var(--headingColor);
    position: relative;
    margin-top: 45px;
}

 .banner-date font {
    position: relative;
    bottom: 18px;
}

 .banner-date span {
    color: var(--PrimaryColor);
    padding: 0px 20px;
    margin: 0px 20px;
    font-size: 64px;
    font-weight: 900;
    position: relative;
}

 .banner-date span::before {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    background: var(--headingColor);
    opacity: 0.2;
}

 .banner-date span::after {
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    content: '';
    background: var(--headingColor);
    opacity: 0.2;
}

 .heading-container {
    width: 100%;
    display: block;
    margin-bottom: 25px;
}

 .heading-container h2 {
    width: 100%;
    text-align: center;
    font-family: var(--heading-font);
    color: var(--headingColor);
    padding: 0;
    margin: 0;
    font-size: 54px;
}

 .heading-container span {
    width: 100%;
    padding: 0;
    display: block;
    margin: 0px 0px 0px 0px;
    text-align: center;
}

 .heading-container span svg {
    height: 35px;
    display: inline-block;
}

 .heading-container span .st0 {
    fill: var(--PrimaryColor);
}

 .underline-text {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    margin-top: 90px;
    height: 15px;
    position: relative;
}

 .underline-text svg {
    height: 15px;
    position: absolute;
    top: 0px;
    right: 0px;

    animation: 4s infinite alternate underline-wave;
    transform-origin: left;
    transform-box: fill-box
}

@keyframes underline-wave {

    0% {
        right: 0px;
    }

    100% {
        right: -200px;
    }


}


 .underline-text .st0 {
    fill: var(--PrimaryColor);
}

 .happycouples-wrapper {
    padding-top: 90px;
    text-align: center;
    position: relative
}

 .happycouples-wrapper .col-xl-4 ul {
    width: 100%;
    padding: 0;
    margin: 30px 0 0;
    text-align: center;
    display: table
}

 .happycouples-wrapper .col-xl-4 ul li {
    list-style: none;
    padding: 0;
    margin: 2px;
    display: inline-block
}

 .happycouples-wrapper .col-xl-4 ul li a {
    width: 35px;
    height: 35px;
    display: inline-block;
    text-align: center;
    border: 1px solid var(--ButtonColor);
    font-size: 14px;
    line-height: 35px;
    border-radius: 50%;
    color: var(--ButtonColor);
    transition-duration: .3s
}

 .happycouples-wrapper .col-xl-4 ul li a:hover {
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    text-decoration: none
}

 .happycouples-wrapper .col-xl-4 h4 {
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
    font-size: 22px
}

 .happycouples-wrapper .col-xl-4 span {
    width: 250px;
    height: 250px;
    background:  #c4c4c4;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
    overflow: hidden;
}

 .happycouples-wrapper .col-xl-4 span img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

 .couple-middle-image {
    width: 100%;
    position: relative;
    display: table;
    height: 100%
}

 .couple-middle-image font svg {
    width: 18vw
}

 .couple-middle-image font {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

 .couple-middle-image .st0 {
    fill: var(--PrimaryColor);
}

 .middle-btns-wrapper button {
    width: 100%;
    padding: 30px 0px;
    margin: 0;
    text-align: center;
    color: var(--ButtonTextColor);
    background: var(--ButtonColor);
    border: none;
    outline: none;
    border-radius: 5px;
}

 .middle-btns-wrapper button h6 {
    width: 100%;
    padding: 0;
    margin: 0;
    color: var(--ButtonTextColor);
    font-size: 16px;
}

 .middle-btns-wrapper button span {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 32px;
    background: rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    margin-bottom: 8px;
}

 .middle-btns-wrapper button i {
    font-size: 24px;
}

 .middle-btns-wrapper {
    margin-top: 75px;
}


 .youtube-thumbnail {
    width: 100%;
    position: relative;
    display: inline-block
}

 .youtube-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover
}

 .youtube-thumbnail button {
    padding: 0;
    margin: -35px 0 0 -35px;
    background: 0 0;
    outline: 0;
    border: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 50;
    color: var(--ButtonColor);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 62px;
    line-height: 70px
}


 .warm-regards .col-xl-3 h5 {
    color: var(--headingColor);
    padding: 0;
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    text-align: center
}

 .warm-regards .col-xl-3 h6 {
    color: var(--textcolor);
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    text-align: center
}

 .warmregards-con {
    width: 100%;
    text-align: center;
    display: block
}

 .warmregards-con span {
    width: 140px;
    height: 140px;
    background: url("../img/savedate-logo.svg") center center/80px 80px no-repeat #fddfb7;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden
}

 .warmregards-con span img {
    width: 100%;
    height: 140px;
    object-fit: cover
}



 .footer-con {
    width: 100%;
    margin-top: 0px;
    text-align: center
}

 .thankyou-img {
    width: 300px
}

 .footer-con .cycle {
    width: 100%;
    float: left;
    margin-top: 60px
}

 .footer-con .cycle img {
    width: 130px
}

 .footer-btm {
    width: 100%;
    margin-top: 0;
    padding-bottom: 40px
}

 .underline-img {
    width: 30%;
    margin: 20px 35%
}

 .digital-card {
    padding: 0;
    margin: 45px 0 0;
    text-transform: uppercase;
    background: 0 0;
    border: none;
    outline: 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500
}

 .footer-links {
    margin-top: 00px;
    margin-bottom: 30px
}

 .footer-links .col-lg-6:first-child {
    text-align: right;
    padding-right: 45px
}

 .footer-links .col-lg-6:last-child {
    text-align: left;
    border-left: 1px solid #767676;
    padding-left: 45px
}

 .footer-links .col-lg-6:last-child a {
    width: 38px;
    height: 38px;
    border: 2px solid #fff;
    color: #fff;
    float: left;
    margin-right: 10px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    padding-top: 5px;
    margin-top: 8px
}

 .footer-links .col-lg-6:first-child img {
    margin-top: 6px
}

 .footer-links .col-lg-6:last-child a i {
    -webkit-transition: .1s;
    -moz-transition: .1s;
    -o-transition: .1s;
    transition: .1s
}

 .footer-links .col-lg-6:last-child a:hover {
    background-color: #fff;
    color: #000
}

 .footer-links h6 {
    color: #fff;
    padding: 0;
    margin: 0;
    font-weight: 500
}

 .footer-credits {
    width: 100%;
    background: rgba(0, 0, 0, 0);
    margin-top: 0;
    font-size: 15px;
    padding: 26px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, .1);
}



 .when-where-wrapper {
    padding-top: 90px;
}

 .footer-btm .create-btn,
 .when-where-wrapper .col-lg-6 .col-lg-7 button {
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    font-size: 15px;
    font-weight: 500;
    outline: 0
}

 .footer-credits .col-lg-6:first-child {
    text-align: left
}

 .footer-credits .col-lg-6:nth-child(2),
 .when-where-wrapper .col-lg-6:first-child .col-lg-7 {
    text-align: right
}

 .footer-credits p {
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--textcolor)
}

 .footer-credits a {
    text-decoration: none;
    color: var(--textcolor)
}

 .footer-logo {
    width: 150px;
    height: 145px;
    background: url(../img/savedate-logo.svg) no-repeat;
    float: left;
    left: 50%;
    margin-left: -75px;
    margin-bottom: -130px;
    z-index: 995;
    animation: 6s ease-out infinite alternate footerimg;
    position: relative
}

@-webkit-keyframes footerimg {

    0%,
    100% {
        transform: rotate(-12deg)
    }

    50% {
        transform: rotate(12deg)
    }
}

 .yourown-invitation {
    width: 100%;
    color: var(--headingColor);
    padding: 0;
    margin: 25px 0 30px;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
    display: inline-block;
    opacity: .8
}

 .footer-btm .create-btn {
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    margin: 0 0 35px;
    border: none;
    display: inline-block;
    width: 160px;
    position: relative;
    cursor: pointer
}

 .thankyou-wrapper {
    margin-top: 0;
    width: 100%;
    display: inline-block
}

 .thankyou-wrapper svg {
    height: 100px
}

 .thankyou-wrapper .st0 {
    fill: var(--PrimaryColor);
}

 .thankyou-wrapper .st1 {
    fill-rule: evenodd;
    clip-rule: evenodd;
    fill: var(--textcolor);
    opacity: .8
}

 .footer-con {
    padding-bottom: 0 !important
}

 .gallery-wrapper,
 .video-wrapper,
 .warm-regards,
 .footer-btm {
    padding-top: 90px;
}

 .couple-middle-image .st0 {
    fill: var(--PrimaryColor);
}

 .couple-middle-image .st1 {
    fill: var(--headingColor);
}


 .when-where-wrapper .col-lg-6 .col-lg-7 button {
    display: inline-block;
    padding: 5px 20px;
    margin: 0;
    border: none
}

 .when-where-wrapper .col-lg-6 .col-lg-7 h4 {
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--headingColor)
}

 .location-image-con {
    width: 100%;
    height: 260px;
    background: #c4c4c4;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

 .location-image-con img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

 .location-content-wrapper {
    width: 100%;
    display: table;
    height: 100%
}

 .location-content-wrapper span {
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}

 #love1,
 #love5,
 #love9,
 #petal17_8_,
 #petal13_8_,
 #petal8_8_,
 #petal4_8_ {
    animation: 2s infinite alternate loveicons;
    transform-origin: left;
    transform-box: fill-box
}

 #love2,
 #love6,
 #love10,
 #petal16_8_,
 #petal12_8_,
 #petal7_8_,
 #petal3_8_ {
    animation: 2.5s infinite alternate loveicons;
    transform-origin: left;
    transform-box: fill-box
}

 #love3,
 #love7,
 #love11,
 #petal15_8_,
 #petal11_8_,
 #petal6_8_,
 #petal2_8_ {
    animation: 3s infinite alternate loveicons;
    transform-origin: left;
    transform-box: fill-box
}

 #love4,
 #love8,
 #love12,
 #petal14_8_,
 #petal10_8_,
 #petal5_8_,
 #petal1_8_ {
    animation: 3.5s infinite alternate loveicons;
    transform-origin: left;
    transform-box: fill-box
}


@keyframes loveicons {

    0% {
        opacity: 0;
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 0;
    }
}

 #flower_8_ {
    animation: 3s infinite alternate floweranimation;
    transform-origin: center;
    transform-box: fill-box
}

@keyframes floweranimation {

    0% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(-20deg);
    }

    100% {
        transform: rotate(20deg);
    }
}

 #rightleaf_8_ {
    animation: 3s infinite alternate rightleafanimation;
    transform-origin: left;
    transform-box: fill-box
}

@keyframes rightleafanimation {

    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-6deg);
    }

    100% {
        transform: rotate(3deg);
    }
}

 #leftleaf_8_ {
    animation: 3s infinite alternate leftleafanimation;
    transform-origin: right;
    transform-box: fill-box
}

@keyframes leftleafanimation {

    0% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}


 .invitation-con .modal-body span,
 .socialmedia-share {
    width: 100%;
    text-align: center
}

 .invitation-con .modal-body span img {
    position: relative;
    left: 50%;
    width: 140px;
    margin-left: -70px;
    margin-top: -15px
}

 .invitation-con .sendbtn {
    width: 100%;
    border: none;
    padding: 8px 0;
    margin: 15px 0 20px;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
    background-color: #eb5d76;
    color: #fff;
    -moz-border-radius: 3px;
    border-radius: 3px
}

 .invitation-con .invitation-heading {
    height: 60px
}

 .invitation-con .row .col-lg-3 {
    padding-right: 0
}

 .invitation-con .row .col-lg-9 {
    padding-left: 0
}

 .invitation-con .row .col-lg-3 select {
    outline: 0;
    box-shadow: none !important;
    background-color: #fff;
    margin: 6px 0;
    font-size: 15px;
    height: 45px;
    border: 2px solid #ea5c75;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

 .invitation-con .row {
    padding-left: 20px;
    padding-right: 20px
}

 .invitation-con .row .col-lg-9 input {
    outline: 0;
    box-shadow: none !important;
    background-color: #fff;
    margin: 6px 0;
    font-size: 15px;
    height: 45px;
    border: 2px solid #ea5c75;
    border-left: none !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}


 .invitation-con h5 {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0 0 15px;
    color: #333;
    font-family: var(--heading-font), sans-serif !important;
    font-size: 34px
}

 .invitation-con .close {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 16px;
    background-color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgb(0 0 0 / 40%);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 40%);
    border: none;
    outline: 0;
    color: #666
}


 .wedding-invitation img {
    width: 100%
}

 .wedding-invitation .close {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 16px;
    background-color: #fff;
    opacity: 1;
    width: 30px;
    border: none;
    outline: 0;
    color: #666 !important;
    height: 30px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .4)
}





 .parallax-wrap {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center
}

 .parallax-wrap .parallax-span {
    position: absolute;
    height: auto;
    width: 100%;
    left: auto;
    right: auto
}


 #mouse-circle {
    position: absolute;
    left: 100px;
    width: 100px;
    height: 90px;
    animation: 1s infinite heartbeat;
    margin: 0 auto;
    z-index: 1050;
    opacity: .3
}

 #mouse-circle:after,
 #mouse-circle:before {
    position: absolute;
    content: "";
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: var(--PrimaryColor);
    -moz-border-radius: 50px 50px 0 0;
    border-radius: 50px 50px 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%
}

 #mouse-circle:after {
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 100% 100%;
    -moz-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    transform-origin: 100% 100%
}

@keyframes heartbeat {

    0%,
    100%,
    40%,
    80% {
        transform: scale(.75)
    }

    20%,
    60% {
        transform: scale(1)
    }
}


 .sidemenubar {
    width: 267px;
    right: -277px;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1018;
    background: var(--ButtonColor);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
    display: table
}

 .sidemenubar.videsidebar {
    right: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

 .sidemenubar ul {
    padding: 0;
    margin: 56px 0 0;
    width: 100%;
    display: table-cell;
    vertical-align: middle
}

 .sidemenubar ul li {
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: normal;
    border-bottom: 1px dashed rgba(255, 255, 255, .2)
}

 .sidemenubar ul li:last-child {
    border-bottom: none
}

 .sidemenubar ul li a {
    padding: 16px 0;
    margin: 0;
    color: var(--ButtonTextColor);
    font-weight: 500
}

 .sidemenubar ul li a:focus,
 .sidemenubar ul li a:hover {
    background-color: rgba(0, 0, 0, .05);
    color: var(--ButtonTextColor)
}

 .sidemenubar button {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border: none;
    outline: 0;
    background: #db4761;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    padding: 14px 0
}


 .text-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: dash 5s infinite alternate, filling 5s ease-in infinite alternate;
    stroke-width: 2px;
    stroke: var(--PrimaryColor);
    height: 150px;
}

 .text-line text {
    font-family: Roboto, sans-serif;
    font-weight: 900 !important;
    font-size: 145px;
    letter-spacing: 4px;
}

@keyframes dash {
    0% {
        stroke-dasharray: 0 70%;
    }

    100% {
        stroke-dasharray: 40% 0%;
        stroke-dashoffset: 20%;
    }
}

@keyframes filling {

    0%,
    50% {
        fill: var(--PrimaryColor);
        fill-opacity: 0;
    }

    90% {
        fill: var(--PrimaryColor);
        fill-opacity: 1;
    }

    100% {
        fill: var(--PrimaryColor);
        fill-opacity: 1;
    }
}
















.deactivate-wrappder-div{
    width: 100%;
    text-align: center;
    height: calc(100vh - 100px);
    margin-top: 100px;
    display: table;
    font-family: Roboto, sans-serif !important
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign{
    width: 100%;
    display: table-cell;
    vertical-align: middle;
}   

.deactivate-wrappder-div .deactivate-wrappder-middlealign p{
    color: #575354;
    padding: 0px 0px;
    margin: 0px 0px 35px 0px ;
    font-size: 15px;
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign h4{
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0px 10px 0px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign span{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign span img{
    height: 80px;
    display: inline-block;
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign .yellowbutton-style{
    padding: 0px 25px;
    margin: 0px;
    height: 36px;
    background: #ffd159;
    color: #000;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    transition-duration: 0.3s;
}

.deactivate-wrappder-div .deactivate-wrappder-middlealign .yellowbutton-style:hover{
    background: #ed5f78;
    color: #fff;
}

.dashboard-bg{
    width: 100%;
    overflow-x: hidden;
}

.bgcolor-wrapper .bgcolor-three{
    width: 440px;
    height: 440px;
    position: absolute;
    bottom: 50%;
    right: -110px;
    z-index: -1;
    opacity: 0.25;
    background: radial-gradient(50% 50% at 50% 50%, #3e948c 0%, rgba(255, 255, 255, 0) 100%);
    animation: bgcolor-three-anim 8s infinite alternate;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}


@-webkit-keyframes bgcolor-three-anim {
	0% {
		bottom: 70%;
	}

	50% {
		bottom: 10%;
	}

	100% {
		bottom: 70%;
	}
}

.bgcolor-wrapper .bgcolor-two{
    width: 440px;
    height: 440px;
    position: absolute;
    bottom: 10%;
    left: 100px;
    z-index: -1;
    opacity: 0.25;
    background: radial-gradient(50% 50% at 50% 50%, #ffd159 0%, rgba(255, 255, 255, 0) 100%);
    animation: bgcolor-two-anim 7s infinite alternate;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}

@-webkit-keyframes bgcolor-two-anim {
	0% {
		bottom: 10%;
	}

	50% {
		bottom: 60%;
	}

	100% {
		bottom: 10%;
	}
}

.bgcolor-wrapper .bgcolor-one{
    width: 440px;
    height: 440px;
    position: absolute;
    top: -80px;
    left: 20%;
    z-index: -1;
    opacity: 0.15;
    background: radial-gradient(50% 50% at 50% 50%, #ed5f78 0%, rgba(255, 255, 255, 0) 100%);
    animation: bgcolor-one-anim 7s infinite alternate;
    animation-direction: alternate;
    animation-timing-function: ease-out;
}

@-webkit-keyframes bgcolor-one-anim {
	0% {
		left: 20%;
	}

	50% {
		left: 50%;
	}

	100% {
		left: 20%;
	}
}

.bgcolor-wrapper{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: -1;
    overflow: hidden;
}

.deactivate-header{
    width: 100%;
    position: fixed;
    top: 40px;
    left: 0px;
    z-index: 1030;
    text-align: center;
}

.deactivate-header .header-logo{
    display: inline-block;
}

.deactivate-header .header-logo img{
    height: 110px;
    position: relative;
    animation: footerimg 6s infinite alternate;
	animation-direction: alternate;
	animation-timing-function: ease-out;
}



/*send greetings style */

.sendgreetings-wrap{
    border: none;
    border-radius: 15px;
}

.sendgreetings-wrap .modal-body {
    padding: 55px 40px;
    position: relative;
}



.sendgreetings-wrap input,
.sendgreetings-wrap textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    transition-duration: .3s;
    font-size: 15px;
    outline: 0
}

.sendgreetings-wrap textarea {
    height: 120px;
    border: 1px solid #ccc;
    border-radius: 4px
}

.sendgreetings-wrap input {
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 6px
}

.sendgreetings-wrap input:focus,
.sendgreetings-wrap textarea:focus {
    border-color: var(--PrimaryColor)
}

.sendgreetings-wrap .sendbtn {
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    padding: 0px 20px;
    margin: 5px 0px 0px 0px;
    border: none;
    outline: 0;
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    width: 100%;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 45px;
}

.sendgreetings-wrap h5 {
    font-family: Roboto, sans-serif !important;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 0;
    margin: 0px 0px 25px 0px;
    color: #161616;
}

.sendgreetings-wrap span{
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.sendgreetings-wrap span img{
    width: auto;
    height: 75px;
    display: inline-block;
}

.sendgreetings-wrap .modal-body .close {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 16px;
    background-color: #fff;
    opacity: 1;
    width: 30px;
    height: 30px;
    -moz-border-radius: 50%;
    border-radius: 50%;

    border: none;
    outline: 0;
    color: var(--textcolor);
}

.sendgreetings-wrap .modal-body .close:hover{
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
}

.sendgreetings-wrap .socialmedia-share{
    width: 100%;
    text-align: center;
    display: block;
}

.sendgreetings-wrap .socialmedia-share button{
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    border-radius: 50%;
    line-height: 45px;
    margin: 2px 2px;
    color: #fff;
    display: inline-block;
}

.sendgreetings-wrap .socialmedia-share button.messgenger {
    background: #0080fb;
}

.sendgreetings-wrap .socialmedia-share button.facebook {
    background: #4865a8
}

.sendgreetings-wrap .socialmedia-share button.twitter {
    background: #000
}

.sendgreetings-wrap .socialmedia-share button.linkedin {
    background: #0274b3
}

.sendgreetings-wrap .socialmedia-share button.email {
    background: #cb4133
}

.sendgreetings-wrap .socialmedia-share button.whatsapp {
    background: #34b521
}

.sendgreetings-wrap.invitationcard{
    overflow: hidden;
}

.sendgreetings-wrap.invitationcard .modal-body{
    padding: 0px 0px ;
}

.sendgreetings-wrap.invitationcard img{
    width: 100%;
    height: auto;
}

/*send greetings style end */

.greetings-wrapper{
    width: 100%;
    background: var(--ButtonColor);
    color: var(--ButtonTextColor);
    border-radius: 5px;
    margin-top: 20px;
    padding: 45px 25px;
}

.greetings-wrapper h2{
    color: var(--ButtonTextColor);
    margin-bottom: 30px;
}

.greetings-wrapper span .st0{
    fill: var(--ButtonTextColor);
}

.greetings-wrapper p{
    padding: 0;
    color: var(--ButtonTextColor);
    font-style: italic;
}

.greetings-wrapper h6{
    width: 100%;
    padding: 0;
    margin: 0;
    color: var(--ButtonTextColor);
    font-size: 18px;
}

.scroll-down{
    width: 60px;
    height: 60px;
    border: none;
    outline: none;
    background: var(--BackgroundColor);
    color: var(--PrimaryColor);
    padding: 0px;
    text-align: center;
    left: 50%;
    margin-left: -30px;
    position: relative;
    z-index: 999;
    margin-top: -30px;
    border-radius: 50%;
    display: inline-block;
    line-height: 60px;

    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.15);

    display: none;
    visibility: hidden;

}






@media screen and (max-width:1024px) {
     #mouse-circle {
        display: none;
        visibility: hidden;
    }

     .banner-wrapper-div:after {
        display: none;
        visibility: hidden;
    }

     .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

     .sidemenu-wrapper {
        display: none;
        visibility: hidden;
    }

     .menu-btn {
        display: block;
        visibility: visible;
    }

     .bannerwrapper-div .carousel-inner {
        width: 450px;
        height: 450px;
        margin-left: -225px;
    }


}

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

     .warm-regards .col-lg-3,
     .youtube-thumbnail {
        margin-top: 10px;
        margin-bottom: 10px
    }

     .bannerwrapper-div {
        height: auto;
        margin: 45px 0px;
    }

     .parallax-wrap .parallax-span {
        position: relative;
    }

     .parallax-wrap {
        height: auto;
        margin-top: 100px;
    }

     .banner-caption-wrap {
        height: auto;
    }

     .waitingfor-adventure h2 {
        font-size: 36px;
    }

     .gallery div img {
        height: 160px !important;
    }
}

@media screen and (max-width:520px) {
     .whatsapp-sharebtn {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        line-height: 50px
    }

     .banner-caption-wrap .bannermiddle-align h1 {
        font-size: 100px;
        line-height: 110px;
    }

     .banner-date span {
        font-size: 54px;
    }

     .parallax-wrap {
        margin-top: 75px;
    }

     .bannerwrapper-div .carousel-inner img,
     .bannerwrapper-div .carousel-inner {
        width: 360px;
        height: 360px;
    }

     .bannerwrapper-div .carousel-inner {
        margin-left: -180px;
    }

     .waitingfor-adventure {
        height: auto;
        text-align: center;
    }

     #countdown ul {
        width: 100%;
        padding: 0px 0px 0px 0px;
        margin: 20px 0px 0px 0px;
        display: block;
        text-align: center;
    }

     #countdown ul li {
        width: 20%;
    }

     .waitingfor-adventure h5 {
        margin-top: 8px;
    }

     .waitingfor-adventure {
        padding: 25px 0px;
    }

     .heading-container h2 {
        font-size: 38px;
    }

     .couple-middle-image font svg {
        width: 180px;
    }

     .middle-btns-wrapper .row {
        margin-left: -4px;
        margin-right: -4px;
    }

     .middle-btns-wrapper .row .col-4 {
        padding-left: 4px;
        padding-right: 4px;
    }

     .middle-btns-wrapper button {
        padding: 15px 0px;
    }

     .middle-btns-wrapper button h6 {
        font-size: 15px;
        padding: 0px 15px;
    }

     .location-content-wrapper span {
        text-align: center;
        padding-top: 20px;
    }

     .gallery .col-lg-3 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        padding-left: 5px !important;
        padding-right: 5px !important
    }

     .yourown-invitation {
        font-size: 16px
    }

     .footer-credits .col-lg-6:last-child {
        display: none;
        visibility: hidden
    }

     .footer-credits .col-lg-6 p {
        font-size: 14px;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0px 0 0
    }

     .header-topfixed {
        top: 0px;
        right: 0px;
    }

     .happycouples-wrapper,
     .when-where-wrapper,
     .gallery-wrapper,
     .video-wrapper,
     .warm-regards,
     .footer-btm {
        padding-top: 60px;
    }

     .underline-text {
        margin-top: 60px;
    }

     .middle-btns-wrapper button{
        min-height: 155px;
    }

    .bgcolor-wrapper .bgcolor-three,
    .bgcolor-wrapper .bgcolor-two,
    .bgcolor-wrapper .bgcolor-one{
        width: 240px;
        height: 240px;
    }

    .bgcolor-wrapper .bgcolor-two{
        left: -100px;
    }

    .scroll-down{
        display: block;
        visibility: visible;
    }
}