@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.skiptranslate{display: none !important;}

/*header start*/
.navbar{
    background-color: #fff;
    height: 99px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.navbar>.container-fluid{padding-right: 45px;padding-left: 45px;}

.navbar-brand{
    font-weight: 500;
    color: #ffa8ed;
    font-size: 24px;
    transition: 0.3s color;
}

.login-button{
    background-color: #ffa8ed;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s background-color;
}

.login-button:hover{
    background-color: #ffcdf5;
}

.navbar-toggler{
    border: none!important;
    font-size: 1.25rem;
}

.navbar-toggler:focus, .btn-close:focus{
    box-shadow: none!important;
    outline: none;
}

.nav-link{
    color: #666777;
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active{
    color: #000;
}
.nav-link::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #ffa8ed;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.nav-link:hover::before, .nav-link.active::before{
    width: 100%;
    visibility: visible;
}
.offcanvas-body .footer-icons{display: none;}
@media (min-width:991px){
    .nav-link::before{
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: #ffa8ed;
        visibility: hidden;
        transition: 0.3s ease-in-out;
    }

    .nav-link:hover::before, .nav-link.active::before{
        width: 100%;
        visibility: visible;
    }
}

.navbar.shrink {
    height: 92px;
    transition: height 0.3s ease;
}

.navbar.shrink .navbar-brand {
    font-size: 20px;
}

.navbar.shrink .login-button {
    font-size: 12px;
    padding: 6px 16px;
}


/*header end*/


/*slider start*/

.container-slider{
    position: relative;
    /* width: 100vw; */
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider{
    position: absolute;
    inset: 80px 200px 80px 80px;
    background: #ccc;
    border-radius: 20px;
}

.slider .slides{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    height: 320px;
    background: var(--img);
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.slider .slides:nth-child(1),
.slider .slides:nth-child(2)
{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0);
    background-size: cover;
}

.slider .slides:nth-child(3)
{
    left: calc(50% + 240px);
    background-size: cover;
}

.slider .slides:nth-child(4)
{
    left: calc(50% + 500px);
    background-size: cover;
}

.slider .slides:nth-child(5)
{
    left: calc(50% + 760px);
    background-size: cover;
}

.slider .slides:nth-child(6)
{
    left: calc(50% + 1020px);
    background-size: cover;
    opacity: 0;
}


.buttons{
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 20px;
}

.buttons span{
    position: relative;
    width: 50px;
    height: 50px;
    background: #ffa8ed;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.buttons span::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(315deg) translate(2px,2px);
}

.buttons span:nth-child(2)::before{
    transform: rotate(135deg) translate(2px,2px);
}

.buttons span:active{
    opacity: 0.5;
}

.content{
    position: relative;
    padding: 40px;
    max-width: 600px;
    transition: 0.25s;
    transition-delay: 0s;
    transform: translateY(40px);
    z-index: 10000;
    opacity: 0;
}

.content h2{
    font-size: 4em;
    color: #fff;
}

.content p{
    color: #fff;
}


.slider .slides:nth-child(1) .content,
.slider .slides:nth-child(2) .content
{
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.5s;
}

/* responsive */
@media (max-width: 900px)
{
    .slider {
        position: absolute;
        inset: 40px 40px 200px 40px;
    }


    .slider .slides {
       width: 100px;
       height: 100px;
       top: initial;
       bottom: -170px;
       box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }


    .slider .slides:nth-child(1),
    .slider .slides:nth-child(2)
    {
        top: initial;
        bottom: 0px;
    }

    .slider .slides:nth-child(3)
    {
        left: 0;
    }

    .slider .slides:nth-child(4)
    {
        left: 120px;
    }

    .slider .slides:nth-child(5)
    {
        left: 240px;
    }

    .slider .slides:nth-child(6)
    {
        left: 360px;
    }

    .navbar .navbar-brand img{height: 75px;}
    .navbar>.container-fluid {padding-right: 10px;padding-left: 10px;}
    .dilBtnWrap{margin-right: 0!important;}
    .content h2 {font-size: 2em;}
    .offcanvas-body .footer-icons{margin-top: 25px;display: block;}
    .offcanvas-body .footer-icons a{display: inline-block;width: 40px;height: 40px;cursor: pointer;background-color: #ffa8ed;border-radius: 25px;font-size: 20px;color: #ffffff;text-align: center;line-height: 40px;margin-right: 3px;margin-bottom: 5px;box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;}
}

/*slider end*/

/*hakkimizda start*/

.heading{
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 30px auto;
}

.heading h1{
    font-size: 40px;
    color: #000;
    margin-bottom: 45px;
    position: relative;
}

.heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #ffcdf5;
}

.heading p{
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.container-heading{
    width: 75%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.about{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image{
    flex: 1;
    margin-right: 50px;
    overflow: hidden;
    border-radius: 27px;
}

.about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
    border-radius: 27px;
}

.about-image:hover img{
    transform: scale(1.2);
}

.about-content{
    flex: 1;
}

.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: #333;
}

.about-content p{
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.about-content .read-more{
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa8ed;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 15px;
    transition: 0.3s ease;
}

.about-content .read-more:hover{
    background-color: #ffcdf5;
}

@media screen and (max-width: 768px){
    .heading{
        padding: 0px 20px;
    }
    .heading h1{
        font-size: 36px;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container-heading{
        padding: 0px;
    }
    .about{
        padding: 20px;
        flex-direction: column;
    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;
    }
    .about-content .read-more{
        font-size: 16px;
    }

    .product_cont {
        margin: 0 auto!important;
    }
}

/*hakkimizda end*/

/*nedenbiz start*/

.section{
    background-color: #fff3fcad;
    margin-top: 30px;

}

.title h1{
    text-align: center;
    padding-top: 50px;
    font-size: 42px;
}

.title h1::after{
    content: "";
    height: 4px;
    width: 230px;
    background-color: #ffcdf5;
    display: block;
    margin: auto;
}

.why-us{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 75px auto;
    text-align: center;
    padding-bottom: 74px;
}
.card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 0px 20px;
    padding: 20px 20px;
    background-color: #ffcdf5;
    border-radius: 30px !important;
    border-color: #ffcdf5 !important;
    cursor: pointer;
}

.card:hover{
    background-color: #ffe9fa;
    transition: 0.4s ease;
}

.card .icon{
    font-size: 35px;
    margin-bottom: 10px;
}
.card .icon i{color: #ffa8ed;}
.card h2{
    font-size: 28px;
    color: #000;
    margin-bottom: 20px;
}

.card p{
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1;
    color: #000;
}

.button{
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background-color: #ffa8ed;
    padding: 8px 12px;
    border-radius: 18px;
    letter-spacing: 1px;
}

.button:hover{
    background-color: #ffcdf5;
    transition: 0.4s ease;
}

@media screen and (max-width: 940px){
        .why-us{
            display: flex;
            flex-direction: column;
        }
        .card{
            width: 85%;
            display: flex;
            margin: 20px 0px;
        }
}

/*nedenbiz end*/


/*ürünler start*/


.wrapper {
    margin: 20px auto;
    max-width: 1100px;
}

.wrapper nav {
    display: flex;
    justify-content: center;
}

.wrapper .items {
    display: flex;
    max-width: 580px;
    width: 100%;
    justify-content: center;
}

.items span {
    padding: 7px 25px;
    font-size: 16px;
    cursor: pointer;
    color: #ffa8ed;
    border-radius: 50px;
    border: 2px solid #ffa8ed;
    transition: all 0.3s ease;
}

.items span.active,
.items span:hover {
    color: #fff;
    background: #ffa8ed;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Resimler arasındaki boşluk */
    justify-content: center; /* Resimleri ortalamak için */
    margin-top: 30px;
    padding-left: 100px;
    padding-right: 100px;
}

.gallery .image {
    width: calc(25% - 20px); /* 4 sütun yapısı için */
    box-sizing: border-box;
}

.gallery .image span {
    display: block;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.gallery .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery .image:hover img {
    transform: scale(1.1);
}

.gallery .image.hide {
    display: none;
}

.gallery .image.show {
    animation: animate 0.4s ease;
}

@keyframes animate {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.container-urunler h1 {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
    position: relative;
}

.container-urunler h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #ffcdf5;
}

.container-urunler {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-pro {
    margin-top: 113px;
}

@media (max-width: 1000px) {
    .gallery .image {
        width: calc(50% - 20px); /* 2 sütun yapısı için */
    }
}

@media (max-width: 800px) {
    .gallery .image {
        width: calc(50% - 20px); /* 2 sütun yapısı için */
    }
}

@media (max-width: 600px) {
    .wrapper {
        margin: 30px auto;
    }

    .wrapper nav .items {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav .items span {
        margin: 5px;
    }

    .gallery .image {
        width: 100%;
    }
}
/*ürünler end*/

/*footer start*/

footer {
    position: relative;
    bottom: 0;
}

@media (max-height:800px) {
    footer {
        position: static;
    }
    header {
        padding-top: 40px;
    }
}

.footer-distributed {
    background-color: #cacaca;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: 16px sans-serif;
    padding: 62px 0px 60px 80px;
    margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 30%;
}

.footer-distributed h3 {
    color: #000;
    margin: 0;
}


.footer-distributed h3 span {
    color: #ffa8ed;
}

/* Footer links */

.footer-distributed .footer-links {
    color: #000;
    margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    color: #5a5a5a;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  

.footer-distributed .footer-center {
    width: 31%;
}

.footer-distributed .footer-center i {
    background-color: #ffa8ed;
    color: #ffffff;
    font-size: 20px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 15px;
    margin: 10px 15px;
    vertical-align: middle;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    flex-shrink: 0;
}

.footer-distributed .footer-center i:hover {
    background-color: #ffcdf5;
    transition: 0.5s;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    display: inline-block;
    color: #000;
    vertical-align: middle;
    margin: 0;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #000;
    text-decoration: none;
    ;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 30%;
}

.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #393939;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: #ffa8ed;
    border-radius: 25px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    margin-right: 3px;
    margin-bottom: 5px;
    box-sizing: 1px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.footer-distributed .footer-icons a:hover {
    background-color: #ffcdf5;
    transition: 0.5s;
}

.footer-links a:hover {
    color: #ff67e1;
}

@media (max-width: 880px) {
    .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .footer-distributed .footer-center i {
        margin-left: 0;
    }
    .footer-distributed {
        padding: 50px 50px 40px 50px;
    }
    .wp-bottom-menu{display:flex!important}
    .login-button{display: none;}
    .gallery{padding-left: 50px!important;padding-right: 50px!important;}
    .footer-right .medyaLogo{text-align: -webkit-center;}
    .footer-right .medyaLogo img{margin-top: 20px!important;}
}       
     
.product_cont{margin: 0 80px;}
.logo img{width: 170px;}
/* MOBİL SABİT MENÜ CSS */

:root{--wpbottommenu-font-size:12px;--wpbottommenu-icon-size:24px;
    --wpbottommenu-text-color:rgb(217 128 141);
    --wpbottommenu-h-text-color:rgb(217 128 141);
    --wpbottommenu-icon-color:rgb(217 128 141);
    --wpbottommenu-h-icon-color:rgb(217 128 141);
    --wpbottommenu-bgcolor:#ffffff;
    --wpbottommenu-zindex:9999;
    --wpbottommenu-cart-count-bgcolor:rgb(217 128 141);
    --wpbottommenu-wrapper-padding:10px 0}
  
  .wp-bottom-menu{
    display:none;
    background:var(--wpbottommenu-bgcolor);
    width:100%;position:fixed;bottom:0;left:0;justify-content:space-around;padding:var(--wpbottommenu-wrapper-padding);box-shadow:0 -5px 10px rgba(0,0,0,.1);z-index:var(--wpbottommenu-zindex);transition:all 200ms}
  .wp-bottom-menu-item{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:auto;flex:1;font-size:var(--wpbottommenu-font-size);color:#000!important;cursor:pointer;user-select:none;text-decoration:none!important;transition:color 200ms;border-right:1px solid #ddd}
  .wp-bottom-menu-icon-wrapper{position:relative;line-height:0}
  .wp-bottom-menu-item i{font-size:var(--wpbottommenu-icon-size);color:#ffa8ed;transition:color 200ms}
  .wp-bottom-menu-item span{margin-top:5px;color:inherit!important}


/*ürün detay başlangıcı*/

.card-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 90px;
}

img{
    width: 100%;
    display: block;
}

.img-display{
    overflow: hidden;
}

.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}

.img-showcase img{
    min-width: 100%;
}

.img-select{
    display: flex;
}

.img-item{
    margin: 0.3rem;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}

.img-item:hover{
    opacity: 0.8;
}

.product-content{
    padding: 2rem 1rem;
}

.product-title{
    font-size: 3rem;
    text-transform: capitalize;
    font-weight: 700;
    position: relative;
    color: #000;
    margin: 1rem 0;
}

.product-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 80px;
    background: #aaa;
}

.product-link{
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    background: #ffa8ed;
    color: #fff;
    padding: 0 0.3rem;
    transition: all 0.5s ease;
}

.product-link:hover{
    opacity: 0.9;
}

.product-rating{
    color: #ffc107;
}

.product-rating span{
    font-weight: 600;
    color: #666777;
}

.product-price{
    margin: 1rem 0;
    font-size: 1rem;
    font-weight: 700;
}

.product-price span{
    font-weight: 400;
}

.last-price span{
    color: #f64749;
    text-decoration: underline;
}

.new-price span{
    color: #256eff;
}

.product-detail h2{
    text-transform: capitalize;
    color: #12263a;
    padding-bottom: 0.6rem;
}

.product-detail p{
    font-size: 0.9rem;
    padding: 0.3rem;
    opacity: 0.8rem;
}

.product-detail ul{
    margin: 1rem 0;
    font-size: 0.9rem;
}

.product-detail ul li{
    margin: 0;
    list-style: none;
    background: url(/img/checked.png) left center no-repeat;
    background-size: 18px;
    padding-left: 1.7rem;
    margin: 0.4rem 0;
    font-weight: 600;
    opacity: 0.9;
}

.product-detail ul li span{
    font-weight: 400;
}

.purchase-info{
    margin: 1.5rem 0;
}

.purchase-info input,
.purchase-info .buton{
    border: 1.5px solid #ddd;
    border-radius: 25px;
    text-align: center;
    padding: 0.45rem 0.8rem;
    outline: 0;
    margin-right: 0.2rem;
    margin-bottom: 1rem;
}

.purchase-info input{
    width: 60px;
}

.purchase-info .buton{
    cursor: pointer;
    color: #fff;
}

.purchase-info .buton:first-of-type{
    background: #ffa8ed;
}

.purchase-info .buton:last-of-type{
    background: #ffa8ed;
}

.purchase-info .buton:hover{
    background: #ffcdf5;
    transition: 0.5s;
}

.social-links{
    display: flex;
    align-items: center;
}

.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border: 1px solid #000;
    margin: 0 0.2rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.5ds ease;
}

.social-links a:hover{
    background: #000;
    border-color: transparent;
    color: #fff;
}

.sizes {text-transform: UPPERCASE;font-weight: bold; }
.sizes {margin-bottom: 15px; } 
.size {
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ECECF4;
    border: 1px solid #ECECF4;
    font-weight: 500;
    position: relative;
    padding: 0;
    border-radius: 100%;
    margin: 0 5px 5px 0; }
    .size:first-of-type {
      margin-left: 40px; }
  

@media screen and (min-width: 992px){
    .card-urun{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.5rem;
        margin-top: 0;
    }
    .card-wrapper{
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 120px;
    }
    .product-imgs{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .product-content{
        padding-top: 0;
    }
}
/*ürün detay sonu*/

/*iletişim start*/

.contact-in{
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px #666;
    margin-top: 156px;
}

.contact-map{
    width: 100%;
    height: auto;
    flex: 50%;
}

.contact-map iframe{
    width: 100%;
    height: 100%;
}

.contact-form{
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px;
    text-align: center;
}

.contact-form h1{
    margin-bottom: 25px;
}

.contact-form-txt{
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-txt::placeholder{
    color: #aaa;
}

.contact-form-textarea{
    width: 100%;
    height: 200px;
    color: #000;
    border: 1px solid #414141;
    border-radius: 10px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form-textarea::placeholder{
    color: #aaa;
}


.contact-form-btn{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #ffa8ed;
    color: #fff;
    text-transform: uppercase;
    padding: 10px 0;
    cursor: pointer;
    font-size: 16px;
}

.contact-form-btn:hover{
    background-color: #ffcdf5;
    transition: 0.5s;
}

.aboutHead{margin-top: 90px;}

#aboutHeader {
    height: 300px;
    padding: 100px 100px;
    background-size: cover;
    background-position: center center;
  }
  #aboutHeader h1 {
    color: white;
    text-align: center;
    margin-top: 45px;
  }
.cont-box .card{background-color: #ffe9fa!important;}
.cont-box .card:hover{background-color: #fff!important;}
.cont-box .why-us{padding-bottom: 0!important;}

.dilBtnWrap .dropdown-menu {
    right: 0;
    left: auto!important;
    min-width: 8rem;
}
.dilBtnWrap{margin-right: 7px;}
.navbar .dropdown ul li {
    min-width: 0;
}
.navbar .dilBtnWrap .dropdown-menu .dropdown-item {
    padding-right: 0 !important;
    display: flex;
    align-items: center;
    justify-content: normal;
    padding: 5px 25px;
}
.navbar .dilBtnWrap .dropdown-menu img {
    width: 25px;
    padding-right: 5px;
}
.dropdown-toggle::after{display: none!important;}