
/*About company css*/
section.about-us-home .abt-cont{
    position:relative;
    width:100%;
}
section.about-us-home{
    background-color: var(--white-color);
}
.serv-heading h2{
   transform: rotate(270deg);
    position: absolute;
    left: -120px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--heading-color);
    font-size: var(--f60);
    top: 130px;
}

.serv-content {
    padding-left: var(--p97);
    padding-top: 0;
    width: 100%;
}

section.about-us-home h3{
    font-size: var(--f32);
}
section.about-us-home .abt-co-img-left {
   border-radius: 0px 0px 0px 80px;
   position: relative;
   left: 0px;
   top: 0;
   text-align: center;
   width: 500px;
   height: 420px;
   float: right;
   margin-left: var(--m30);
   z-index: 2;
   object-fit: cover;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   background-position: center center;
}

section.about-us-home .abt-co-img-left img, section.about-us-home .abt-co-img-right img{
    border-radius: 0px;
}
section.about-us-home .abt-co-img-left img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 0px solid var(--black-color);
    animation: blobEffect 5s linear infinite;
}
section.about-us-home  .abt-co-img-right {
    text-align: right;
    z-index: 1;
    transform: translateY(135px) translateX(35px);
}
section.about-us-home .abt-co-img {
    position: relative;
    padding-right: 0;
}
section.about-us-home .abt-co-img-center {
    position: absolute;
    top: 205px;
    left: 65px;
    z-index: -1;
}
section.about-us-home .head-sec {
    text-align: left;
    margin-bottom: var(--m15);
}
section.about-us-home ul.key-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section.about-us-home li{
    width: 50%;
    margin-bottom: var(--m10);
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

section.about-us-home i{
    font-size: var(--f18);
    margin-right: var(--m10);
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
}
section.about-us-home p {
    color: var(--primary-color);
    width:100%;
}
section.about-us-home .abt-co-img-right img{
    height: 300px;
    width: 230px;
    object-fit: cover;
    border: 1px solid var(--black-color);
}
section.about-us-home a.main-btn {
    display: block;
    width: 150px;
    text-align: center;
    margin-top: var(--m10);
}
@keyframes blobEffect{
	0%, 100%{
		border-radius: 64% 36% 27% 73% / 55% 58% 45% 42%;
	}
	25%{
		border-radius: 73% 27% 26% 38% / 73% 36% 64% 27%;
	}
	50%{
		border-radius: 28% 72% 44% 56% / 49% 40% 60% 51%;
	}
	25%{
		border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
	}
}