* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins';
    background: #EDFFFD;
}
a {
    color: black;
    text-decoration: none;
}
.head-row {
    position: relative;
}
.head-row .container {
    height: 100vh;
    width: 100%;
    max-height: 700px;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.col-left {
    float: left;
    width: 100%;
    margin-top: 100px;
    padding-left: 100px;
}
.col-right {
    display: flex;
    align-items: flex-end;
    width: 100%;
    position: relative;
    height: 100%;
    padding-bottom: 20px;
}
.col-left .line {
    width: 100%;
    height: 10px;
    margin: 10px 0px;
    display: inline-block;
    background: linear-gradient(90deg, #cf212b, transparent, transparent);
}
.col-left h2 {
    font-size: 40px;
    margin-bottom: 25px;
}
.col-left img {
    height: 108px;
    width: 295px;
    margin-bottom: 25px;
}
.col-left p {
    font-size: 25px;
    line-height: 40px;
    width: 475px;
    font-weight: 500;
}
.col-left .head-info{
    font-size: 18px;
    font-weight: 500;
}
.col-left .head-info  a{
    color: #cf202b;
    background: none;
    border: none;
    font-size: 18px;
}
.col-right img {
    width: 100%;
}
.head-row .svg {
    position: absolute;
    width: 100%;
    z-index: 5;
    bottom: 0;
    filter: drop-shadow(-3px -20px 15px rgba(0, 0, 0, 0.116))
}

/* COMPANIES CARD */
.companies_card {
    font-family: 'Poppins';
    margin: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17rem, 16rem));
    grid-gap: 2rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.card {
    width: auto;
    overflow: hidden;
    box-shadow: 0px 33px 107px -49px rgba(0, 0, 0, 0.75);
    background-color: #fff;
    border: 2px solid #f3f7f5;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 250ms ease-in;
}

.card:hover {
    transform: scale(1.05);
}

.comp-img-con {
    width: 14rem;
    height: 230px;
    background: #f3f7f5;
    text-align: center;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comp-info {
    position: relative;
    display: flex;
    padding: 15px;
}

.comp-info i {
    padding: 4px;
    font-size: 17px;
}

.comp-info p {
    font-size: 16px;
    padding-left: 12px;
}

.companies-card hr {
    width: 100%;
    border: 0.5px solid #f3f7f5;
}

/* Card BUTTON 1 */
.comp-btn1 {
    padding-top: 40px;
}

.comp-btn1 button {
    font-size: 18px;
    border-radius: 40px;
    color: #000000;
    border: 1px solid black;
    font-weight: 600;

    height: 70px;
    width: 220px;
    background: white;
    transition: 200ms all;
}

.comp-btn1 button:hover {
    background: #cf202b;
    color: white;
    border: none;
    cursor: pointer;
}

/* Card Button 2 */
.comp-btn2 {
    padding-top: 40px;
}

.comp-btn2 button {
    font-size: 18px;
    border-radius: 40px;
    color: #000000;
    border: 1px solid black;
    font-weight: 600;

    height: 70px;
    width: 220px;
    background: white;
    transition: 200ms all;
}

.comp-btn2 button:hover {
    background: #f15a24;
    color: white;
    border: none;
    cursor: pointer;
}

/* Card Button 3 */
.comp-btn3 {
    padding-top: 40px;
}

.comp-btn3 button {
    font-size: 18px;
    border-radius: 40px;
    color: #000000;
    border: 1px solid black;
    font-weight: 600;

    height: 70px;
    width: 220px;
    background: white;
    transition: 200ms all;
}

.comp-btn3 button:hover {
    background: #064260;
    color: white;
    border: none;
    cursor: pointer;
}

/* Card Button 4 */
.comp-btn4 {
    padding-top: 40px;
}

.comp-btn4 button {
    font-size: 18px;
    border-radius: 40px;
    color: #000000;
    border: 1px solid black;
    font-weight: 600;

    height: 70px;
    width: 220px;
    background: white;
    transition: 200ms all;
}

.comp-btn4 button:hover {
    background: #000000;
    color: white;
    border: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .head-row {
        height: auto;
    }

    .head-row .container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: auto;
        max-height: none;
    }

    .col-left {
        margin-bottom: 50px;
    }

    .col-right {
        height: 100%;
        position: relative;

    }

    .col-right img {
        width: 100%;

    }

    .head-row .svg {
        bottom: 10px;
    }
}

@media screen and (max-width: 900px) {
    .col-left h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .col-left img {
        height: 70px;
        width: 160px;
        margin-bottom: 15px;
    }

    .col-left p {
        font-size: 20px;
        line-height: 40px;
        width: 375px;
        font-weight: 500;
    }

    .col-left button {
        height: 54px;
        width: 134px;
        font-size: 15px;
        margin-top: 25px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 470px) {
    .col-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .col-left h2 {
        font-size: 25px;

    }

    .col-left img {
        height: 70px;
        width: 160px;

    }

    .col-left p {
        font-size: 20px;
        line-height: 40px;
        width: 100%;
        font-weight: 500;
        text-align: center;
    }

    .col-left button {
        height: 40px;
        width: 110px;
        font-size: 12px;
        margin-top: 25px;
        margin-left: 20px;
    }

}

@media only screen and (max-width:1024px) {

    .head-content .top-ban p span {
        color: #cf202b;
        font-size: 50px;
    }
}

@media only screen and (max-width: 425px) {
    .svg {
        display: none;
    }

    .head-content {
        display: flex;
        flex-direction: column;
        position: relative;
        justify-content: center;
        width: 100%;
        height: 130vh;
        background-color: #f3f7f5;
    }

    .head-content .top-ban {
        margin-right: 50px;
        margin-left: 55px;
        margin-top: 2rem;
        text-align: center;
    }

}

.info-con {
    font-family: 'Hind';
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 16rem));
    grid-gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    margin-top: 5rem;    
}

.info {
    display: flex;
    padding: 30px;
    justify-content: left;
    align-items: start;
}

.info i {
    font-size: 50px;
    padding-right: 25px;
    transition: 250ms all;
}
.info i:hover{
    transform: scale(1.08);
}
.info h3:hover{
    transform: scale(1.08);
}
.info-head h3 {
    font-size: 16px;
    transition: 250ms all;  
}

.location {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
}

.location iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.contact-form {
    
    gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
}

@media (max-width:980px) { 
    .contact-form {
        grid-template-columns:1fr;
    }
}

.contact-form .left-con input {
    line-height: 2.9;
    padding: 2px 15px 0px 15px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border: none;
    background: #ffffff;
    border-radius: 5px;
    font-family: 'Hind';
    font-size: 15px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.074);

}

.contact-form .right-con textarea {
    line-height: 2.9;
    padding: 2px 15px 0px 15px;
    width: 100%;
    position: relative;
    height: 176px;
    margin-bottom: 20px;
    border: none;
    background: #ffffff;
    border-radius: 5px;
    font-family: 'Hind';
    font-size: 15px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.074);

}

.form-con{
    width: 100%;
    padding-bottom: 40px;
    max-width: 1024px;
    margin: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
    padding: 10px;
}
.contact-btn {
    float: right;
    height: 40px;
    width: 160px;
    border-radius: 6px;
    border: none;
    background: rgb(40, 121, 254);
    font-size: 13px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    transition: 0.3s all;
    
}

.contact-btn:hover {
    background: rgb(0, 92, 240);

}

.credits {
    background: #fff;
    position: relative;
    justify-content: space-around;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    grid-gap: 2rem;
}
@media (max-width:760px){
    .foot-icon {
        position: relative;
        display: flex;
        align-items: center;
    }
}

@media (max-width:426px){
    
    .credits{
        grid-gap: 0rem;
        display: flex;
        flex-direction: column;
    }
    .foot-icon{
        flex-direction: row;
    }
}
@media (max-width:600px){
    .credits{
        grid-gap: 0rem;
    }
    .credits p{
        order: 2;
        padding: 10px;
    }
    .credits{
        display: flex;
        flex-direction: column;
    }
    .foot-icon{
        flex-direction: row;
    }
}

@media (max-width:376px){
    .foot-icon{
        flex-direction: column;
    }
    .credits{
        display: flex;
        flex-direction: column;
    }
    .foot-icon img {
        width: 82px;
    }
    .foot-icon{
        flex-direction: row;
    }
}

.foot-logo{
    padding-top: 20px;
    padding-left: 20px;
}

.foot-logo img {
    height: 50px;
    width: 120px;
}

.credits p{
    font-size: 15px;
}

.foot-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
}

.foot-icon img {
    width: 90%;
    padding:10px;
}













