html{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Almarai', serif, Arial;
    color: #081d20;
    overflow-x: hidden;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Almarai';
    src: url('../fonts/Almarai-ExtraBold.ttf');
    font-weight: 800;
}
* {
    box-sizing: border-box;
    outline: none !important;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #eee;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #26aac7;
}
::-moz-selection { background: #26aac7; color: #fff}
::selection { background: #26aac7; color: #fff}
ul {
    list-style: none;
    margin: 0;
    padding: 0
}
@media (min-width: 1600px){
    .container{
        max-width: 1540px;
    }
}
/* Navbar */
.navbar{
    width: 100%;
    height: 80px;
    backdrop-filter: blur(18px);
    --webkit-backdrop-filter: blur(18px);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    margin: 0;
}
.navbar.scrolled{
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 3px #eee;
}
.navbar .navbar-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}
.navbar.scrolled .navbar-brand img {
    filter: none;
}
.navbar .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.navbar.scrolled .navbar-nav .nav-link {
    color: #581034;
}
.navbar .navbar-nav .nav-link:hover {
    color: #26aac7;
}
@media (min-width: 992px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
    }
}
.navbar .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(to left, #26aac7 0%, #581034 100%);
    border: none;
    box-shadow: none;
    font-weight: normal;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.navbar .btn:hover{
    background: linear-gradient(to left, #26aac7 100%, #581034 0%);
}
/* Hero */
.hero-wrapper{
    position: relative;
    display: block;
    width: 100%;
    height: 61vw;
    overflow: hidden;
    z-index: 1;
}
.hero-wrapper > img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}
.hero-wrapper .container{
    position: absolute;
    bottom: 7.8125vw  /* 150/19.2 */;
    right: 0;
    left: 0;
}
.hero-wrapper .hero-content{
    width: 25.521vw  /* 490/19.2 */;
    margin-left: auto;
    margin-right: 0vw;
}
@media (min-width: 1600px){
    .hero-wrapper .hero-content{
        margin-left: auto;
        margin-right: 2vw;
    }
}
.hero-wrapper .hero-content .hero-subtitle{
    position: relative;
    display: block;
    font-weight: normal;
    font-size: 1.354vw  /* 26/19.2 */;
    padding-left: 0.9375vw  /* 18/19.2 */;
    letter-spacing: 0.06em;
    color: #fff;
}
.hero-wrapper .hero-content .hero-subtitle:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0.521vw  /* 10/19.2 */;
    height: 2.135vw  /* 41/19.2 */;
    border-radius: 5px;
    background: #52bece;
}
.hero-wrapper .hero-content .hero-subtitle span{
    font-weight: bold;
    color: #52bece;
}
.hero-wrapper .hero-content .hero-title{
    display: block;
    font-weight: 600;
    font-size: 3.125vw  /* 60/19.2 */;
    color: #fff;
}
.hero-wrapper .hero-content .hero-text{
    display: block;
    font-weight: normal;
    font-size: 0.9375vw  /* 18/19.2 */;
    line-height: 1.09375vw  /* 21/19.2 */;
    color: #fff;
}
/* Download App*/
.download-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 22.448vw  /* 431/19.2 */;
    padding: 4.427vw  /* 85/19.2 */ 0;
    margin: 160px 0 11.979vw  /* 230/19.2 */;
    z-index: 1;
}
.download-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 79.74vw  /* 1531/19.2 */;
    height: 100%;
    background: #eee;
    z-index: -5;
}
.download-wrapper:after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 8.125vw  /* 156/19.2 */;
    background: url("../images/Group 15361.svg") bottom right no-repeat;
    background-size: contain;
    width: 31.2265625vw  /* 599.55/19.2 */;
    height: 28.990625vw  /* 556.62/19.2 */;
    z-index: -4;
}
.download-wrapper > img{
    position: absolute;
    object-fit: contain;
    z-index: -2;
}
.download-wrapper > img.shape-1{
    top: -3.958vw  /* -76/19.2 */;
    left: -10.417vw  /* 200/19.2 */;
    width: 17.5453125vw  /* 336.87/19.2 */;
    height: 28.621875vw  /* 549.54/19.2 */;
    transform: rotate(-169deg);
}
.download-wrapper > img.shape-2{
    top: 6.771vw  /* 130/19.2 */;
    right: 28.90625vw  /* 555/19.2 */;
    width: 14.568vw  /* 279.7/19.2 */;
    height: 23.765vw  /* 456.28/19.2 */;
    transform: rotate(-11deg);
}
.download-wrapper > img.shape-3{
    top: -3.125vw  /* 60/19.2 */;
    right: 12.5vw  /* 240/19.2 */;
    width: 17.5453125vw  /* 336.87/19.2 */;
    height: 28.621875vw  /* 549.54/19.2 */;
    transform: rotate(-41deg);
}
.download-wrapper .download-img{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 57.5953125vw  /* 1105.83/19.2 */;
    overflow: hidden;
}
.download-wrapper .download-img img{
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    right: -5vw;

}
.download-wrapper .download-title{
    display: block;
    font-weight: 600;
    font-size: 1.5625vw  /* 30/19.2 */;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.download-wrapper .download-text{
    display: block;
    font-size: 1.042vw  /* 20/19.2 */;
    letter-spacing: 0.04em;
}
.download-wrapper .download-apps{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.download-wrapper .download-apps .download-app{
    display: inline-block;
    margin-right: 0.78125vw  /* 15/19.2 */;
}
.download-wrapper .download-apps .download-app:last-of-type{
    margin-right: 0;
}
.download-wrapper .download-apps .download-app img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 3.854vw  /* 74/19.2 */;
    object-fit: contain;
}
.features-wrapper {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 0 0 20px 20px;
    margin: 100px auto 0;
    z-index: 2;
}
.features-wrapper .get-married-title{
    display: block;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    margin: 0 auto 20px;
}
.features-wrapper .get-married-text{
    display: block;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 21px;
    text-align: center;
    color: #a1a1a1;
    margin: 0 auto 75px;
}
.features-wrapper .feature-item{
    position: relative;
    display: block;
    padding-bottom: 50px;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.features-wrapper .feature-item:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 3px;
    background: linear-gradient(#26aac7 0%, #146b7f 100%);
    opacity: 1;
    transition: all 1s ease-in-out;
}
.features-wrapper .feature-item:hover:after,
.features-wrapper .center .feature-item:after{
    width: 100%;
    height: 3px;
    background: linear-gradient(#26aac7 0%, #11849d 100%);
}
.features-wrapper .feature-item .feature-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}
.features-wrapper .feature-item .feature-icon img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.8;
    transition: all 0.5s;
}
.features-wrapper .feature-item:hover .feature-icon img,
.features-wrapper .center .feature-item .feature-icon img{
    filter: none;
    opacity: 1;
}
.features-wrapper .feature-item .feature-title{
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    height: calc(24px * 2);
    margin: 24px auto 0;
    overflow: hidden;
}
.features-wrapper .feature-item .feature-text{
    display: block;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: #a1a1a1;
    line-height: 21px;
    height: calc(21px * 5);
    overflow: hidden;
}

/* Payment */
.payment-section{
    position: relative;
    display: block;
    width: 100%;
    background: #FCF8FA;
    padding-top: 9.375vw  /* 180/19.2 */;
    padding-bottom: 4.167vw  /* 80/19.2 */;
    margin-top: -20px;
    z-index: 1;
}
.payment-section .payment-img{
    position: absolute;
    top: 6.5vw;
    right: 0;
    width: 32vw;
    max-width: 100%;
    z-index: 3;
}
.payment-section .payment-img img{
    width: 100%;
    object-fit: contain;
}
.payment-section .payment-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    background: #000;
    padding: 6vw  /* 160/19.2 */ 0 8.333vw  /* 160/19.2 */;
    z-index: 1;
}
.payment-wrapper .payment-title{
    display: block;
    font-weight: 600;
    font-size: 1.5625vw  /* 30/19.2 */;
    color: #fff;
    margin-bottom: 1.302vw  /* 25/19.2 */;
}
.payment-wrapper .payment-text{
    display: block;
    font-weight: normal;
    font-size: 0.9375vw  /* 18/19.2 */;
    letter-spacing: 0.04em;
    color: #a1a1a1;
}
.payment-wrapper .payment-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 19.792vw  /* 380/19.2 */;
}
.installment-wrapper .payment-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.payment-list .payment-item{
    display: inline-flex;
    flex-flow: column;
    width: 4.896vw  /* 94/19.2 */;
    height: 5.78125vw  /* 111/19.2 */;
    border-radius: 0.78125vw  /* 15/19.2 */;
    background: #fff;
    border: 1px solid #f3f0f0;
    text-align: center;
    margin: 1.302vw  /* 25/19.2 */  0.78125vw  /* 15/19.2 */;
}
.payment-list .payment-item .payment-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.083vw  /* 40/19.2 */;
    height: 2.083vw  /* 40/19.2 */;
    margin: 0.625vw  /* 12/19.2 */ auto 0.26vw  /* 5/19.2 */;
    text-align: center;
}
.payment-list .payment-item .payment-icon img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.payment-list .payment-item .payment-title{
    display: block;
    font-weight: 600;
    font-size: 0.729vw  /* 14/19.2 */;
    line-height: 1.09375vw  /* 21/19.2 */;
    height: calc(1.09375vw * 2);
    margin: 0 auto;
    color: #26aac7;
    overflow: hidden;
}
.installment-wrapper .payment-list .payment-item .payment-title{
    color: #081D20;
}
.installment-wrapper{
    position: relative;
    display: block;
    border-radius: 15px;
    background: linear-gradient( to right , #e6cf88 0%, #d2af5a 100%);
    padding: 62px 45px 45px;
    margin: -80px auto 0;
    text-align: center;
    z-index: 1;
}
.installment-wrapper:before{
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
    z-index: -1;
}
.installment-wrapper .installment-title{
    display: block;
    font-weight: 600;
    font-size: 30px;
}
.installment-wrapper .installment-text{
    display: block;

}
/* CSS */
.button-17 {
  align-items: center;
  appearance: none;
  background-color: #fff;
  border-radius: 24px;
  border-style: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  box-sizing: border-box;
  color: #3c4043;
  cursor: pointer;
  display: inline-flex;
  fill: currentcolor;
  font-family: "Google Sans",Roboto,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 48px;
  justify-content: center;
  letter-spacing: .25px;
  line-height: normal;
  max-width: 100%;
  overflow: visible;
  padding: 2px 24px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
  will-change: transform,opacity;
  z-index: 0;
}

.button-17:hover {
  background: #F6F9FE;
  color: #174ea6;
}

.button-17:active {
  box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
  outline: none;
}

.button-17:focus {
  outline: none;
  border: 2px solid #4285f4;
}

.button-17:not(:disabled) {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):hover {
  box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
}

.button-17:not(:disabled):focus {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

.button-17:not(:disabled):active {
  box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
}

.button-17:disabled {
  box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
}

/* Why us*/
.whyUs-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    background: url("../images/Mask Group 20.png") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 56.25vw  /* 1080/19.2 */;
}
.whyUs-wrapper .whyUs-img{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 55.3125vw  /* 1062/19.2 */;
}
.whyUs-wrapper .whyUs-img img{
    width: 100%;
    object-fit: contain;
}
.whyUs-wrapper .whyUs-title{
    display: block;
    font-weight: 600;
    font-size: 30px;
}
.whyUs-wrapper .whyUs-text{
    display: block;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 21px;
    color: #a1a1a1;
}
/* Vendors */
.vendors-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    /* background: #fcf8fa; */
    padding-top: 30px;
    text-align: center;
    z-index: 2;
}
.vendors-wrapper .container{
    position: relative;
    z-index: 2;
}
.vendors-wrapper .vendors-title{
    display: block;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    margin: 0 auto 15px;
}
.vendors-wrapper .vendors-title img{
    display: block;
    text-align: center;
    margin: 0 auto 15px;
}
.vendors-wrapper .vendors-text{
    display: block;
    font-size: 16px;
    text-align: center;
    margin: 0 auto 15px;
}
.vendors-wrapper .vendor-item{
    position: relative;
    display: block;
    width: 340px;
    max-width: 100%;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #d4d4d4;
    padding: 35px;
    margin: 0 auto;
}
.vendors-wrapper .vendor-item .vendor-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 212px;
    height: 221px;
    border-radius: 20px;
    margin: 0 auto 30px;
}
.vendors-wrapper .vendor-item .vendor-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vendors-wrapper .vendor-item h5{
    display: block;
    width: 100%;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 21px;
    text-align: center;
    color: #a1a1a1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.vendors-wrapper .vendor-item h4{
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.vendors-wrapper .vendor-item p{
    display: block;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    height: calc(21px * 3);
    text-align: center;
    color: #a1a1a1;
    overflow: hidden;
}
.vendors-wrapper .vendor-socials{
    display: block;
}
.vendors-wrapper .vendor-socials a{
    display: inline-block;
    font-size: 18px;
    color: #000;
    margin: 0 15px;
}
/* Categories*/
.categories-wrapper{
    position: relative;
    display: inline-block;
    background: url("../images/andreas-ronningen-S2YssLw97l4-unsplash.png") center no-repeat;
    background-size: cover;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 93px;
    margin-top: 50px;
    z-index: 1;
}
.categories-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: #26aac7;
    opacity: 0.9;
    z-index: -1;
}
.categories-wrapper .categories-title{
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    margin: 50px auto 25px;
}
.categories-wrapper .category-item{
    display: inline-block;
    max-width: 100%;
    width: 150px;
    height: 180px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
    padding: 15px 10px;
    margin: 20px auto;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.categories-wrapper .category-item .category-icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100px;
    height: 90px;
    background: #f3f0f0;
    border-radius: 20px;
    margin: 0 auto 15px;
    transition: all 0.3s ease-in-out;
}
.categories-wrapper .category-item .category-icon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease-in-out;
}
.categories-wrapper .category-item .category-icon img:first-of-type{
    opacity: 1;
    z-index: 1;
}
.categories-wrapper .category-item:hover .category-icon img:first-of-type{
    opacity: 0;
    z-index: -1;
}
.categories-wrapper .category-item .category-icon img:last-of-type{
    opacity: 0;
    z-index: -1;
}
.categories-wrapper .category-item:hover .category-icon img:last-of-type{
    opacity: 1;
    z-index: 1;
}
.categories-wrapper .category-item .category-title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    height: calc(22px * 2);
    color: #8b8b8b;
    transition: all 0.3s ease-in-out;
}
.categories-wrapper .category-item:hover .category-title{
    color: #E0BC62;
}
/* Gallery */
.gallery-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    background: #26aac7;
    padding-top: 0;
    padding-bottom: 165px;
    margin-top: 30vw;
}
.gallery-wrapper .gallery-title{
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 30px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    text-align: center;
    color: #fff;
}
.gallery-wrapper .gallery-title:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: 132px;
    height: 2px;
    background: #fff;
}
.gallery-wrapper .gallery-text{
    display: block;
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 21px;
    text-align: center;
    color: #fff;
}

.gallery-slider{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 62.5vw  /* 1200/19.2 */;
    height: 30vw;
    transform-style: preserve-3d;
    margin: -18.229vw  /* -350/19.2 */ auto 50px;
    text-align: center;
}
.gallery-slider input[type=radio] {
    display: none;
}
.gallery-slider .cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-slider .card {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    background: none;
    border: none ;
    box-shadow: none;
    transition: transform .4s ease;
    cursor: pointer;
}
.gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#item-1:checked ~ .cards #song-3,
#item-2:checked ~ .cards #song-1,
#item-3:checked ~ .cards #song-2 {
    transform: translatex(-40%) scale(0.8);
    z-index: 0;
}

#item-1:checked ~ .cards #song-2,
#item-2:checked ~ .cards #song-3,
#item-3:checked ~ .cards #song-1 {
    transform: translatex(40%) scale(0.8);
    z-index: 0;
}

#item-1:checked ~ .cards #song-1,
#item-2:checked ~ .cards #song-2,
#item-3:checked ~ .cards #song-3 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;
}
#item-1:checked ~ .cards #song-1 img,
#item-2:checked ~ .cards #song-2 img,
#item-3:checked ~ .cards #song-3 img {
    width: 100%;
    height: 100%;
}
/* video */
.video-wrapper{
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}
.video-wrapper .content-block{
    position: relative;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: 54.583vw  /* 1048/19.2 */;
    background: #eee;
    padding: 0  5.99vw  /* 115/19.2 */;
}
.video-wrapper h3{
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 30px;
    padding-bottom: 24px;
    margin-bottom: 24px;
}
.video-wrapper h3:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 71px;
    height: 3px;
    border-radius: 2px;
    background: #b479c7;
}
.video-wrapper p{
    display: block;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 21px;
    color: #a1a1a1;
}
.video-wrapper .video-block{
    position: relative;
    left: -50px;
    width: 48.28125vw  /* 927/19.2 */;
    height: 31.615vw  /* 607/19.2 */;
    z-index: 1;
}
.video-wrapper .video-block:before{
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: #26aac7;
    border-radius: 20px;
    z-index: -1;
}
.video-wrapper .video-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-wrapper .video-block a{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
}
.video-wrapper .video-block a img{
    width: 148px;
}
/* Simple fade transition */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
/* Owl Carousel */
.owl-wrapper{
    padding: 0 30px;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    transition: all 0.5s ease-in-out;
}
.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav button:focus {
    color: #005ad7 !important;
}
.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.owl-carousel .owl-nav button.owl-next {
    right: -30px
}
.owl-carousel .owl-nav button.owl-prev {
    left: -30px
}
.owl-carousel .owl-nav button.owl-next:hover {
    background: 0 0 !important;
    -webkit-animation: left .2s 3 linear forwards;
    animation: left .2s 3 linear forwards
}
.owl-carousel .owl-nav button.owl-prev:hover {
    background: 0 0 !important;
    -webkit-animation: right .2s 3 linear forwards;
    animation: right .2s 3 linear forwards
}
footer{
    position: relative;
    display: block;
    background: url("../images/Design.png") center no-repeat;
    background-size: cover;
    padding-top: 60px;
    color: #fff;
}
footer .footer-logo{
    display: block;
    width: 100%;
}
footer .footer-logo img{
    width: auto;
    max-width: 100%;
    filter: brightness(0) invert(1);
}
footer .follow-us {
    display: block;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
}
footer ul.footer-links{
    display: block;
    margin: 48px 0;
}
footer ul.footer-links li:first-of-type{
    display: block;
    font-weight: 600;
    font-size: 20px;
}
footer ul.footer-links li a{
    display: block;
    font-size: 18px;
    line-height: 21px;
    color: #fff !important;
    text-decoration: none !important;
    margin: 15px 0;
}
footer .get-touch-title{
    display: block;
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 25px;
}
footer .get-touch-text{
    display: block;
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 35px;
}
footer .contact-info{
    display: block;
}
.contact-info .contact-item{
    position: relative;
    display: flex;
    align-items: start;
    margin: 0 auto 35px;
}
.contact-info .contact-item .contact-icon{
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}
.contact-info .contact-item .contact-icon img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.contact-info .contact-item .contact-details{
    display: inline-block;
    width: calc(100% - 50px);
}
.contact-info .contact-item .contact-details .contact-title{
    display: block;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}
.contact-info .contact-item .contact-details .contact-link{
    display: block;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    color: #fff !important;
}
.contact-form {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    --webkit-backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px 68px;
}
footer .contact-form {
    padding: 50px 68px;
}
.contact-form .form-title{
    text-align: center;
}
.contact-form .form-group{
    position: relative;
    margin: 20px auto 40px;
}
.contact-form .form-control{
    font-size: 16px;
    color: #081D20;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #081D20;
    border-radius: 0;
    box-shadow: none !important;
    outline: none;
    padding: 0;
    line-height: 1.2;
    height: 42px !important;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contact-form .form-control::placeholder{
    color: rgba(8, 29, 32, 0.67);
}
.contact-form .custom-label {
    font-size: 18px;
    color: rgba(8, 29, 32, 0.67);
    text-transform: none;
    position: absolute;
    pointer-events: none;
    top: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.contact-form .form-control:focus~.custom-label, .contact-form .form-control:valid~.custom-label {
    top: -12px;
    font-size: 12px;
    color: #52BECE;
}
.contact-form textarea.form-control:focus~.custom-label, .contact-form textarea.form-control:valid~.custom-label {
    top: -16px;
}
.contact-form button {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 44px;
    color: #fff;
    width: 199px;
    height: 45px;
    border-radius: 10px;
    border: none;
    background: #52bece;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
}
.contact-form button:hover {
    background: #26aac7;
}
footer .copyrights{
    display: block;
    background: #fff;
    color: #8B8B8B;
    font-weight: 500;
    font-size: 16px;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}
footer .copyrights a{
    color: #26aac7;
}
.socials{
    display: block;
}
.socials a{
    display: inline-block;
    text-decoration: none !important;
    vertical-align: middle;
}
.socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #fff;
    color: #A1A1A1;
    font-size: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}
.socials span:hover{
    color: #fff !important;
}
.socials .fa-facebook:hover{
    background: #4267B2;
}
.socials .fa-instagram:hover{
    background: #26aac7;
}
.socials .fa-twitter:hover{
    background: #55acee;
}
.socials .fa-linkedin:hover{
    background: #0077b5;
}
.socials .fa-youtube-play:hover{
    background: #f00;
}
#videoModal .modal-content{
    background: none;
    border: none;
    box-shadow: none;
}
#videoModal .close{
    font-size: 36px;
    text-shadow: none;
    color: #fff;
    margin-bottom: 15px;
    opacity: 1;
}
.faq-wrapper{
    margin: 50px auto;
}
/* Accordion */
.accordion{
    position: relative;
    display: block;
    margin: 50px auto;
    z-index: 2;
}
.accordion>.card {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border-radius: 0 !important;
    margin-bottom: 1px;
}
.accordion>.card>.card-header {
    background: #fcfcfc;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0;
    padding: 10px;
}
.accordion>.card>.card-header .btn-link {
    box-shadow: none !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 18px;
    color: #581034;
    padding-right: 45px;
    outline: none !important;
    transition: all 0.3s ease-in-out;
}
.accordion.accordion-parent>.card>.card-header .btn-link[aria-expanded='true'] {
    background: #26aac7;
}
.accordion>.card>.card-header .btn-link:before,
.accordion>.card>.card-header .btn-link:after {
    content: '';
    position: absolute;
    top: 30px;
    right: 20px;
    background: #26aac7;
    width: 20px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}
.accordion>.card>.card-header .btn-link:after{
    transform: rotate(-270deg);
}
.accordion>.card>.card-header .btn-link[aria-expanded="true"]:after{
    transform: rotate(0deg);
}
.accordion>.card .card-body {
    background: #fff;
    padding: 20px;
    font-weight: normal;
    font-size: 16px;
}
.text-primary{
    color: #26aac7 !important;

}
/* Responsive */
@media screen and (max-width:  991px) {
    .navbar{
        height: auto;
        background: linear-gradient(to right, #26aac7 0%, #581034 100%);
        padding: 5px 0;
    }
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid, .navbar-expand-lg>.container-lg, .navbar-expand-lg>.container-md, .navbar-expand-lg>.container-sm, .navbar-expand-lg>.container-xl {
        padding-right: 15px;
        padding-left: 15px;
    }
    .navbar .navbar-toggler {
        color: #fff;
        border-color: #fff;
    }
    .navbar .navbar-toggler:hover, .navbar .navbar-toggler:focus {
        color: #fff;
        background: #26aac7;
    }
    .navbar.scrolled .navbar-brand img {
        filter: brightness(0) invert(1);
    }
    .navbar .navbar-nav {
        padding-top: 50px;
        text-align: center;
    }
    .navbar .btn {
        background: #fff;
        color: #26aac7;
        margin: 0 auto;
    }
    .navbar .navbar-brand img {
        height: 40px;
    }
    .hero-wrapper{
        height: auto;
        min-height: auto;
        background-size: contain;
        margin-top: 60px;
    }
    .hero-wrapper > img{
        position: relative;
        margin-bottom: 40px;
    }
    .hero-wrapper .container {
        position: relative;
        bottom: 0;
        right: 0;
        left: 0;
        text-align: center;
    }
    .hero-wrapper .hero-content {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-wrapper .hero-content .hero-subtitle {
        position: relative;
        display: block;
        font-weight: normal;
        font-size: 22px;
        padding-left: 10px;
        color: #081d20;
        margin-top: 20px;
    }
    .hero-wrapper .hero-content .hero-subtitle:before {
        display: none;
        width: 4px;
        height: 24px;
    }
    .hero-wrapper .hero-content .hero-title {
        font-size: 36px;
        color: #081d20;
    }
    .hero-wrapper .hero-content .hero-text {
        font-size: 16px;
        line-height: 1;
        color: #081d20;
    }
    .download-wrapper {
        display: block;
        min-height: auto;
        padding: 30px;
        margin: 50px auto;
        text-align: center;
        overflow-x: hidden  ;
    }
    .download-wrapper:before {
        width: 100%;
    }
    .download-wrapper .download-img {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: auto;
        max-width: 100%;
        transform: none;
    }
    .download-wrapper .download-title {
        font-size: 24px;
    }
    .download-wrapper .download-text {
        font-size: 16px
    }
    .download-wrapper .download-apps {
        justify-content: center;
        margin: 0 10px;
    }
    .download-wrapper .download-apps .download-app img {
        max-height: 50px;
    }
    .download-wrapper > img.shape-2 {
        right: 21vw;
    }
    .download-wrapper > img.shape-3 {
        right: 5vw;
    }
    .features-wrapper {
        margin: 50px auto 0;
    }
    .features-wrapper .get-married-title {
        font-size: 24px;
    }
    .features-wrapper .get-married-text {
        font-size: 16px;
        margin: 0 auto 50px;
    }
    .features-wrapper .feature-item {
        padding-bottom: 40px;
        margin-bottom: 20px;   
    }
    .features-wrapper .feature-item .feature-text {
        height: auto;
    }
    .payment-section {

        padding-top: 175px;
        padding-bottom: 4.167vw /* 80/19.2 */;
    }
    .payment-section .payment-img {
        top: 50px;
        right: 22vw;
        width: 250px;
    }
    .payment-section .payment-wrapper {
        padding: 220px 0 110px;
        text-align: center;
    }

    .payment-wrapper .payment-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .payment-wrapper .payment-text {
        font-size: 16px;
    }
    .payment-wrapper .payment-list {
        max-width: 400px;
    }
    .payment-list .payment-item {
        width: 94px;
        height: 111px;
        border-radius: 15px;
        margin: 25px 15px;
    }
    .payment-list .payment-item .payment-icon {
        width: 40px;
        height: 40px;
        margin: 12px auto 5px;
    }
    .payment-list .payment-item .payment-title {
        font-size: 14px;
        line-height: 21px;
        height: 42px;
    }
    .installment-wrapper {
        padding: 62px 15px 45px;
        z-index: 1;
    }
    .whyUs-wrapper {
        display: block;
        height: auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .whyUs-wrapper .whyUs-img {
        position: relative;
        top: 0;
        transform: none;
        width: 86vw;
        margin:  40px 0;
    }
    .video-wrapper{
        margin-bottom: 50px;
    }
    .video-wrapper .content-block {
        height: auto;
        padding: 30px;
        text-align: center;
    }
    .video-wrapper h3:before {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .video-wrapper .video-block {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 57.292vw  /* 1100/19.2 */;
        height: 37.5vw  /* 720/19.2 */;
    }
    .video-wrapper .video-block a img {
        width: 80px;
    }
    .gallery-slider {
        max-width: 80vw;
        height: 44vw;
        transform-style: preserve-3d;
        margin: -25vw auto 50px;
        text-align: center;
    }
    .vendors-wrapper{
        padding: 0;
        overflow-x: hidden;
    }
    .categories-wrapper{
        padding-bottom: 50px;
        overflow-x: hidden;
    }
    .navbar .nav-link{
        color: #fff;
    }
    .navbar .btn{
        background: #fff !important;
    }
    .contact-form{
        padding: 50px 0;
    }
    footer .contact-form{
        padding: 50px;
    }
   

}
