/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* Starting Blog Page */

.portfolio .nav-link {
    background: transparent;
    color: #382665;
    border: 1px solid transparent;
}

.portfolio .nav-link:hover { border-color: #d13d53; }

.blog  {background: url(../images/shape1.png) no-repeat center bottom;padding-top: 0;}

.blog .s-head {
    display: flex;
    justify-content: space-between;
}

.blog .s-head .s-title {
    font-size: 22px;
    margin: 0;
    -webkit-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -moz-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -ms-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -o-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    border: 1px solid #c2c2c2;
    border-top: 0;
    padding: 10px 20px 15px;
    color: #d13d53;
}

.blog .s-head .s-form {
    -webkit-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -moz-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -ms-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    -o-box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    box-shadow: 0px 6px 6px 0.64px rgb(0 0 0 / 13%);
    border: 1px solid #c2c2c2;
    border-top: 0;
}

.blog .s-head .s-form .form-group {
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog .s-head .s-form input {
    border: 0;
    height: 100%;
    background: transparent;
    padding: 10px 15px;
    font-size: 15px;
    color: #382665;
}

.blog .s-head .s-form button {
    border: 0;
    background: transparent;
    color: #d13d53;
    height: inherit;
    padding: 0 15px;
    font-size: 24px;
}

.blog .s-head .s-form button:hover { color: #382665; }

.blog .blog-item {display: block;margin-bottom: 55px;}

.blog .sub-title { color: #d13d53; }

.blog .common-item {
    background: #d13e54;
    height: 375px;
    min-height: 375px;
    max-height: 375px;
    margin-bottom: 5px;
    position: relative;
}

.blog-item:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog .common-item:before { display: none; }

.blog .common-item:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 23px;
    background: url(../images/shape3.png) no-repeat center bottom;
    z-index: 2;
    bottom: 22px;
}

.b-details {
    background: #66b5d0;
    color: #fff;
    font-size: 11px;
    padding: 15px 15px;
}

.b-details .b-time { display: block; margin-bottom: 5px; }

.b-details .title { font-size: 20px;margin: 0px 0 10px; }

.b-details p {margin-bottom: 12px;}

.b-details p + div {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #fff
}

.b-details ul { margin: 0; }

.b-details li {
    display: inline-flex;
    align-items: center;
}

.b-details li::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #fff;
}

.b-details p + div span {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-item:hover p + div span{ color: #d13e54; }

.blog + .newsletter { background: none; }

/* Ending Blog Page */

/* Starting Single Blog */

.single-blog { padding: 80px 0; }

.single-blog .details .img { margin-bottom: 20px; max-height: 450px; overflow: hidden; }

.single-blog .b-title {
    font-size: 24px;
    margin: 0 0 15px;
    color: #d13e54;
}

.single-blog .b-title + ul li {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #d13e54;
}

.single-blog .b-title + ul li::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #d13e54;
}

.single-blog p { font-size: 16px; color: #000000b3; line-height: 1.8; }

.single-blog .details .img.second { margin-top: 50px; }

.comments { margin-top: 50px; }

.comments li .avatar {
    display: inline-flex;
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
    max-width: 72px;
    height: 72px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: #d13e54;
    overflow: hidden;
}

.comments li .c-name { font-size: 17px; color: #d13e54; margin: 0 0 5px; }

.comments li p {font-size: 14px; color: #000000b3; margin: 0; }

.comment-top {
    display: flex;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    padding: 20px 15px;
    margin-bottom: 20px;
}

.comment-bottom {
    display: flex;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-end;
    padding: 0 15px;
}

.comment-bottom .replay {
    padding: 0px 11px;
    font-size: 14px;
    background: #d13e54;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    line-height: 1;
}

.comment-bottom .replay:hover { background: #39255e }

.comments .contact-form { padding-top: 0!important; background: none; padding-bottom: 0!important; }

.comments .add-comment {font-size: 30px;font-weight: 600;color: #d13e54;margin: 0 0 30px;}

.comments .d-flex .form-check { max-width: 55%; }

.info .form-check {
    font-size: 15px;
    color: #000000b3;
}

.info .form-check .form-check-input {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: relative;
    top: -5px;
    cursor: pointer;
}

.info .form-check {
    display: flex;
    width: 50%;
    align-items: center;
    position: relative;
    margin-bottom: 18px;
}

.comments .info .form-check { align-items: flex-start; }

.info .form-check:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 18px;border: 1px solid #aaaaaa70;
    position: absolute;
    -webkit-box-shadow: -1px 6px 8px #00000014;
    -moz-box-shadow: -1px 6px 8px #00000014;
    -ms-box-shadow: -1px 6px 8px #00000014;
    -o-box-shadow: -1px 6px 8px #00000014;
    box-shadow: -1px 6px 8px #00000014;
    font-family: 'Font Awesome 5 Free';
    color: #39255e;
}

.comments .info .form-check:before { top: 8px; }

.info .form-check.actv:before {
    content: "\f00c";
    font-weight: 700;
}

.comments .info .form-check label { line-height: 1.8; }

.contact-form button {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
}

.left-content {
    background: #d13e54;
    color: #fff;
    padding: 20px 15px 30px;
}

.left-content .title {
    font-size: 28px;
    margin: 0 0 15px;
}

.left-content ol { margin: 0; }

.left-content ol li {font-size: 15px;}

.left-content ol li:not(:last-of-type) {margin-bottom: 5px;}

.breadcrumb { padding: 50px 0;}

.breadcrumb .m-title,
.breadcrumb .sub-title,
.breadcrumb .desc { position: relative; }

.breadcrumb .m-title {
    display: block;
    font-size: 40px;
    color: #fff;
    margin: 0 0 15px;
}

.breadcrumb .sub-title {
    display: block;
    font-size: 30px;
    color: #fff;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.breadcrumb  .desc {
    font-size: 17px;
    color: #fff;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    background: url(../images/shape1.png) no-repeat center bottom;
    background-size: 180px;
    width: 60%;
    line-height: 1.8;
}

/* Eding Single Blog */
