/* Sept15-25 Feb12-26*/
/* Dragging Box */
.draggable{
    position: absolute;
    border: 3px solid;
    border-radius: 5px;
    border-color: var(--primary-color);
    color: var(--text-color);
    background: rgba(250,250,255, .6);
    backdrop-filter: blur(20px);
    cursor: move;
}
.dark .draggable{
    background: rgba(20,20,50, .6);
}
.drag-header{
    height: 30px;
    padding: 10px 0px 0px 10px;
    background: var(--primary-color);
    cursor: move;
}
.drag-icon{
    padding: 0px 10px;
    float: right;
    font-size: 22px;
    justify-content: center;
    align-content: center;
}
.drag-text{
    font-size: 18px;
    line-height: 22px;
    padding: 10px 20px;
}
.drag-text a{
    color: var(--secondary-color);
    text-decoration: none;
}
/* Box  Positions - the % is based on carousel slide */
.drag-1{ 
    width: 310px;
    top: 15%;
    left: 9%;
    z-index: 2;
}
.drag-2{
    width: 300px;
    top: 35%;
    left: 11%; 
    z-index: 1;
}
.drag-3{
    width: 400px;
    top: 25%;
    left: 22%;
}
.drag-4{
    width: 330px;
    top: 15%;
    left: 42%;
}
.drag-5{
    width: 330px;
    top: 15%;
    left: 69%;
    z-index: 2;
}
.drag-6{
    width: 360px;
    top: 47%;
    left: 67%;
    z-index: 1;
}
.drag-7{
    width: 350px;
    top: 36%;
    left: 81%;
}
/* Homepage Carousel Image Slider */
.carousel{
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-top: -80px;
}
.c-tabs input{
    visibility: hidden;
    display:none;
}
.c-button{
    position:absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
}
.c-button label{
    height: 20px;
    width: 20px;
    display: inline-block;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    background-color: var(--body-color);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--tran-05);
}
.c-tabs input:nth-child(1):checked ~ .c-button label:nth-child(1),
.c-tabs input:nth-child(2):checked ~ .c-button label:nth-child(2),
.c-tabs input:nth-child(3):checked ~ .c-button label:nth-child(3),
.c-tabs input:nth-child(4):checked ~ .c-button label:nth-child(4),
.c-tabs input:nth-child(5):checked ~ .c-button label:nth-child(5){
    opacity: 1;
    width: 50px;
    display: inline-block;
}
/* Carousel Slides */
.c-slide{
    width: 500vw;
    position: relative;
    display: flex;
    transition: var(--tran-05);
}
.c-slide .c-box{
    height: 100vh;
    width: 100vw;
    align-content: center;
    justify-content: center;
    user-select: none;
}
.c-slide .c-box:nth-child(1){
    background-image: url("../images/img6.jpg");
    background-position: 0% 30%;
    background-size: cover;
}
.c-slide .c-box:nth-child(2){
    background-image: url("../images/img4.jpg");
    background-position: 0% 50%;
    background-size: cover;
}
.c-slide .c-box:nth-child(3){
	background-image: url("../images/img5.jpg");
    background-position: 0% 10%;
    background-size: cover;
}
.c-slide .c-box:nth-child(4){
	background-image: url("../images/img1.jpg");
    background-position: 0% 80%;
    background-size: cover;
}
.c-slide .c-box:nth-child(5){
	background-image: url("../images/img2.jpg");
    background-position: 0% 95%;
    background-size: cover;
}
.c-tabs input:nth-child(1):checked ~ .c-slide{
    left: 0;
}
.c-tabs input:nth-child(2):checked ~ .c-slide{
    left: -100vw;
}
.c-tabs input:nth-child(3):checked ~ .c-slide{
    left: -200vw;
}
.c-tabs input:nth-child(4):checked ~ .c-slide{
    left: -300vw;
}
.c-tabs input:nth-child(5):checked ~ .c-slide{
    left: -400vw;
}/* Homepage Carousel Image Slider */
.carousel{
    height: 100%;
    width: 100%;
    overflow: hidden;
    margin-top: -80px;
}
.c-tabs input{
    visibility: hidden;
    display:none;
}
.c-button{
    position:absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    gap: 15px;
    z-index: 1;
}
.c-button label{
    height: 30px;
    width: 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    background-color: var(--body-color);
    opacity: 0.5;
    cursor: pointer;
    transition: var(--tran-05);
}
.c-tabs input:nth-child(1):checked ~ .c-button label:nth-child(1),
.c-tabs input:nth-child(2):checked ~ .c-button label:nth-child(2),
.c-tabs input:nth-child(3):checked ~ .c-button label:nth-child(3),
.c-tabs input:nth-child(4):checked ~ .c-button label:nth-child(4),
.c-tabs input:nth-child(5):checked ~ .c-button label:nth-child(5){
    opacity: 1;
    width: 50px;
}
/* Carousel Slides */
.c-slide{
    width: 500vw;
    position: relative;
    display: flex;
    transition: var(--tran-05);
}
.c-slide .c-box{
    height: 100vh;
    width: 100vw;
    align-content: center;
    justify-content: center;
    user-select: none;
}
.c-slide .c-box:nth-child(1){
    background-image: url("../images/img6.jpg");
    background-position: 0% 30%;
    background-size: cover;
}
.c-slide .c-box:nth-child(2){
    background-image: url("../images/img4.jpg");
    background-position: 0% 50%;
    background-size: cover;
}
.c-slide .c-box:nth-child(3){
	background-image: url("../images/img5.jpg");
    background-position: 0% 10%;
    background-size: cover;
}
.c-slide .c-box:nth-child(4){
	background-image: url("../images/img1.jpg");
    background-position: 0% 80%;
    background-size: cover;
}
.c-slide .c-box:nth-child(5){
	background-image: url("../images/img2.jpg");
    background-position: 0% 95%;
    background-size: cover;
}
.c-tabs input:nth-child(1):checked ~ .c-slide{
    left: 0;
}
.c-tabs input:nth-child(2):checked ~ .c-slide{
    left: -100vw;
}
.c-tabs input:nth-child(3):checked ~ .c-slide{
    left: -200vw;
}
.c-tabs input:nth-child(4):checked ~ .c-slide{
    left: -300vw;
}
.c-tabs input:nth-child(5):checked ~ .c-slide{
    left: -400vw;
}