body {

    padding: 0;
    margin: 0;
    font-family: 'Playfair Display', serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {

    scroll-behavior: smooth;
}

ul {padding: 0;margin: 0;}
li {padding: 0;margin: 0;list-style: none;}
a,a:hover {color: #fff;text-decoration: none;}
p {font-size: 14px;color: #333333;line-height: 25px;}
h1,h2,h3,h4,h5 {margin: 0;color: #000;}
figure {background-size: cover;background-repeat: no-repeat;background-position: center;margin: 0;}
img {width: 100%;}




  /* sigle page */

  .single-page {

    background: rgb(187,67,67);
    background: linear-gradient(0deg, rgba(187,67,67,1) 0%, rgba(22,10,10,1) 100%);
    height: 100vh;
    width: 100%;
  }


  section.sigle-page {

    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: 999;
    justify-content: center;
    background: rgb(187,67,67);
    background: linear-gradient(0deg, rgba(187,67,67,1) -26%, rgba(22,10,10,1) 100%);
    align-items: center;
  }




.side-wrapper {
    background: #fff;
    text-align: center;
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

}

.side-wrapper::before {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 300ms ease all;
    background: rgba(69, 75, 152, 0.24);
    z-index: 1;
}

.side-wrapper::after {

    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 300ms ease all;
    background: rgba(69, 75, 152, 0.4);
    transition-delay:300ms;
 
}

/* .side-wrapper:hover:before,
.side-wrapper:hover:after {

    width: 100%;
} */

.sigle-page ul {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sigle-page ul li {

    text-align: center;
    transition: 1s cubic-bezier(.57,.21,.69,3.25);
}

.sigle-page ul li:first-child {

    animation-delay: 1s;
}


.sigle-page ul li:last-child {

    animation-delay: 1.5s;
}

.sigle-page ul li p {

    font-size: 40px;
    color: #fff;
    margin-top: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.side-wrapper a {

    display: inline-block;
    text-align: center;
}

.side-wrapper a:hover img {

    transform: scale(1.2);
}

.side-wrapper a img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 500ms ease all;
}

.sigle-page ul li:first-child p,
.sigle-page ul li:last-child p {

    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;

    -webkit-animation: zoomeffect 2s infinite;
    -moz-animation: zoomeffect 2s infinite;
    animation: zoomeffect 2s infinite;
    animation-timing-function:cubic-bezier(0.075, 0.82, 0.165, 1);
}


 /* @-webkit-keyframes zoomeffect{
    0%{
        background-position:center;
      transform:scale(1,1);
    }
    50%{
        background-position:center;
      transform:scale(1,1);
    }
    100%{
        background-position:center;
      transform:scale(1,1);
    }
}  */
@keyframes zoomeffect{
    0%{
        background-position:center;
      transform:scale(1,1);
    }
    50%{
        background-position:center;
      transform:scale(1.1,1.1);
    }
    100%{
        background-position:center;
      transform:scale(1,1);
    }
}



.gallery-top-image {

    position: absolute;
    left: 50%;
    width: 250px;
    top: 20px;
    text-align: center;
    transform: translate(-50%, 0);
    height: 250px;
    line-height: 250px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06),inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);



}



.gallery-top-image img {

    width: 165px;
    height: auto;
    text-align: center;
}

.text-icon-wrapper img {

    width: 340px;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media (max-width:1200px) {



    .side-wrapper {

        width: 300px;
        height: 300px;
    }

    .gallery-top-image {

        width: 150px;
        height: 150px;
        line-height: 150px;
    }

    .gallery-top-image img {

        width: 100px;
    }

    .sigle-page ul li p {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .text-icon-wrapper img {

        width: 250px;
    }
}

@media (max-width:768px) {

    .gallery-top-image img {
        width: 60px;
    }

    .side-wrapper {
        width: 200px;
        height: 200px;
    }

    .sigle-page ul li p {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .text-icon-wrapper img {
        width: 200px;
    }
  
}

@media (max-width:500px) {

    .gallery-top-image {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }

    .side-wrapper {
        width: 150px;
        height: 150px;
    }

    .sigle-page ul li p {
        font-size: 18px;
        margin-bottom: 10px;
        margin-top: 15px;
    }

    .text-icon-wrapper img {
        width: 155px;
    }
    
}

@media (max-width:375px) {

    .gallery-top-image {
        width: 80px;
        height: 80px;
        line-height: 80px;
        top: 5px;
    }

    .gallery-top-image img {
        width: 50px;
    }

    .side-wrapper {
        width: 120px;
        height: 120px;
    }
    .sigle-page ul li p {
        font-size: 15px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .text-icon-wrapper img {
        width: 120px;
    }
}