#hero{
    height: 30rem;
    margin-bottom: 0;
}

#hero #hero-img{
    height: calc(var(--vh, 1vh) * 100);
    object-position: bottom;
    filter: brightness(60%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

#hero #hero-text{
    top: 50% !important;
}

/* chat-ops styling start */

#chat-ops #chat-ops-chats{
    
}

#chat-ops{
    display: grid;
    grid-template-columns: calc(50% - 2 * var(--gap-xxl)) 50%;
    gap: calc(2 * var(--gap-xxl));
    height: min-content;
    width: 80rem;
    margin: auto;
    position: relative;
}

#chat-ops #chat-ops-chats > *{
    text-align: left;
}

.chat-ops-chat{
    backdrop-filter: blur(1rem) brightness(50%);
    border-radius: var(--gap-l);
    transition: .5s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.chat-ops-chat#chat-ops-wa,
.chat-ops-chat#chat-ops-fb{
    margin-bottom: var(--gap-xl);
}

.chat-ops-chat:hover{
    /* transform: translateY(calc(0rem - var(--gap-m))); */
    transform: scale(1.03, 1.03);
}

.chat-ops-chat#chat-ops-fb{
    backdrop-filter: blur(1rem) brightness(100%);
    background-color: rgba(var(--white-rgb), .5);
    color: var(--black);
}

.chat-ops-chat#chat-ops-ig{
    background-color: transparent;
    background-image: linear-gradient(45deg, rgba(var(--orange-rgb), .4) 30%, rgba(185,0,178,.3) 100%);
}

.chat-ops-chat .chat-ops-chat-header{
    border-bottom: .1rem solid rgba(var(--white-rgb), .4);
    padding: var(--gap-l);
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-header{
    border-color: rgba(var(--black-rgb), .2);
    background-color: rgba(var(--black-rgb), .1);
    border-radius: var(--gap-l) var(--gap-l) 0 0;
}

.chat-ops-chat .chat-ops-chat-header .chat-ops-chat-header-profile-box{
    display: grid;
    grid-template-columns: max-content auto;
    grid-template-rows: 1fr 1fr;
    column-gap: var(--gap-l);
    align-items: center;
}

.chat-ops-chat .chat-ops-chat-header .chat-ops-chat-header-profile-box .chat-ops-chat-header-profile-box-img-wrapper{
    grid-row: span 2;
    width: 3rem;
    height: 3rem;
    position: relative;
}

.chat-ops-chat .chat-ops-chat-header .chat-ops-chat-header-profile-box .chat-ops-chat-header-profile-box-img-wrapper::after{
    content: "";
    width: .5rem;
    height: .5rem;
    border-radius: var(--gap-xxl);
    border: 0.125rem solid var(--black);
    background-color: #4ad504;
    position: absolute;
    right: 0;
    bottom: 0;
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-header .chat-ops-chat-header-profile-box .chat-ops-chat-header-profile-box-img-wrapper::after{
    border: none;
    width: .625rem;
    height: .625rem;
}

.chat-ops-chat .chat-ops-chat-header .chat-ops-chat-header-profile-box img{
    border-radius: var(--gap-xxl);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.chat-ops-chat .chat-ops-chat-header .chat-ops-chat-header-profile-box h3{
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
    letter-spacing: normal;
}

.chat-ops-chat .chat-ops-chat-body{
    padding: var(--gap-l);
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-body .chat-ops-fb-chat-body-time{
    margin: auto;
    display: block;
    width: fit-content;
    font-size: .75rem;
    opacity: 50%;
}

.chat-ops-chat .chat-ops-chat-body .message{
    background-color: rgba(var(--white-rgb), .2);
    max-width: 20rem;
    padding: var(--gap-m);
    line-height: 1.5;
    border-radius: var(--gap-m);
    border-top-left-radius: 0;
    position: relative;
    left: 9px;
    margin-top: var(--gap-l);
    margin-right: var(--gap-m);
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-body .message,
.chat-ops-chat#chat-ops-ig .chat-ops-chat-body .message{
    border-radius: var(--gap-l);
    border-top-left-radius:  var(--gap-l);
    margin-left: 2rem;
    padding: var(--gap-m) var(--gap-l);
    background-color: rgba(var(--black-rgb), .1);
}

.chat-ops-chat#chat-ops-ig .chat-ops-chat-body .message{
    background-color: rgba(var(--white-rgb), .2);
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-body .message img,
.chat-ops-chat#chat-ops-ig .chat-ops-chat-body .message img{
    width: 2rem;
    height: 2rem;
    border-radius: var(--gap-xxl);
    position: absolute;
    left: calc(-2rem - var(--gap-m));
    top: 0;
}

.chat-ops-chat .chat-ops-chat-body .message svg{
    position: absolute;
    top: 0;
    right: 100%;
}

.chat-ops-chat .chat-ops-chat-body .message svg path{
    fill: rgba(var(--white-rgb), .2);
}

.chat-ops-chat .chat-ops-chat-footer{
    padding: var(--gap-l);
    position: relative;
    margin-top: auto;
    display: block;
}

.chat-ops-chat .chat-ops-chat-footer button{
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap-m);
    align-items: center;
    margin: auto;
    border: none;
    background-color: #3bd776;
    color: var(--white);
    font-family: LexendDeca;
    border-radius: var(--gap-xxl);
    padding: calc(1.5 * var(--gap-m)) var(--gap-l);
    font-size: 1rem;
    cursor: pointer;
    transition: .2s;
}

.chat-ops-chat#chat-ops-fb .chat-ops-chat-footer button{
    border-radius: var(--gap-l);
    background-color: #1a91ff;
}

.chat-ops-chat#chat-ops-ig .chat-ops-chat-footer button{
    border-radius: var(--gap-m);
    background-color: var(--orange);
}

.chat-ops-chat .chat-ops-chat-footer button svg{
    width: 1.5rem;
}

.chat-ops-chat .chat-ops-chat-footer button:hover{
    filter: brightness(110%);
}

#chat-ops #chat-ops-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: var(--gap-m);
    height: 100%;
    filter: brightness(150%);
}

#chat-ops #chat-ops-img{
    position: relative;
}

#chat-ops #chat-ops-img::after{
    content: "";
    position: absolute;
    border: .1rem solid rgba(var(--white-rgb), .5);
    width: calc(100% - 2 * var(--gap-xl));
    height: calc(100% - 2 * var(--gap-xl));
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--gap-m);
}

@media only screen and (max-width: 1410px){
    #chat-ops{
        grid-template-columns: calc(50% - 1 * var(--gap-xxl)) calc(50% - 1 * var(--gap-xxl));
        width: 100%;
    }
}

@media only screen and (max-width: 1150px){
    #chat-ops{
        grid-template-columns: calc(50% - var(--gap-l)) calc(50% - var(--gap-xl));
        gap: var(--gap-xxl);
    }
}

@media only screen and (max-width: 1000px){
    #chat-ops{
        grid-template-columns: calc(50% - var(--gap-l)) calc(50% - var(--gap-l));
        gap: var(--gap-xl);
    }
}

@media only screen and (max-width: 770px){
    #chat-ops{
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    #chat-ops #chat-ops-chats{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: var(--gap-xl);
    }

    #chat-ops #chat-ops-chats > h3:first-of-type,
    #chat-ops #chat-ops-chats .heading{
        grid-column: span 2;
    }

    #chat-ops #chat-ops-chats #chat-ops-ig{
        grid-column: span 2;
    }
}

@media only screen and (max-width: 600px){
    #chat-ops #chat-ops-chats{
        display: grid;
        grid-template-columns: 1fr;
        column-gap: var(--gap-xl);
    }

    #chat-ops #chat-ops-chats > h3:first-of-type,
    #chat-ops #chat-ops-chats .heading{
        grid-column: span 1;
    }

    #chat-ops #chat-ops-chats #chat-ops-ig{
        grid-column: span 1;
    }
}

/* chat-ops styling end */

/* contact-info styling start */

#contact-info-section{

}

#contact-info{
    display: flex;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: var(--gap-xxl);
}

#contact-info .info{
    display: grid;
    grid-template-columns: max-content auto;
    column-gap: var(--gap-xl);
    align-items: center;
    margin: auto;
    padding: 0 var(--gap-xl);
    width: 23rem;
}


@media only screen and (max-width: 480px){
    #contact-info{
        display: grid;
        grid-template-columns: 1fr;
    }

    #contact-info .info{
        width: 100%;
        padding: 0;
    }
}

#contact-info .info .info-icon{
    width: 5rem;
    height: 5rem;
    border: .1rem solid var(--white);
    border-radius: var(--gap-xxl);
    position: relative;
}

#contact-info .info .info-icon span{
    position: absolute;
    display: block;
    font-size: 3rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#contact-info .info .info-text{
    display: flex;
    flex-direction: column;
    row-gap: var(--gap-l);
}

#contact-info .info .info-text .info-title{
    letter-spacing: normal;
    text-align: left;
}

#contact-info .info .info-text .info-info{
    opacity: 80%;
    margin: 0;
}

/* contact-info styling end */

/* map styling start */

#map-section{
    padding-left: 0;
    padding-right: 0;
}

#map{
    width: 100%;
    border: none;
    box-sizing: border-box;
    filter: saturate(0%);
    height: 40rem;
    transition: .2s;
}

#map:hover{
    filter: saturate(100%);
}

/* map styling end */

/* follow-us styling start */

#follow-us{
    position: relative;
    display: flex;
    column-gap: var(--gap-xxl);
    row-gap: var(--gap-xl);
    flex-wrap: wrap;
    margin: auto;
    width: fit-content;
    justify-content: center;
}

#follow-us .platform{
    display: grid;
    grid-template-columns: max-content auto;
    align-items: center;
    border-radius: var(--gap-m);
    padding: var(--gap-l);
    column-gap: var(--gap-l);
    transition: .5s;
    cursor: pointer;
}

#follow-us .platform:hover{
    transform: translateY(calc(0rem - var(--gap-m)));
    filter: brightness(110%);
}

#follow-us .platform#follow-us-ig{
    background-image: linear-gradient(45deg, rgba(var(--orange-rgb), 1) 30%, rgba(185,0,178,1) 100%);
}

#follow-us .platform#follow-us-fb{
    background-color: #1877f2;
}

#follow-us .platform .platform-logo{
    border-right: .1rem solid rgba(var(--white-rgb), .4);
    padding-right: var(--gap-l)
}

#follow-us .platform .platform-logo svg{
    width: 1.5rem;
    height: 1.5rem;
}

#follow-us .platform .platform-logo svg path{
    fill: var(--white);
}

/* follow-us styling end */