*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Mulish", serif;
}

.bannertopra{
    padding: 80px 0;
    position: relative;
    /* background: rgb(255,203,33);
background: radial-gradient(circle, rgba(255,203,33,0.1825980392156863) 0%, rgba(235,61,174,0.23862044817927175) 100%); */
}


.bannertopra::before{
    content: "";
    position: absolute;
    width: 40%;
    height: 50%;
    background-image:url(../img/team-details-shape-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    /* animation: widthExpandd 1s forwards  ease-in-out; */
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.7;
}

.bannertopra::after{
    content: "";
    position: absolute;
    width: 40%;
    height: 50%;
    background-image:url(../img/team-details-shape-2.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    /* animation: widthExpandd 1s forwards  ease-in-out; */
    right: 0;
    top: 0;
    z-index: 1;
    opacity: 0.7;
}


.rowmain{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: auto;
}

.rowmain> div{
    z-index: 3;
    position: relative;
}

.logos{
    /* border: 1px solid #000; */
    border: 1px solid rgb(0 0 0 / 22%);
    padding: 20px;
    border-radius: 20px;
    width: 130px;
    height: 130px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.rowmain::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 3px; /* Adjust height as needed */
    background-color: rgba(25, 25, 26, 0.1); /* Adjust color as needed */
    animation: widthExpandd 1s forwards  ease-in-out;
    left: 0;
    top: 50%;
    z-index: 1;
}

@keyframes widthExpandd {
    0% {
        width: 0%;
    }
    100% {
        width: 45%;
    }
}

.rowmain::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 3px; /* Adjust height as needed */
    background-color: rgba(25, 25, 26, 0.1); /* Adjust color as needed */
    animation: widthExpand 1s forwards  ease-in-out;
    /* border: 1px solid rgba(25, 25, 26, 0.1); */
    right: 0;
    top: 50%;
    z-index: 1;
}

@keyframes widthExpand {
    0% {
        width: 0%;
    }
    100% {
        width: 45%;
    }
}

.videohandshake{
    width: 250px;
    height: 250px;
    aspect-ratio: 1/2;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    border: 2px solid #000;
}


.channelpart{
    font-size: 14px;
    font-weight: 500;
    height: 35px;
    line-height: 35px;
    border-radius: 40px;
    padding: 0px 27px;
    display: inline-block;
    letter-spacing: -0.14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1.5px solid rgba(25, 25, 26, 0.2);
    transition: 0.3s;
}


dotlottie-player{
    background-color: #fff;
    padding: 0;
    border-radius: 100%;
    overflow: hidden;
}

.headingtitlemain{
    text-align: center;
    margin-bottom: 50px;
}

h1{
    font-size: 46px;
    font-family: "Inter", serif;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 700;
}
.headingtitlemain p{
    font-size: 18px;
}

input{
    color: #080808;
    background-color: #f5f5f5;
    border: .0625rem solid #f5f5f5;
    border-radius: 12px !important;
    width: 100%;
    height: 55px !important;
    margin-bottom: 0;
    padding: 15px 20px !important;
    font-family: Itcavantgardestd Md, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: all .4s;
    text-transform: capitalize;
}


@media(min-width:992px){
    h1{
        padding: 0px 15%;
    }

    .paddingboth{
        padding: 0px 20%;
    }

    .rowmain{
        width: 60%;
    }
}

.contentbox{
    padding: 80px 20px;
}

.form-group{
    margin-bottom: 20px;
}
label{
    margin-bottom: 10px;
    font-size: 18px !important;
    font-weight: 500;
    color: #080808;
}

.contact-submit{
    background-color: #146ef5;
    padding: 15px 30px;
    color: #fff;
    border-radius: 30px;
}

.contact-submit:hover{
    background-color: #146ef5;
    padding: 15px 30px;
    color: #fff;
    border-radius: 30px;
}

.customclsdiv{
    background-color: #f5f5f5;
    padding: 50px;
    border-radius: 20px;
}
h2{
    font-size: 32px;
    font-family: "Inter", serif;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 600; 
    text-align: center ;
}


.logoimgg{
    text-align: center;
}

@media (max-width: 576px){
    .bannertopra{
        padding: 50px 15px;
    }

    h1{
        font-size: 24px !important;
    }

    .logos{
        width: 75px !important;
        height: 75px !important;
    }

    .videohandshake {
        width: 123px !important;
        height: 125px !important;
    }

    h2{
        font-size: 25px !important;
    }

    .customclsdiv {
        padding: 30px;
    }    
}

