
/************************************************
* 
* main
* 
************************************************/
a.bt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc( 3rem + 1.2vw );
    height: calc( 3rem + 1.2vw );
    color: #fff;
    background-color: #222;
}
a.bt:hover {
    background-color: rgb(var(--main-rgb)) !important;
}


.item-curved {
    position: relative;
}
.item-curved .edge {
    display: inline-block;
    position: absolute;
    background-color: #fff;
}
.item-curved .edge:before,
.item-curved .edge:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.item-curved .edge.top-0.start-0 {
    border-radius: 0 0 40px 0;
}
.item-curved .edge.top-0.start-0:before {
    bottom: -40px;
    left: 0;
    box-shadow: -15px -15px 0 0 #fff;
}
.item-curved .edge.top-0.start-0:after {
    top: 0;
    right: -40px;
    box-shadow: -15px -15px 0 0 #fff;
}

.item-curved .edge.top-0.end-0 {
    border-radius: 0 0 0 40px;
}
.item-curved .edge.top-0.end-0:before {
    top: -1px;
    left: -40px;
    box-shadow: 15px -15px 0 0 #fff;
}
.item-curved .edge.top-0.end-0:after {
    bottom: -40px;
    right: -1px;
    box-shadow: 15px -15px 0 0 #fff;
}

.item-curved .edge.bottom-0.start-0 {
    border-radius: 0 40px 0 0;
}
.item-curved .edge.bottom-0.start-0:before {
    top: -40px;
    left: -1px;
    box-shadow: -15px 15px 0 0 #fff;
}
.item-curved .edge.bottom-0.start-0:after {
    bottom: 0;
    right: -40px;
    box-shadow: -15px 15px 0 0 #fff;
}

.item-curved .edge.rounded-end-5:before, 
.item-curved .edge.rounded-end-5:after {
    width: 60px;
    height: 60px;
}
.item-curved .edge.top-0.start-0.rounded-end-5:before {
    bottom: -60px;
    left: -1px;
    box-shadow: -30px -30px 0 0 #fff;
}
.item-curved .edge.top-0.start-0.rounded-end-5:after {
    top: -1px;
    right: -60px;
    box-shadow: -30px -30px 0 0 #fff;
}


.item-curved .edge.bottom-0.end-0 {
    border-radius: 40px 0 0 0;
}
.item-curved .edge.bottom-0.end-0:before {
    bottom: 0;
    left: -40px;
    box-shadow: 15px 15px 0 0 #fff;
}
.item-curved .edge.bottom-0.end-0:after {
    top: -40px;
    right: 0;
    box-shadow: 15px 15px 0 0 #fff;
}



.item-curved .edge > a.bt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #111;
    border-radius: 50%;
}

/*post*/
.item-curved .caption {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: -15px;
    background-color: #fff;
    border-radius: .75rem;
    transition: all .3s ease;
    opacity: 0;
}
.item-curved:hover .caption {
    bottom: 5px;
    opacity: 1;
}
.item-curved .caption.sunrise {
    bottom: 5px;
    border-radius: 10rem;
    opacity: 1;
}
.item-curved .caption.sunrise a {    
    position: absolute;
    left: 50%;
    top: 0;
    width: 40px;
    height: 40px;
    transform: translate(-20px, -15px);
    border-radius: 50%;
}


.section-biz:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 90%;
    background-color: #e8eef3;
}
.section-biz:after {
    content: '';
    position: absolute;
    left: 10%;
    top: 0;
    bottom: 0;
    right: 60%;
    background-color: #e8eef3;
    border-radius: 0 80% 0 0;
}




.sectionSwiper {
    position: relative;
  width: 100%;
  height: 100%;
}

.sectionSwiper .swiper-slide {
  text-align: center;
  font-size: 1rem;
  color: #777;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionSwiper .swiper-button-next, 
.sectionSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background-size: 12px 22px;
    background-color: #fff;
    border-radius: 50%;
}
.sectionSwiper .swiper-button-next {right: -22px;}
.sectionSwiper .swiper-button-prev {left: -22px;}
.sectionSwiper .swiper-button-next:before,
.sectionSwiper .swiper-button-next:after,
.sectionSwiper .swiper-button-prev:before,
.sectionSwiper .swiper-button-prev:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.sectionSwiper .swiper-button-next:before {
    left: 8px;
    top: -29px;
    box-shadow: 15px 15px 0 0 #fff;
}
.sectionSwiper .swiper-button-next:after {
    left: 8px;
    bottom: -29px;
    box-shadow: 15px -15px 0 0 #fff;
}
.sectionSwiper .swiper-button-prev:before {
    right: 8px;
    top: -29px;
    box-shadow: -15px 15px 0 0 #fff;
}
.sectionSwiper .swiper-button-prev:after {
    right: 8px;        
    bottom: -29px;
    box-shadow: -15px -15px 0 0 #fff;
}



/*media*/
@media (min-width: 1200px) {
    .icon-rect {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }
    .icon-rect > i {
        font-size: 36px;
    }

}

@media (max-width: 991px) {
    .section-biz:before,
    .section-biz:after {
        display: none;
    }
}