/* ==============================
   Call action 4 section
   ============================== */

   .call-action-4-images{
    position: relative;
    padding-bottom: 24.390%;
}
.call-action-4-images img{
    width: 100%;
}
.call-action-4-image-1 img{
   border-radius: 20px;
   height: 600px;
}
.call-action-4-image-2{
    position: absolute;
    bottom: 110px;
    right: -90px;   
}


@keyframes fadeRotate{
    0%{
        opacity: 0;
        transform: rotate(-45deg);      
    }
    100%{
        opacity: 1;
        transform: rotate(45deg);
    }
}
.fadeRotate{
    animation-name: fadeRotate;  
}

.alt-features-icon{
    position: relative;
    display: inline-block;
    width: 65px;
    height: 1em;
    /* margin: 0 0 22px 0; */
    font-size: 35px;
    text-align: center;
    line-height: 1.3;
    color: currentColor;
}


/* 1-04-2024 */
/* .page-section,
.small-section,
.bg-image{
    width: 100%;
    display: block;    
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;    
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    padding-top: 30px;
    padding-bottom: 30px;
} */

/* 2-04-2024 */
@keyframes clipLeftIn{
	0% {
		clip-path: inset(0 0 0 100%);
	}

	to {
		clip-path: inset(0);
	}
}
.clipLeftIn{
	animation-name: clipLeftIn;
    animation-timing-function: var(--ease-out-medium);
}

/* 16/01/2025 */

.top-scroll-arrow {
    position: fixed;
    bottom: 70px;
    right: 30px;
    display: none; /* Hidden by default */
    z-index: 1000;
}

.top-scroll-arrow.show {
    display: block; /* Show when class "show" is added */
}

.design-thinking-list a {
    text-decoration: none;
    color: #FFF;
}

.design-list-2 a {
    text-decoration: none;
    color: #000;
}

.menu-list-btn {
    position: fixed;
    bottom: 15px;
    right: 30px;
    display: block; /* Hidden by default */
    z-index: 1000;
    display: flex;
    align-items: center ;
    gap: 10px;
}


.menubox {
    display: none; /* Hide the menubox by default */
    position: fixed;
    bottom: 50px;
    right: 85px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
.menubox ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menubox ul li {
  margin: 5px 0;
}
.menubox ul li a {
  text-decoration: none;
  color: #FFF;
  font-size: 18px;
}
.menubox ul li a:hover {
  color: #EC4869;
}


@media only screen and (min-width: 992px) {
    .main-hero-text {
        padding-bottom: 80px !important;
    }
}

#myImg {
    cursor: zoom-in;
}


/* Modal Container */
.modal {
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    position: fixed; /* Stay in place */
    z-index: 9999; /* On top of other elements */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scrolling if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%; /* Adjust as per your need */
    max-width: 700px; /* Max width for large images */
    border: 4px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(1)}
    to {-webkit-transform:scale(2)}
}

@keyframes zoom {
    from {transform:scale(0.4)}
    to {transform:scale(1)}
}

@keyframes zoom-out {
    from {transform:scale(1)}
    to {transform:scale(0)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


.menu-button::before {
    background: #000;
}

.menu-button:hover:before{
    background: #333;
    transition: all 0.25s cubic-bezier(0,0,.31,.99);
}


/* Tooltip text */
.tooltiptext {
    visibility: hidden;
    width: 80px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 0px;
    border-radius: 6px;
  
    /* Position the tooltip text */

  
    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  /* Tooltip arrow */
  .tooltiptext::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 58%;
    /* margin-top: -5px; */
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .menu-list-btn:hover .tooltiptext {
    visibility: visible !important;
    opacity: 1 !important;
  }