/* ===== 14. Footer Area CSS ===== */
.cookie-policy {
    background: #fff;
    color: #666;
    bottom: 0;
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, .16);
    left: 0;
    padding: 32px 24px 16px;
    position: fixed;
    right: 0;
    z-index: 9999999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-policy__title {
    color: rgb(34, 34, 34);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
    padding-top: 24px;
}

.cookie-policy__desc {
    font-size: 12px;
    line-height: 18px;
}

.cookie-policy__close-icon {
    height: 16px;
    position: absolute;
    right: 20px;
    top: 12px;
    width: 16px;
    cursor: pointer;
}

.cookie-policy__buttons {
    display: flex;
    justify-content: flex-end;
    font-size: 12px;
    margin-left: 40px;
    /* padding-bottom: 24px; */
}

@media screen and (min-width: 768px) {

    .cookie-policy__personalize-button,
    .cookie-policy__accept-button {
        min-width: 137px !important;
    }
}

@media (min-width: 768px) {
    .cookie-policy__personalize-button:hover {
        background: #fff;
        border-color: var(--color-primary, #333);
        color: var(--color-primary, #333);
    }
    .cookie-policy__accept-button:hover {
        background: var(--color-primary, #333);
    }
}

.cookie-policy__personalize-button {
    background: #fff;
    border: 1px solid var(--color-primary, #333);
    color: var(--color-primary, #333);
}

.cookie-policy__personalize-button,
.cookie-policy__accept-button {
    border-radius: 0;
    font-weight: 400;
    /* height: 36px; */
    white-space: nowrap;
    /* width: 137px; */
    cursor: pointer;
    font-size: 12px;
    line-height: 18px;
    padding: 4px 12px;
}

.cookie-policy__personalize-button {
    margin-right: 16px;
}

.cookie-policy__accept-button {
    border-width: 0;
    color: #fff;
    padding-bottom: 4px;
    padding-top: 4px;
    background: var(--color-primary, #333);
}


.cookie-policy__modal-mask, .cookie-policy__modal-wrap {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}
.cookie-policy__modal-mask {
    background-color: rgba(0,0,0,.55);
    height: 100%;
    pointer-events: none;
    user-select: none;
}
.cookie-policy__modal-wrap {
    align-items: center;
    display: flex;
    outline: 0;
}
.cookie-policy__modal {
    font-feature-settings: "tnum";
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.12), 0 6px 16px 0 rgba(0,0,0,.08), 0 9px 28px 8px rgba(0,0,0,.05);
    box-sizing: border-box;
    color: #222;
    display: flex;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    margin: 0 auto;
    max-height: calc(100vh - 64px);
    max-width: calc(100vw - 64px);
    padding: 0;
    position: relative;
}
.cookie-policy__modal-close {
    text-rendering: auto;
    background: transparent;
    border: 0;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    height: 50px;
    line-height: 1;
    outline: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    top: 0;
    transition: color .3s;
    width: 50px;
    z-index: 10;
}
.cookie-policy__modal-close-icon {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: inherit;
    display: inline-block;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
}
.cookie-policy__modal-close:hover {
    color: #222;
    text-decoration: none;
}
.cookie-policy__modal-content {
    border-radius: 12px;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    line-height: 1.5;
}
.cookie-policy__modal-body {
    word-wrap: break-word;
    flex-grow: 1;
    font-size: 14px;
    overflow: auto;
    padding: 0 16px;
}
.cookie-policy__settings-title {
    font-size: 24px;
    line-height: 24px;
    padding-top: 16px;
    text-align: center;
}
.cookie-policy__setting-item-top {
    align-items: center;
    display: flex;
}
.cookie-policy__setting-subtitle {
    flex: 1;
    font-size: 14px;
    margin: 16px 0;
}
.cookie-policy__setting-detail {
    color: #666;
    line-height: 18px;
}
.cookie-policy__setting-swith-btn {
    font-feature-settings: "tnum";
    background-color: #ccc;
    border: none;
    border-radius: 16px;
    box-sizing: border-box;
    color: #222;
    cursor: pointer;
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all .25s;
    height: 22px;
    width: 40px;
}
.cookie-policy__setting-swith-handle {
    background-color: #fff;
    box-shadow: 0 0 2px 0 rgba(0,0,0,.12), 0 3px 3px 0 rgba(0,0,0,.24);
    height: 16px;
    left: 3px;
    position: relative;
    width: 16px;
    border-radius: 50%;
    transition: all .25s;
}
.cookie-policy__modal-footer {
    display: flex;
    flex-direction: row-reverse;
    flex-shrink: 0;
    padding: 16px;
}
.cookie-policy__modal-save-btn {
    min-width: unset;
    flex: 1;
    border-radius: 0;
    width: 180px;
    height: auto;
    white-space: normal;
    background: var(--color-primary, #333);
    border-width: 0;
    color: #fff;
    padding-bottom: 4px;
    padding-top: 4px;
    line-height: 24px;
    outline: 0;
    padding: 3px 12px;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    cursor: pointer;
}
.cookie-policy__modal-save-btn:hover {
    background: var(--color-primary, #333);
}
.cookie-policy__modal-save-btn span {
    display: inline-block;
    font-size: 14px;
}
.cookie-policy__setting-swith-btn.setting-swith-checked {
    background-color: #ff472e;
}
.cookie-policy__setting-swith-btn.setting-swith-checked .cookie-policy__setting-swith-handle {
    left: 21px;
}

@media screen and (max-width: 768px)  {
    .cookie-policy {
        /* padding: 0 5%; */
        /* border-radius: 15px; */
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        display: block;
        padding-top: 24px;
    }
    .cookie-policy__title {
        text-align: center;
    }
    .cookie-policy__desc {
        font-size: 14px;
    }
    .cookie-policy__buttons {
        justify-content: space-evenly;
        font-size: 14px;
        margin-top: 12px;
        margin-left: 0;
    }
    .cookie-policy__buttons button {
        width: 100%;
    }
}
.witrfm_area {
   direction: ltr;
  position: relative;
  background: #fff;
}
.witrfm_area:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.footer-middle {
  padding: 65px 0 80px;
}
.footer-middle .widget ul li,
.footer-middle .widget ul li a,
.footer-middle .widget ul li::before,
.footer-middle .tagcloud a,
.footer-middle caption,
.footer-middle table,
.footer-middle table td a,
.footer-middle cite,
.footer-middle .rssSummary,
.footer-middle span.rss-date,
.footer-middle span.comment-author-link,
.footer-middle .textwidget p,
.footer-middle .widget .screen-reader-text,
mc4wp-form-fields p,
.mc4wp-form-fields,
.footer-m-address p,
.footer-m-address,
.footer-widget.address,
.footer-widget.address p,
.mc4wp-form-fields p,
.dastra-description-area p,
.dastra-description-area .phone a,
.dastra-description-area .social-icons a,
.recent-review-content h3,
.recent-review-content h3 a,
.recent-review-content p,
.footer-middle .dastra-description-area p,
.footer-middle .recent-post-text h4 a,
.footer-middle .recent-post-text .rcomment,
.witr_sub_table span {
  color: #000;
}
.footer-middle .widget h2 {
  color: #000;
  font-family: Barlow, sans-serif;
  font-style: normal;
  line-height: 1.2;
  font-weight: 700;
  font-size: 24px;
  transition: 0.5s;
}
.footer-middle .widget h2 {
  margin-bottom: 26px;
  margin-top: 28px;
  position: relative;
}
.single-widget-item h2 {
  color: #ffffff;
  margin-bottom: 33px;
  margin-top: 28px;
}
.dastra-description-area a img {
  height:80px;
  margin: 26px 0;
}
.gallery-item {
  display: inline-block;
  padding: 1.79104477%;
  text-align: center;
  vertical-align: top;
  margin: 0;
  float: left;
}
.gallery-icon img {
  margin: 0 auto;
}
.footer-middle .widget h2 {
  color: #000;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.footer-middle .recent-post-text h4 a {
  font-weight: 500;
  font-size: 16px;
}
.footer-middle .recent-post-text > h4 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 0.7;
  margin-top: 10px;
}
.recent-post-image {
  float: left;
  margin-right: 15px;
  margin-top: 10px;
}
.recent-post-image img {
  border-radius: 0;
  width: 70px;
}
  .footer-middle .mc4wp-form-fields .crmFormVali-error {
    color: #a94442;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    right: 117px;
    top: calc(50% - -31px);
}
.recent-post-item {
  clear: both;
  margin-bottom: 15px;
}
.footer-sociala-icon {
  clear: both;
  float: left;
  font-size: 17px;
  margin-right: 12px;
}
.footer-middle .recent-post-text > h4 a:hover {
  color: #edb509;
}
.footer-middle .recent-post-text .rcomment {
  font-size: 14px;
  font-weight: 400;
}
.footer-middle .widget ul li {
  margin-bottom: 10px;
}
.footer-widget.address p {
  margin-bottom: 9px;
}
.footer-middle .widget ul li a:hover,
.footer-middle .widget ul li:hover:before {
  color: var(--color-primary);
}
.dastra-desdastraiption-area a img {
  margin: 26px 0;
}
.dastra-description-area .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.dastra-description-area .social-icons a:hover {
  background: var(--color-primary);
  color: #fff;
}
.dastra-description-area .social-icons a {
  background: rgb(57,151,213);
}
.twr_footer_contact input {
  background: 0 0;
  color: #fff;
  border: 1px solid #fff;
  height: 60px;
  width: 100%;
  padding-left: 30px;
  color: #fff;
  border-radius: 4px;
}
.twr_footer_contact input::placeholder {
  color: #fff;
}
.twr_footer_contact button {
  padding: 15px 30px;
  margin-top: 10px;
  outline: 0;
  border: none;
  background: #edb509;
  color: #fff;
}
.footer-middle .mc4wp-form-fields {
  margin-top: 20px;
}
.footer-middle .mc4wp-form-fields p:nth-child(1) {
  margin-bottom: 22px;
}
.footer-middle .mc4wp-form-fields p {
  position: relative;
  line-height: 27px;
}
.footer-middle .mc4wp-form-fields input {
  border: 1px solid #000;
}
.footer-middle .mc4wp-form-fields input {
  height: 50px;
  position: relative;
  background: 0 0;
  width: 96%;
  line-height: 43px;
  border-radius: 0;
  padding-left: 10px;
}
.mc4wp-form-fields input {
  color: #b0afaf;
}
.mc4wp-form-fields input::placeholder {
  color: #b0afaf;
}
.mc4wp-form-fields input {
  font-size: 16px;
  outline: 0;
  padding: 15px 30px;
}
.footer-middle .mc4wp-form-fields button {
  background: rgb(57,151,213);
}
.footer-middle .mc4wp-form-fields button {
  color: #fff;
}
.footer-middle .mc4wp-form-fields button {
  position: absolute;
  right: -80px;
  top: 0;
  width: 54%;
  height: 50px;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 10px;
  line-height: 0;
  transition: 0.5s;
  font-size: 16px;
}
.mc4wp-form-fields button {
  border: none;
  outline: 0;
  bottom: 0;
  font-size: 18px;
  text-align: center;
  z-index: 2;
}
.footer-middle .mc4wp-form-fields button:hover {
  background: rgb(57,151,213,0.85);
  color: rgb(57,151,213);
}
.witr_sub_table {
  border-bottom: 1px solid #ffffff8c;
}
.witr_sub_table {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.witr_sub_table span {
  color: #fff;
}
/* footer bottom area css */
.footer-bottom {
  padding: 23px 0 22px;
  position: relative;
}
.footer-bottom:before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  width: 61%;
  left: 0;
  right: 0;
  margin: auto;
  background: #000;
}
.copy-right-text p {
  margin: 0;
  padding: 0;
}
.copy-right-text p,
.footer-menu ul li a {
  color: #000;
  text-align: center;
}
.footer-menu ul li {
  display: inline-block;
}
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu ul li a {
  padding: 0 10px;
  display: block;
}
.copy-right-text a,
.footer-menu ul li a:hover {
  color: rgb(57,151,213);
}
/* sdastraoll up css */
#scrollUp {
  bottom: 30px;
  font-size: 30px;
  height: 40px;
  line-height: 40px;
  right: 100px;
  text-align: center;
  border-radius: 5px;
  width: 40px;
  background: rgb(57,151,213);
  display: flex;
  justify-content: center;
}
#scrollUp i {
  color: #fff;
  font-size: 20px;
}
/* slick slide css */
.slick-dots li button {
  font-size: 0;
  width: 30px;
  height: 10px;
  border: 0 solid #f0f0f0;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 0;
  padding: 0;
  transition: 0.5s;
  outline: 0;
  background: #fff;
}
.slick-dots li.slick-active button {
  background-color: #edb509;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
  display: inline-block;
  z-index: 11;
  text-align: center;
}
/* slick prev slick next css */
/*======== slick ========*/
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  display: block;
  padding: 0;
  cursor: pointer;
  color: #fff;
  outline: none;
  z-index: 9;
  opacity: 0;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  width: 55px;
  height: 55px;
  line-height: 55px;
  top: 50%;
  transform: translate(0px, -50%);
  transition: 0.5s;
  border: 0px solid #17161a;
  background: rgb(57,151,213);
}
.slick-prev {
  left: -65px;
}
.slick-next {
  right: -65px;
}
.slick-next:before,
.slick-prev:before {
  color: #fff;
  font-size: 40px;
  transition: all 0.3s ease 0s;
  content: "\ea93";
  font-family: IcoFont !important;
  line-height: inherit;
  opacity: 1;
}
.slick-next:before {
  content: "\ea94";
  font-family: IcoFont !important;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  background: #555;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #fff;
}
button:focus {
  outline: 0;
}
.simages_id11:hover .slick-prev,
.simages_id11:hover .slick-next {
  opacity: 1;
}
.dastra_blog_area:hover .slick-prev,
.dastra_blog_area:hover .slick-next {
  opacity: 1;
}
.dt_test_area:hover .slick-prev,
.dt_test_area:hover .slick-next {
  opacity: 1;
}

.slick-prev, .slick-next{
display:none !important;
}

@media (min-width: 1365px) and (max-width: 1660px) {
  #scrollUp {
    right: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #scrollUp {
    bottom: 60px;
    right: 30px;
  }
}

@media (max-width: 767px) {
  /* footer css */
  .copy-right-text p {
    font-size: 14px;
  }

  #scrollUp {
    bottom: 92px;
    right: 30px;
  }

  /* footer bar */
  .footer-top-inner p {
    width: 100%;
  }
  .footer-menu ul {
    margin: 10px 0 0;
    text-align: center !important;
  }
  .footer-menu ul li a {
    font-size: 14px;
  }
  .copy-right-text p {
    text-align: center;
  }
  .footer-bottom:before {
    width: 100%;
  }
  .breadcumb-blog-area {
    padding: 50px 0;
  }

  /* footer css */
  .footer-social-icon a i {
    font-size: 16px;
    height: 35px;
    line-height: 35px;
    width: 35px;
  }

  .dastra-blog-thumb img {
    width: 100%;
  }
}

@media (min-width: 10px) and (max-width: 991px) {
  .footer-top-inner p {
    width: 85%;
  }
}

@media (min-width: 570px) and (max-width: 767px) {
  .footer-top-inner p {
    width: 95%;
  }
}
.mc4wp-form-fields p:nth-child(2) {
  width: 75%;
}




@media screen and (max-width:480px){
.footer-middle {
    padding: 15px 0 20px;
}

}