.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn-elementor-popup-right.btn-elementor-popup-column {
    width: 100%;
}
.modal__container {
    background-color: transparent;
    padding: 30px;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal__close {
    border: 0 !important;
    right: 25px !important;
    position: absolute;
    top: 20px;
    background: transparent !important;
    padding: 0px !important;
    width: 20px;
    height: 20px;
}

.modal__header .modal__close:before {
    content: "\2715";
    color: #fff;
    font-size: 21px;
}

.modal__content {
    line-height: 1.5;
    color: rgba(0,0,0,.8);
    max-height: 750px;
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}
/**************************\
Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
from { transform: translateY(15%); }
  to { transform: translateY(0); }
}

@keyframes mmslideOut {
  from { transform: translateY(0); }
  to { transform: translateY(-10%); }
}

.micromodal-slide {
display: none;
}

.micromodal-slide.is-open {
display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
will-change: transform;
}


.modal__content {
    max-width: 65%;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    overflow-y: scroll;
    position: relative;
    width: 100%;
}
.modal__overlay {
    z-index:999;
}
button.modal__close:after {
    content: '';
    background-color: #333;
    border-radius: 1px;
    cursor: pointer;
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .5s ease-in-out;
    width: 14px;
    -ms-transform: rotate(0deg);
    width: 20px;
    -ms-transform: rotate(-45deg);
    transform: rotate(-48deg);
    bottom: 10px;
}
button.modal__close:before {
      content: '';
      background-color: #333;
      border-radius: 1px;
      cursor: pointer;
      display: block;
      height: 2px;
      left: 0;
      position: absolute;
      transition: all .5s ease-in-out;
      width: 14px;
      -ms-transform: rotate(0deg);
      width: 20px;
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      bottom: 10px;
}

@media screen and (max-width:900px){
  .btn-elementor-popup-left.btn-elementor-popup-column {
      width: 100%;
      margin-right:0px;
	  margin: 0 auto;
  }
  .btn-elementor-popup-heading {
      display: block;
  }
}
@media screen and (max-width:1024px){
    .btn-elementor-popup-gallery .elementor-image-gallery .gallery-item {
      max-width: 50%;
  }
}
@media screen and (max-width:767px){
  .modal__content {
    max-width: 90%;
    margin-top:20%;

  }
  .btn-elementor-popup-list-cont {
      display: block;
  }
}


.btn-elementor-project-panel{
  display:none;
}
.btn-elementor-project-panel.active {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(3, 1fr);
}
.btn-elementor-project-list {
    position: relative;
    overflow: hidden;
}
.project-overlay {
    -webkit-transform: translateX(1000px);
    -ms-transform: translateX(1000px);
    transform: translateX(1000px);
    position: absolute;
    background: rgba(0,0,0,0.56);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    padding-top: 20%;
}
.btn-elementor-project-list a:hover .project-overlay {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    z-index: 1;
}
.btn-elementor-project-list h3.btn-elementor__list_name,
.btn-elementor-project-list h4.btn-elementor__list_role {
    color: #fff;
}
.btn-elementor-project-list {
    position: relative;
    overflow: hidden;
}
h3.btn-elementor__list_name {
    font-size: 20px;
}
h4.btn-elementor__list_role {
    font-size: 15px;
    font-weight: normal;
}
ul.btn-elementor-project-tab {
    text-align: center;
}
ul.btn-elementor-project-tab li {
    display: inline-block;
    --space-between: 10px;
    cursor: pointer;
    color: #6d7882;
    font-weight: 500;
    position: relative;
    padding: 7px 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 16px;
}
ul.btn-elementor-project-tab a {
    color: #6d7882;
}
ul.btn-elementor-project-tab .active,
ul.btn-elementor-project-tab li:hover a{
  color:#002c5b
}
.btn-elementor-project-heading {
    display: flex;
}
.btn-elementor-project-column {
    width: 50%;
    padding: 20px;
}
.btn-elementor-project-list img {
    max-height: 245px;
    width: 100%;
    object-fit: cover;
    height: 245px;
}
.btn-elementor-project-gallery figcaption {
    display: none !important;
}