.is_hidden {display: none;}
.d-col {display: grid;gap: 30px;}
.d-col.three {grid-template-columns: 1fr 1fr 1fr;}
.d-col.four {grid-template-columns: 1fr 1fr 1fr 1fr;}

.d-item {
    background-color: #fff;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 48px 40px;
}
.d-content { height: 100%;
    display: flex;
    flex-direction: column;
}
.d-img {
    height: 270px;
    text-align: center;
    margin-bottom: 25px;
}
.d-img img {
    height: 100% !important;
}

.d-title {
    margin-bottom: 10px;
}

.d-subheading {
    font-size: 15px !important;
    line-height: 24px !important;
    color: #274F9E !important;
}

.d-desc {
    margin-bottom: 10px;
}

.d-button {
    margin-top: auto;
    align-self: center;
}

.d-button:hover {
    color: #fff !important;
    background-color: var(--e-global-color-primary) !important;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    overflow-y: hidden;
    align-items: center;
    background: #00000080;
    padding: 40px 50px 50px 50px;
}

.modal-wrap {
    background: #fff;
    width: 55%;
    margin: auto;
    height: 95vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 30px 11px 30px 20px;
}

.pop-content {
    height: 100%;
    overflow-y: scroll;
    padding: 20px
}

.pop-content::-webkit-scrollbar {
  width: 5px;
}

.pop-content::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3) !important;
    border-radius:5px !important;
}

.pop-content::-webkit-scrollbar-thumb {
  background-color: darkgrey !important;
    border-radius:5px !important;
}

.closeBtn {
    position: absolute;
    right: 10px;
    cursor: pointer;
    width: 55%;
    text-align: right;
    top: 10px;
    opacity: 0.6;
}

.closeBtn .fa-times:before {
    content: "\f00d";
    background: #ffffff;
    border-radius: 100px;
    padding: 8px 10px;
    position: relative;
    color: #2f56a2;
}

.no-scroll {
  overflow-y: hidden;
}

.p-img {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.p-title.blue {
  color: #274f9e;
}

.p-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 25px;
}

.p-title-wrap h3 {
  margin-bottom: 0;
}

.p-desc {
  padding: 0 20px;
}

.modal-wrap:before {
    /* content: "X";
    position: fixed;
    width: 52%;
    height: 25px;
    background: white;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    text-align: right;
    cursor:pointer; */
}

.modal-wrap:after {
    /* content: "";
    position: fixed;
    width: 55%;
    height: 25px;
    background: white;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%); */
}

.d-button.border, .d-button.border:active {
    color: #274f9e;
    background: transparent;
    border: 1px solid #274f9e;
    display: flex;
    gap: 0 15px;
    padding: 12px 20px 12px 20px;
    font-size: 16px;
    font-weight: 700;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    border-radius: 5px;
}


.content-carousel {
  	width: 400px;
  	display: block;
  	margin: 0 auto;
}
.owl-carousel {
  	width: 100%;
}
.owl-carousel div {
  	width: 100%;
}
.owl-carousel .owl-controls .owl-dot {
  	background-size: cover;
  	margin-top: 10px;
}
.owl-carousel .owl-dots {
  	position: absolute;
  	top: 0;
  	left: -100px;
  	width: 80px;
  	height: 100%;
}
.owl-carousel .owl-dot {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.owl-carousel .owl-dots {
    display: flex;
    flex-direction: column;
    gap: 5px 25px;
}

.owl-carousel button.owl-dot {
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 0;
    height: 20%;
}

@media only screen and (max-width:767px) {

  .d-col.three, .d-col.four{grid-template-columns: 1fr;}
  .modal-wrap {width: 92%;padding: 30px 11px 13px 0;}
  .pop-content {padding: 20px 0px 20px 0;}
  .p-title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-wrap {width: 92%;}

  .d-button.border, .d-button.border:active {margin-right: auto;}
  .p-title-wrap h3 {
    margin-bottom: 20px;
  }

.content-carousel {
    width: 300px;
}
}

@media only screen and (max-width:1200px){
	.owl-carousel button.owl-dot {
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 0;
    height: 40%;
}
.owl-carousel .owl-dots {
    position: unset;
    top: 0;
    left: 50%;
    width: 100%;
    height: 90px;
    margin-top: 10px;
}
.owl-carousel .owl-dots {
    flex-direction: row;
	gap: 5px 15px;
}
.owl-carousel button.owl-dot {
    height: 100%;
	width: 100px;
}
.owl-carousel .owl-dots {
	left: -100px;
	}	
}