/****************
 * COMMON STYLE *
 ****************/

 .img-bg-holder{
    position: relative;
    height: 300px;
    z-index: 0;
 }

 .img-bg-holder>img{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
 }





/*******************
 * SIDE FORM STYLE *
 *******************/

#side-form-holder{
    position: fixed;
    width: 100%;
    max-width: 90vw;
    right: calc(-90vw);
    top: 0;
    z-index: 999999;
    box-sizing: border-box;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    height: 100vh;

}

.side-form-wrapper{
    background-color: #fff;
    height: 100vh;
}

#side-form-holder.show{
    right: 0;
}

#side-form-holder .side-form-open-button{
    display: flex;
    position: absolute;
    top: 55%;
    left: 3px;
    transform-origin: left center;
    background-color: #56bcec;
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
     -o-border-radius: 10px;
    z-index: -1;
    color: #fff;
    font-weight: 600;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    min-height: 40px;
     max-height: 40px;
    padding: 3px;
    padding-bottom: 0;
    transform: rotateZ(270deg) translateY(-50%);
    -webkit-transform: rotateZ(270deg) translateY(-50%);
    -moz-transform: rotateZ(270deg) translateY(-50%);
    -ms-transform: rotateZ(270deg) translateY(-50%);
    -o-transform: rotateZ(270deg) translateY(-50%);
    cursor: pointer;
     transition: opacity 0.3s ease-in;
    -webkit-transition: opacity 0.3s ease-in;
    -moz-transition: opacity 0.3s ease-in;
    -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;
}



#side-form-holder .side-form-open-button>span{
    background-color: #56bcec;
    border: 2px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px 20px;
    line-height: 1;
}

.side-form-close-button{
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top:20px;
    right: 20px;
    z-index: 1;
    transition: opacity 0.3s ease-in;
     -webkit-transition: opacity 0.3s ease-in;
     -moz-transition: opacity 0.3s ease-in;
     -ms-transition: opacity 0.3s ease-in;
    -o-transition: opacity 0.3s ease-in;

}
#side-form-holder .side-form-open-button:hover,.side-form-close-button:hover{
    opacity: 0.8;
}
.side-form-image-wrapper{
    display: flex;
    flex-flow: wrap;
    flex-direction: column;
    justify-content: end;
    box-sizing: border-box;
    padding: 20px;
    height: 27vh;
}
.side-form-image-wrapper *{
    color: #fff;
}
.side-form-image-wrapper h2{
    font-size: clamp(1.875rem, 1.071rem + 2.571vi, 3rem);
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;

}
.side-form-image-wrapper p{
    font-size: clamp(1rem, 0.911rem + 0.286vi, 1.125rem);
    margin-top: 0;
    margin-bottom: 0;

}
.side-form{
    padding: 20px 15px;;
    box-sizing: border-box;
    height: 73vh;
    overflow-y: auto;

}
.side-form .wpforms-container{
    margin: -8px 0;
}
.side-form .wpforms-container .wpforms-field{
    padding: 8px 0;
}
.side-form  .wpforms-field-description>p{
    color: #000;
}
.side-form .wpforms-field-checkbox ul{
    gap: 10px !important;
    margin-bottom: 15px;
}
.side-form .wpforms-field-checkbox legend{
    font-weight: 700;
}
.side-form div.wpforms-container-full .wpforms-form textarea{
    height: 11vh;
    max-height: 100px;
}

.side-form .wpforms-submit-container button{
    display: block;
    width: 100%;
    text-align: center;
    background-color: #56bcec !important;
    color: #fff;
    line-height: 1 !important;
    border-radius: 30px !important;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 10px !important;
}



@media screen and (min-width: 550px) {
    #side-form-holder{
        max-width: 500px;
        right: -500px;
    }
}



@media screen and (min-width: 767px) {
    .side-form {
        padding: 30px;
    }
    .side-form-image-wrapper{
        padding: 30px;
    }
    .side-form div.wpforms-container-full .wpforms-form textarea{
        margin-top: 15px;
    }

}


/****************
 * BUTTON STYLE *
 ****************/
 .btn-style-2 a{
    background-color: #56bcec;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 16px;
}
.btn-style-2 a:hover{
    background-color: #48546a;
    box-shadow: none;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    top: 0;
}


/***************************
 * SINGEL POST PAGE STYLES *
 ***************************/
body .is-layout-flex.hide,body .hide{
    display: none !important;
} 
.sp-author-row .wp-block-post-author__avatar{
    border: 0;
}
.sp-author-row .wp-block-post-author__avatar>img{
    width: 100%;
    height: auto;
    max-width: 40px;
}
.sp-author-row  .wp-block-post-author__name>a{
    color: #000;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
    margin-left: 10px;
}
.sp-author-row  .wp-block-post-author__name>a:hover{
    color: #38bda6;
}
.sp-recent-post-block article .wp-block-getwid-recent-posts__post-wrapper{
    align-items: center;
}
.sp-recent-post-block article .wp-block-getwid-recent-posts__post-title>a{
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.sp-recent-post-block article .wp-block-getwid-recent-posts__post-title>a:hover{
    color: #38bda6;
}


@media screen and (min-width: 776px) {
   body  .is-layout-flex.show-tablet-flex{
        display: flex !important;
    }
    body .show-tablet-block{
        display: block !important;
    }
}