/*content left right background color*/
.content-left-right-image {
    height: unset;
}

@media (min-width: 1920px) {
    .custom-paddings-image {
        padding-top: 180px;
        padding-bottom: 180px;
    }
}

.purple-after:after {
  background-color: #682941;
}

@media only screen and (min-width: 992px) and (max-width: 1198px) {
  .purple-after::after {
    width: 45%;
    height: 100%;
    bottom: 0%;
    right: 0;
  }
}

@media only screen and (max-width: 992px) {
  .purple-after:after {
    display: none;
  }
  
  .blue-after:after {
    display: none;
  }
}

.blue-after:after {
    background-color: #1b2949;
}   

@media only screen and (max-width: 1199px) {
  .custom-dark-red-after::after {
    content: "";
    width: 70%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -200px;
    z-index: -1;
  }
}

@media only screen and (min-width: 1200px) {
  .custom-dark-red-after::after {
    content: "";
    width: 45%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}
/*offcanvas styles*/
.offcanvas-menu {
    position: fixed; 
    top: 0;
    right: -30vw;
    width: 30vw;
    height: 100vh; 
    background-color: #1b2949;
    transition: transform 0.3s ease; 
    z-index: 3; 
    pointer-events: auto;
    overflow-y: auto;
}

@media only screen and (max-width: 992px) {
    .offcanvas-menu {
        width: 45vw;
        right: -45vw;
    }
}

@media only screen and (max-width: 576px) {
    .offcanvas-menu {
        width: 100vw;
        right: -100vw;
    }
}



.offcanvas-menu.open {
    transform: translateX(-100%);
}

.offcanvas-menu .offcanvas-header {
    padding: 10px;
    background-color: #1b2949;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-menu .offcanvas-body {
    padding: 20px;
}

.offcanvas-menu ul {
    list-style-type: none;
    padding: 0;
}

.offcanvas-menu ul li {
    margin: 10px 0;
}

.offcanvas-menu ul li a {
    color: white;
    text-decoration: none;
}

.offcanvas-menu .close {
    
    -size: 30px;
    color: white;
    background: none;
    border: none;
    pointer-events: auto;
    z-index: 4;
}

.name h4, .job-description p, .paragraph-content p {    
    color: #fff;
}

.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.20);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2;
  pointer-events: auto;
}

.menu-open {
    overflow: hidden;
}

.staff-image-page {
    height: 450px;    
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
}

.offcanvasMenu .staff-image {
    height: unset;
}

.offcanvas-menu .staff-image img {
    width: 100%;
}

#page {
    z-index: unset;
}

.staff-btn {
    position: relative;
    cursor: pointer;
    color: #585858!important;
}

.staff-btn::before {
    content: ""; 
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #585858;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 576px) {
  .grid-container {
    grid-template-columns: 1fr; 
  }
}

.arrow-right {
  display: block;
  margin-left: 20px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
}
.arrow-right::after{
  content: "";
  display: block;
  width: 2px;
  height: 25px;
  background-color: white;
  transform: rotate(-45deg) translate(8px, 3px);
  left: 0;
  top: 0;
}

.content-left-right-image {
   box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
}

.offcanvas-body .paragraph-content p:not(first-child) {
    margin-bottom: 20px;
}

.content-left-right-bg .padding-title {
    padding-bottom: 28px;
}

.each-image-anim {
    z-index: 2;
}

.offcanvas-menu.open {
    overflow-y: scroll;
}

@media only screen and (max-width: 768px) {
  .dark-red-after::after {
    display: none!important;
    visibility: hidden!important;
  }
}


