/* Override Defaults */
#inner-page-wrapper > .custom-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.breadcrumbs-holder {
    display: none;
}

.header {
    background: #fff;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (height/width = 9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #fff;
}
  
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scale-animation {
    width: 100%; /* Set initial size */
    animation: scaleLoop 30s infinite; /* 3s duration, infinite loop */
}
  
@keyframes scaleLoop {
    0% {
      transform: scale(1); /* Original size */
    }
    50% {
      transform: scale(1.2); /* Scaled up */
    }
    100% {
      transform: scale(1); /* Back to original size */
    }
}

.ip-about-banner {
    overflow: hidden;
}

.ip-about-banner-bg {
    /* height: 100vh; */
    /* opacity: 0; */
    height: 500px;
    background: rgb(62, 85, 113);
    background: linear-gradient(2deg, rgba(62, 85, 113, 1) 0%, rgb(33 159 175) 100%);
}

.ip-about-banner-bg .bg-canvas {
    opacity: 0.2;
    filter: grayscale(1);
}

.ip-about-banner-colors {
    height: clamp(200px,20.833vw,400px);
}


.ip-about-banner-colors div {
    position: absolute;
    width: 20%;
    height: 100%;
    background: #34bba7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-about-banner-colors div:nth-child(1) {
    background: #34bba7;
    left: 0;
}

.ip-about-banner-colors div:nth-child(2) {
    background: #3e5571;
    left: 20%;
}

.ip-about-banner-colors div:nth-child(3) {
    background: #6f89ae;
    left: 40%;
}

.ip-about-banner-colors div:nth-child(4) {
    background: #cadff3;
    left: 60%;
}

.ip-about-banner-colors div:nth-child(5) {
    background: #eff7fd;
    left: 80%;
}

.ip-about-banner-colors div span {
    color: #fff;
    font-size: 14vw;
    font-weight: 700;
    text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.23);
    display: block;
    transition: all 1s ease;
    pointer-events: none;
}

.ip-about-banner-colors div:hover span {
    transform: rotateY(360deg);
}

.ip-about-banner-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ip-about-banner-content h1 {
    color: #fff;
    font-size: clamp(30px,3vw,57px);
    margin-top: 130px;
}


/* Content */
.ip-about-content {
    text-align: center;
    padding: 100px 0;
}

.ip-about-content h2 {
    font-size: clamp(30px,2.604vw,50px);
    margin: 0;
    color: var(--primary);
    color: var(--secondary);
    font-weight: 700;
}

.ip-about-content h3 {
    font-size: clamp(20px,1.302vw,25px);
    margin: 55px 0 20px;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 600;
}

.ip-about-content p {
    margin: 17px 0 0;
    font-size: clamp(20px,1.302vw,25px);
    font-weight: 400;
    color: var(--primary);
    line-height: 1.4;
}

/* About Page */
.ip-about-agents-item-col.img {
    width: 30%;
}

.ip-about-agents-item-col.content {
    width: 70%;
    padding: 50px;
}

.ip-about-agents-wrap {
    margin: 100px 0 50px;
    font-family: var(--font-family-default);
    position: relative;
    overflow: hidden;
}

.ip-about-agents-item-col.img .img-wrapper {
    background: #eff7fd;
    border-radius: 35px;
    overflow: hidden;
}

.ip-about-agents-item-content-inner {
    padding: 50px clamp(25px,2.604vw,50px);
    background: #eff7fd;
    border-radius: 35px;
}

.ip-about-agents-wrap .global-title {
    margin: 0 0 30px;
}

.ip-about-agents-item-col.content h3 {
    font-size: clamp(18px, 1.643vw, 23px);
    line-height: 1.4;
    color: var(--secondary);
    font-weight: 600;
	margin: 0;
}

.ip-about-agents-item-col.content h4 {
    font-size: clamp(18px, 1.643vw, 23px);
    line-height: 1.4;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 30px;
}

.ip-about-agents-item-content-desc {
    font-size: clamp(16px,1.042vw,20px);
}

.ip-services-connect {
	background: #eff7fd;
	padding: 200px 15px;
	text-align: center;
}

.ip-services-connect-container {
    max-width: 1170px;
    width: 100%;
    margin: auto;
}

.ip-services-connect-main h2 {
    font-size: clamp(30px,2.604vw,50px);
    margin: 0;
    color: var(--primary);
}

.ip-services-connect-main h3 {
    margin: 50px 0 0;
    font-size: 25px;
    font-weight: 400;
    color: var(--primary);
}

.ip-services-connect-main h3 a {
    color: var(--secondary);
    font-weight: 700;
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */ 
@media only screen and (max-width: 991px) {
	/* About Page */
	.ip-container .breadcrumbs-holder {
		padding-top: 50px;
	}

    .ip-about-banner-bg {
        height: 250px;
    }

    .ip-about-banner-content h1 {
        margin-top: 0;
    }

	.ip-about-agents-item-col {
		width: 100% !important;
	}

	.ip-about-agents-item-col.img .img-wrapper {
		max-width: 400px;
		width: 100%;
		margin: 0 auto 0;
	}

	.ip-about-agents-item-col.content {
		padding: 15px 0;
	}

	.ip-services-connect-main h3 {
		font-size: 19px;
        line-height: 1.5;
	}

	.ip-services-connect {
		padding: 100px 15px;
	}

    .contact-wrap {
        padding: 0 15px;
    }
}
