

/*home laptop screen*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;

}

.home {
    background: #f8f5f457;
    width: 100%;
    position: relative;
    overflow: hidden;
}
@keyframes appear {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.section {
    padding: 100px 120px 100px ;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-image: url(/img/image\ \(3\).webp);
    background-position: 0px -300px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.section::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #04040463;
    position: absolute;
    bottom: 0;
    left: 0;
}


.container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    /* position: absolute;
    left: 0%;
    bottom: 70px; */
}

.home_title {
    color: #ffffff;
    text-align: center;
    font-family: "Roboto-Bold", sans-serif;
    /* font-size: 48px; */
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 30px;
    font-weight: 700;
    z-index: 1;
    width: 100%;
    /* white-space: nowrap;
    animation: typing 5s steps(18);
    animation-timing-function: linear;
    animation-timeline: 2s; */
}
@keyframes typing {
    from { width: 0;}
}

.home_description {
    color: #ffffff;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    line-height: 32px;
    font-weight: 400;
    margin-top: -10px;
    z-index: 1;
    display: block;
}


/* button home */
.frutiger-button {
    cursor: pointer;
    position: relative;
    padding: 2px;
    border-radius: 10px;
    border: 0;
    margin-top: 10px;
    text-shadow: 1px 1px #000a;
    background: linear-gradient(#9E1B00, #9E1B00);
    box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.233);
    transition: 0.3s all;
}

.frutiger-button:hover {
    box-shadow: 0px 6px 12px 0px #0009;
}

.frutiger-button:active {
    box-shadow: 0px 0px 0px 0px #0000;
}

.inner {
    position: relative;
    inset: 0px;
    padding: 1em 2em;
    border-radius: 4px;
    background: radial-gradient(circle at 50% 100%, #780A00 10%, #30f8f800 55%),
        linear-gradient(#4b0600, #780A00);
    overflow: hidden;
    transition: inherit;
}

.inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-65deg, #0000 40%, rgba(255, 255, 255, 0.539) 50%, #0000 70%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: thing 3s ease infinite;
}

@keyframes thing {
    0% {
        background-position: 130%;
        opacity: 1;
    }

    to {
        background-position: -166%;
        opacity: 0;
    }
}

.top-white {
    position: absolute;
    border-radius: inherit;
    inset: 0 -8em;
    background: radial-gradient(circle at 50% -270%,
            #fff 25%,
            #fff6 40%,
            #fff0 60%);
    transition: inherit;
}

.inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: inherit;
    box-shadow: inset 0px 2px 8px -2px #0000;
}

.frutiger-button:active .inner::after {
    box-shadow: inset 0px 2px 8px -2px #000a;
}

.text {
    position: relative;
    z-index: 1;
    font-weight: 550;
    transition: inherit;
    color: #fff8f6;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 1.225em;
    line-height: 24px;
    font-weight: 700;
}

@media (max-width: 1380px) {
    .home_title {
        line-height: 30px;
        font-weight: 700;
        z-index: 1;
        width: 100%;
        white-space: wrap;
        animation: none;
    }
}
@media (max-width: 1080px) {
    .section {
        padding: 100px 100px 100px;

        height: 90vh;
        background-position: 0px -100px;
    }
}
@media (max-width: 900px) {
    .section {
        padding: 100px 50px 100px;
        width: 100%;
        background-position: 0px -100px;
    }
}
@media (max-width: 685px){
    .section {
        background-position: 0px 0px;
    }
    .home_description {
        line-height: 25px;
    }
    .frutiger-button:hover {
        box-shadow: none;
    }
}
@media (max-width: 480px){
    .section {
        padding: 100px 20px 10px;
    }
    .home_title {
        line-height: 35px;
    }
    .text {
        font-size: 1.1em;
    }
}


/* navigation bar */
.top-bar {
    padding: 20px 120px;
    width: 100%;
    height: 12vh;
    position: absolute;
    left: 0;
    top: 20px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.12);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    z-index: 3;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: -30px;
}

.logo_container {
    background-image: url(/img/cgexplicit\ \(4\).png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    background-position: center;
    width: 200px;
    height: 120px;
    align-items: center;
}
.logo_nav{
    display: none;
}


.navstylelink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: "Roboto-Regular", sans-serif;
}

.menu {
    display: flex;
    justify-content: space-between;
    gap: 2.125em;
}

.tab {
    text-decoration: none;
    color: #780A00;
    font-size: 1.125em;
    line-height: 24px;
    letter-spacing: 0.05em;
    font-weight: 400;
    position: relative;
    align-items: center;
    cursor: pointer;
}
.tab.active {
    color: #2dd4bf;
}

.tab::before {
    content: '';
    width: 0%;
    height: 5px;
    background-color: #780A00;
    position: absolute;
    bottom: -6px;
    transition: 0.9s;
}

.tab:hover::before {
    width: 100%;
}

.contact_tab{
    background: #780a00c8;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    margin-left: 20px;
    transition: background-color 0.2s;
}
.contact_tab:hover {
    background-color: #780a0063;
}
.tab4{
    color: #ffffff;
}
.tab4:hover::before{
    width: 0;
}

.mobilenavtoggle {
    display: none;
}

@media (max-width: 1250px) {
    .logo_container {
        width: 190px;
        height: 110px;
    }

    .logo_title {
        font-size: 1.5em;
    }
    .tab {
        font-size: 1.025em;
    }
}
@media (max-width: 1150px) {
    .logo_container {
        width: 180px;
        height: 100px;
    }

    .logo_title {
        font-size: 1.3em;
    }

    .tab {
        font-size: 1.005em;
    }
}
@media (max-width: 1070px) {
    
    .logo_title {
        font-size: 1.125em;
    }
    .tab {
        font-size: 0.9em;
    }

    .textfield {
        width: 120px;
    }
    .title {
        font-size: 2.5em;
        line-height: 40px;
    }

    .description {
        font-size: 1.4em;
        margin-top: 5px;
    }

    .button {
        margin-top: 10px;
    }

    .primary {
        padding: 0.5rem 1.2rem;
    }

    .title2 {
        font-size: 0.8em;
    }   
}

@media (max-width: 890px) {

    .navstylelink {
        position: absolute;
        top: -30px;
        right: 0%;
        /* inset: 0% 0% 0 0%; */
        background-color: #c36c64;
        display: flex;
        flex-direction: column;
        padding: min(5vh, 7rem) 2em;
        backdrop-filter: blur(8rem);
        align-items: center;
        z-index: 10; 
        width: 100%;
        height: 100vh;
        transform: translatex(100%);
        transition: transform 150ms ease-out;
    
    }

    .navstylelink[data-visible="true"] {
        transform: translatex(0%);
    }

    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
        list-style: none;
        z-index: 6;
        color: white;
        width: 100%;
        padding-block: 130px;
    }


    .tab {
        font-size: 18px;
        text-decoration: none;
        color: white;
        border-style: none;
        font-weight: normal;
        padding-bottom: 20px;
        font-family: 'El Messiri', sans-serif;
        border-bottom: 1px solid white;
        width: 100%;
    }
    .tab::before {
        display: none;
    }
    .contact_tab{
        background: none;
        border: 1px solid white;
        width: 100%;
        border-radius: 0px;
        padding: 1.25rem 1.3rem;
        text-align: center;
        font-family: 'El Messiri', sans-serif;
        font-size: 20px;
        color: white;
    }
    .contact_tab:hover {
        background: none;
    }


    .mobilenavtoggle {
        display: block;
        position: absolute;
        background: url(/img/icon-hamburger.svg);
        background-repeat: no-repeat;
        width: 2rem;
        border: 0;
        aspect-ratio: 1;
        top: 40%;
        right: 2.5rem;
        z-index: 1000;
    }

    .mobilenavtoggle[aria-expanded="true"] {
        background-image: url(/img/icon-close.svg);
        z-index: 1000;
    }
    .logos {
        display: flex;
        align-items: center;
        cursor: pointer;
        margin-left: -100px;
    }
    .logo_nav {
        display: block;
        background-image: url(/img/cgexplicit\ white\ \(5\).png);
        background-repeat: no-repeat;
        background-size: cover;
        background-size: 100%;
        background-position: center;
        width: 180px;
        height: 100px;
        align-items: center;
        position: absolute;
        left: 0;
        top: 30px;
    }
    .logo_container {
        width: 180px;
        height: 100px;
    }
}
@media (max-width: 480px) {
    .logos{
        margin-left: -130px;
    }
    .mobilenavtoggle{
        right: 20px;
    }
}
@media (max-width: 390px){
    .logo_nav{
        background-image: url(/img/cgexplicit\ white\ \(5\).png);
        width: 150px;
        height: 80px;
        top: 30px;
    }
    .logo_container {
        width: 150px;
        height: 80px;
    }
}


.list {
    padding: 120px 120px 120px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.container2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 60px;
    max-width: 1080px;
}
.title-con {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.sideblock{
    height: 30px;
    width: 8px;
    background-color: #780A00;
}
.title4 {
    color: #780A00;
    text-align: center;
    font-family: "Roboto-Bold", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    line-height: 48px;
    font-weight: 700;
}
.fa-caret-right{
    color: #780A00;
    text-align: center;
    font-size: 30px;
    line-height: 48px;
    font-weight: 700;
}
.description1{
    font-family: "Roboto-Bold", sans-serif;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
}
@media (max-width: 1080px) {
    .list {
        padding: 80px 100px;
    }
}
@media (max-width: 900px){
    .list {
            padding: 80px 50px;
        }
    .sideblock{
        height: 22px;
        width: 8px;
    }
    .fa-caret-right{
        display: none;
    }
}
@media (max-width: 700px) {
    .sideblock {
        height: 18px;
        width: 8px;
    }
}
@media (max-width: 565px) {
    .sideblock {
            height: 20px;
            width: 5px;
            margin-bottom: -500px;
        }
    .fa-caret-right{
        display: none;
    }
}
@media (max-width: 480px) {
    .list {
        padding: 50px 20px;
    }
    .sideblock {
        height: 16px;
        width: 5px;
    }
    .description1{
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
        
    }

}



.list2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    animation: appear linear;
    animation-timeline: var();
    animation-range: entry 0% cover 40%;
}

.row {
position: relative;
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
}

.row .item {
    padding: 12px 0px 12px 0px;
    
    box-shadow: 0px 18px 25px  rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.fl {
    z-index: 1;
    transition: transform 1s;
}

.bs {
    z-index: 4;
    transition: transform .8s;
}

.mt {
    z-index: 3;
    transition: transform .8s;
}

.tl {
    z-index: 1;
    transition: transform .8s;
}

.ev {
    /* z-index: 3; */
    z-index: 1;
    transition: transform .8s;
}

.buz{
    /* transform: rotate(calc(25 * 1deg)); */
    background-image: url(/img/mentrship.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* width: 350px;
    height: 300px; */
    width: 300px;
    height: 270px;
    z-index: 10;
    transition: transform .5s;
}
.buz:hover{
    transform: scale(1.2);
}
.free{
    /* transform: rotate(calc(-25 * 1deg)); */
    background-image: url(/img/freelancing1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 250px;
    height: 230px;
    margin-right: -120px;
    transition: transform .5s;
}
.free:hover,
.fl:hover {
    transform: scale(1.2);
    z-index: 11;
}
.mentor{
    /* transform: rotate(calc(25 * 1deg)); */
    background-image: url(/img/tuoring.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 270px;
    /* margin-right: -120px; */
    margin-right: -30px;
    transition: transform .5s;
}
.mentor:hover,
.mt:hover {
    transform: scale(1.1);
    z-index: 11;
}
.event {
    /* transform: rotate(calc(-25 * 1deg)); */
    background-image: url(/img/events1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* width: 300px;
    height: 270px; */
    width: 250px;
    height: 230px;
    margin-left: -120px;
    z-index: 5;
    transition: transform .5s;
}
.event:hover,
.ev:hover {
    transform: scale(1.1);
    z-index: 11;
}
.travel {
    /* transform: rotate(calc(-25 * 1deg)); */
    background-image: url(/img/pexels-plane-cutajar-347725497-28787084.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 250px;
    height: 230px;
    margin-left: -120px;
    transition: transform .5s;
}
.travel:hover,
.tl:hover {
    transform: scale(1.2);
    z-index: 11;
}


.frame {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
    cursor: pointer;
}

.icon {
    color: #780A00;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 62.5px;
    line-height: 100px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    top: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.frame-427318906 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    background-color: #ffffffc0;
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
}

.title5 {
    color: #a79c04;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
}
.title5 a {
    color: #a79c04;
}

.subtitle {
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
}

@media (max-width: 900px){
    .fl{
        grid-area: free;
    }
    .bs{
        grid-area: buz;
    }
    .mt{
        grid-area: mentor;
    }
    .tl{
        grid-area: travel;
    }
    .ev{
        grid-area: event;
    }

    .free {grid-area: free;
        width: 300px;
        height: 250px;
        margin: 0px;
    }
    .mentor {grid-area: mentor;
        width: 300px;
        height: 250px;
        margin: 0px;
    }
    .buz {grid-area: buz;
        width: 300px;
        height: 250px;
        margin-right: 0px;}
    .event {grid-area: event;
        width: 300px;
        height: 250px;
        margin: 0px;}
    .travel {grid-area: travel;
        width: 300px;
        height: 250px;
        margin: 0px;
        display: flex;
        justify-self: center;
    }

    .row{
        display: grid;
        grid:
        'buz buz buz free free free'
        'mentor mentor mentor event event event'
        'travel travel travel travel travel travel';
        grid-gap: 30px;
        padding: 10px;
        align-items: center;
        justify-content: center;
    }
    .free:hover,
    .mentor:hover,
    .buz:hover,
    .event:hover,
    .travel:hover {
        transform: none;
    }
}
@media (max-width: 660px){
    .free{
        width: 250px;
        height: 230px;
    }
    .mentor{
        width: 250px;
        height: 230px;
    }
    .buz{
        width: 250px;
        height: 230px;
    }
    .event{
        width: 250px;
        height: 230px;
    }
    .travel {
        width: 250px;
        height: 230px;
    }
}
@media (max-width: 560px) {
    .list2 {
        margin-top: -40px;
    }
    .free {
        width: 220px;
        height: 200px;
    }

    .mentor {
        width: 220px;
        height: 200px;
    }

    .buz {
        width: 220px;
        height: 200px;
    }

    .event {
        width: 220px;
        height: 200px;
    }

    .travel {
        width: 220px;
        height: 200px;
    }
}
@media (max-width: 490px) {
    .free {
        width: 200px;
        height: 200px;
    }

    .mentor {
        width: 200px;
        height: 200px;
    }

    .buz {
        width: 200px;
        height: 200px;
    }

    .event {
        width: 200px;
        height: 200px;
    }

    .travel {
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 450px) {
    .free {
        width: 150px;
        height: 150px;
    }

    .mentor {
        width: 150px;
        height: 150px;
    }

    .buz {
        width: 150px;
        height: 150px;
    }

    .event {
        width: 150px;
        height: 150px;
    }

    .travel {
        width: 150px;
        height: 150px;
    }

    .title5 {
        font-size: 12px;
        line-height: 18px;
    }

    .subtitle {
        font-size: 10px;
        line-height: 10px;
    }
}
@media (max-width: 340px) {
    .free {
        width: 140px;
        height: 150px;
    }

    .mentor {
        width: 140px;
        height: 150px;
    }

    .buz {
        width: 140px;
        height: 150px;
    }

    .event {
        width: 140px;
        height: 150px;
    }

    .travel {
        width: 140px;
        height: 150px;
    }

    .title5 {
        font-size: 12px;
        line-height: 18px;
    }

    .subtitle {
        font-size: 8px;
        line-height: 10px;
    }
}
@media (max-width: 315px) {
    .free {
        width: 120px;
        height: 130px;
    }

    .mentor {
        width: 120px;
        height: 130px;
    }

    .buz {
        width: 120px;
        height: 130px;
    }

    .event {
        width: 120px;
        height: 130px;
    }

    .travel {
        width: 120px;
        height: 130px;
    }

    .title5 {
        font-size: 10px;
        line-height: 18px;
    }

    .subtitle {
        font-size: 8px;
        line-height: 10px;
    }
}




/* unlock section */
.section2 {
    padding: 40px 120px 40px 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #780a0094;
    backdrop-filter: blur(10px);
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    z-index: 1;
    margin-bottom: 20PX;
}
.decorative-bg {
    position: absolute;
    right: 60PX;
    bottom: 20PX;
    width: 300px;
    height: 250px;
    background-color: transparent;
    box-shadow: inset 10px 10px 10px 10px rgba(0, 0, 0, 0.158),
            10px 10px 20px rgba(0, 0, 0, 0.466),
            inset -10px -10px 10px 10px rgba(247, 137, 137, 0.897);
    border-radius: 51% 49% 62% 38% / 25% 57% 43% 75%;
    z-index: -1;
}
.container3 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    width: 100%;
    max-width: 1080px;
    position: relative;
}

.title6 {
    color: #ffffff;
    text-align: left;
    font-family: "Roboto-Bold", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 50px;
    font-weight: 700;
    align-self: stretch;
}

.description2 {
    color: #fff8f6;
    text-align: left;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(0.8rem, 2vw, 1.225rem);
    line-height: 20px;
}

@media (max-width: 1080px){
    .section2 {
        padding: 40px 100px 40px 100px;
    }
    .title6 {
        line-height: 50px;
    }
}
@media (max-width: 900px) {
    .section2 {
        padding: 40px 50px 50px 50px;
    }
}
@media (max-width: 610px) {
    .section2 {
        margin-top: -20px;
    }
    .title6 {
        line-height: 20px;
    }
    .description2 {
        line-height: 20px;
    }
}
@media (max-width: 480px) {
    .section2 {
        padding: 40px 20px 50px 20px;
    }
    
}

/* button learn more*/
.btn_lm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 2px solid #780A00;
    padding: 18px 40px;
    color: #780A00;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn_ex {
    background: #780A00;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn_lm:hover {
    color: #ffffff;
    /* transition: all 0.1s; */
}

.btn_ex:hover {
    color: #780A00;
}

.btn_lm:after {
    content: "";
    background: #780A00;
    position: absolute;
    z-index: -1;
    left: -20%;
    right: -20%;
    top: 0;
    bottom: 0;
    transform: skewX(-45deg) scale(0, 1);
    transition: all 0.5s;
}

.btn_ex:after {
    background: #ffffff;
}

.btn_lm:hover:after {
    transform: skewX(-45deg) scale(1, 1);
    -webkit-transition: all 0.9s;
    transition: all 0.9s;
}

.icon_lm {
    animation: resetArrow 0.8s cubic-bezier(0.7, -0.5, 0.3, 1.2) forwards;
    z-index: 10;
}

.icon_lm div,
.icon_lm div::before,
.icon_lm div::after {
    height: 3px;
    border-radius: 1px;
    background-color: #780A00;
}

.icon_ex div,
.icon_ex div::before,
.icon_ex div::after {
    background-color: #ffffff;
}

.icon_lm div::before,
.icon_lm div::after {
    content: "";
    position: absolute;
    right: 0;
    transform-origin: center right;
    width: 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: #780A00;
}

.icon_ex div::before,
.icon_ex div::after {
    background-color: #ffffff;
}

.icon_lm div {
    position: relative;
    width: 24px;
    box-shadow: -2px 2px 5px var(--purple-400);
    transform: scale(0.9);
    background: linear-gradient(to bottom, var(--white), var(--purple-100));
    animation: swingArrow 1s ease-in-out infinite;
    animation-play-state: paused;
    background-color: #780A00;
}

.icon_ex div {
    background-color: #ffffff;
}

.icon_lm div::before {
    transform: rotate(36deg);
    top: 1px;
    box-shadow: 1px -2px 3px -1px var(--purple-400);
    animation: rotateArrowLine 1s linear infinite;
    animation-play-state: paused;
    background-color: #780A00;
}

.icon_ex div::before {
    background-color: #ffffff;
}

.icon_lm div::after {
    bottom: 1px;
    transform: rotate(324deg);
    box-shadow: -2px 2px 3px 0 var(--purple-400);
    background: linear-gradient(200deg, var(--white), var(--purple-100));
    animation: rotateArrowLine2 1s linear infinite;
    animation-play-state: paused;
    background-color: #780A00;
}

.icon_ex div::after {
    background-color: #ffffff;
}

.icon_lm div::before,
.icon_lm div::after,
.icon_lm div {
    animation-play-state: running;
}

.btn_lm:hover .icon_lm div::before,
.btn_lm:hover .icon_lm div::after,
.btn_lm:hover .icon_lm div {
    animation-play-state: running;
    background-color: #ffffff;
}

.btn_ex:hover .icon_ex div::before,
.btn_ex:hover .icon_ex div::after,
.btn_ex:hover .icon_ex div {
    background-color: #780A00;
}

@keyframes swingArrow {
    50% {
        transform: translateX(5px) scale(0.9);
    }
}

@keyframes rotateArrowLine {
    50% {
        transform: rotate(30deg);
    }

    80% {
        transform: rotate(55deg);
    }
}

@keyframes rotateArrowLine2 {
    50% {
        transform: rotate(330deg);
    }

    80% {
        transform: rotate(300deg);
    }
}
.button {
    text-decoration: none;
    margin-top: 20px;
}
@media (max-width: 610px) {
    .button{
        margin-top: 0px;
    }
}
@media (max-width: 480px) {
   .btn_lm {
        padding: 10px 20px;
        font-size: 12px;
    } 
    .icon_lm div,
    .icon_lm div::before,
    .icon_lm div::after {
        height: 2px;
    }

    .icon_lm div::before,
    .icon_lm div::after {
        width: 10px;
    }

    .icon_lm div {
        width: 18px;
    }
}

/* client testimonials */
.reviews {
    padding: 80px 120px 20px 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

.container4 {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.container5 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    position: relative;
}
.our{
    color: #a79c04;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: -10px;
}

.title8 {
    color: #780A00;
    text-align: left;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 40px;
    line-height: 28px;
    font-weight: 700;
    position: relative;
    align-self: stretch;
}

.description3 {
    color: #020c1b;
    text-align: left;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
}

.list3 {
    padding: 20px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}
.row2{
    width: 100%;
    padding: 20PX 0 80px;
    white-space: wrap;
    overflow: hidden;
}
.card2 {
    position: relative;
    width: 300px;
    height: 310px;
    border-radius: 14px;
    z-index: 1111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 20px 20px 40px #bebebe, -20px -20px 40px #ffffff; */
    ;
}

.bg_card {
    /* position: absolute;
    top: 5px;
    left: ce; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 97%;
    height: 97%;
    z-index: 2;
    padding: 20px;
    background: rgba(233, 231, 231, 0.815);
    backdrop-filter: blur(24px);
    border-radius: 10px;
    overflow: hidden;
    outline: 2px solid white;
    position: relative;
}

.blob {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #780A00;
    opacity: 1;
    filter: blur(12px);
    animation: blob-bounce 10s infinite ease;
}

@keyframes blob-bounce {
    0% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }

    25% {
        transform: translate(-100%, -100%) translate3d(100%, 0, 0);
    }

    50% {
        transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
    }

    75% {
        transform: translate(-100%, -100%) translate3d(0, 100%, 0);
    }

    100% {
        transform: translate(-100%, -100%) translate3d(0, 0, 0);
    }
}

.user {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: absolute;
    bottom: 10px;
}

.avatar {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    position: relative;
}

.avatar_box {
    background: rgba(0, 0, 0, 0.1);
    background-position: center;
    background-size: cover;
    border-radius: 32px;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
}
.avatar1{
    background-image: url(/img/pexels-danxavier-1239288.jpg);  
}
.avatar2{
    background-image: url(/img/pexels-justin-shaifer-501272-1222271.jpg);
}
.avatar3{
    background-image: url(/img/pexels-anna-nekrashevich-6801642.jpg);
}

.title9 {
    color: #020c1b;
    text-align: left;
    font-family: "Roboto-Medium", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    align-self: stretch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.job{
    color: #a79c04;
    font-size: 12px;
}


.title10 {
    color: #780A00;
    text-align: left;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    position: absolute;
    top: 50px;
    align-self: stretch;
    
    text-overflow: ellipsis;
    overflow: hidden;
}

.icon-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}

.icon2 {
    color: #020c1b;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.frame-4273188172 {
    flex-shrink: 0;
    width: 58.26px;
    height: 9.81px;
    position: relative;
    overflow: visible;
}

.frame-4273188173 {
    flex-shrink: 0;
    width: 58.26px;
    height: 9.81px;
    position: relative;
    overflow: visible;
}

.vector-2003 {
    flex-shrink: 0;
    height: 0px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: 0px;
    overflow: visible;
}

.social-posts {
    padding: 60px 170px 60px 170px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.description4 {
    color: #020c1b;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    width: 520px;
}

.row2 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
}


/* commitent section */
.mission {
    padding: 40px 120px 40px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 20%;
}
@media (max-width: 1080px){
    .mission{
        padding: 40px 100px;
    }
}

.mission_container {
    position: relative;
    max-width: 864px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow:
        0 0px 30px 20px rgba(0, 0, 0, 0.04),
        0 0px 10px 10px rgba(0, 0, 0, 0.04);
    margin-top: 0px;
}
.commit{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 100px;
    font-family: "Roboto-Medium", sans-serif;
    gap: 20px;
}
.commit2{
    background-color: #780a0029;
}
.commit_icon{
    width: 50px;
    height: 50px;
    background-color: #780A00;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: clamp(1.2rem, 2vw, 2rem);
    text-align: center;
}
.commit h1 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-align: center;
}
.commit p {
    text-align: center;
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #000000b8;
    line-height: 30px;
}
@media (max-width: 950px) {
    .mission {
        padding: 0px 0px 0 0;
    }
    .mission_container {
        position: relative;
        max-width: none;
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
        margin-top: 0px;
    }
    .commit{
        padding: 60px 50px;
        gap: 10px;
    }
    .commit_icon{
        width: 45px;
        height: 45px;
    }
}
@media (max-width: 480px) {

    .mission_container {
        position: relative;
        max-width: none;
        width: 100%;
        border-radius: 0px;
        box-shadow: none;
        margin-top: 0px;
    }

    .commit {
        padding: 60px 20px;
        gap: 10px;
    }

    .commit_icon {
        width: 40px;
        height: 40px;
    }
    .commit p {
        line-height: 20px;
    }
}


/* form */
.form_container {
    padding: 60px 120px 100px 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.getform{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.gettext{
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 3rem);
}
.reachtext{
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
}
.list4 {
    position: relative;
    max-width: 1040px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}
.input_container{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;

}
.row3 {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
}

.input2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    width: 50%;
    position: relative;
    border-radius: 10px;
}
.inputmessage{
    width: 80%;
}
.select{
    width: 20%;
}


.textfield3 {
    background: #ffffff;
    border-radius: 10px;
    border: 1.2px solid #00000028;
    padding: 8px 12px 8px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    height: 50px; 
    font-family: "Roboto-Medium", sans-serif;
    color: #797979;
}
.textfield3:focus,
.textfield3:valid{
    border: 1px solid #00000028;
    outline: none;
    z-index: 1;
}
.subject:focus,
.subject:valid{
    border: 1px solid #00000028;
    box-shadow: none;
}

.textmessage{
    width: 100%;
    height: 100px;
}
.title13 {
    color: #780A00;
    text-align: left;
    font-family: "Roboto-Medium", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    line-height: 20px;
    font-weight: 500;
    z-index: 11;
    align-self: stretch;
    position: absolute;
    bottom: 50px;
}

.messagetitle {
    position: absolute;
    bottom: 100px;
}

.text3 {
    color: rgba(0, 0, 0, 0.5);
    text-align: left;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    line-height: 20px;
    font-weight: 400;
    position: relative;
    flex: 1;
    height: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
}
@media (max-width: 770px){
    .form_container {
        padding: 60px 50px;
    }
    .rowtextarea{
        display: flex;
        flex-direction: column;
    }
    .inputmessage{
        width: 100%;
    }
    .select{
        width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 480px) {
    .form_container {
        padding: 60px 20px;
    }
    .getform{
        width: 100%;
    }
    .list4 {
        position: relative;
        max-width: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }
    .row3 {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        justify-content: flex-start;
        align-self: stretch;
        flex-shrink: 0;
    }
    .input2 {
        width: 100%;
    }
    .inputmessage{
        width: 100%;
    }
    .select{
        width: 100%;
        margin-top: -20px;
    }
}


/* submit button */
.button_s {
    font-family: inherit;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    background-color: #780a00b8;
    backdrop-filter: blur(10px);    color: white;
    padding: 0.8em 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;

    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    font-size: 20px;
}

.button_s:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.button_s:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.button_s span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
}

.button_s svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
}

.button_s .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
}

.button_s:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
}

.button_s:hover svg {
    transform: rotate(45deg);
}



/* From Uiverse.io by SelfMadeSystem */
/*
More comprehensive version at shenanigans.shoghisimon.ca/collection/css-rain-bg/
 */

.form_container {
    width: 100%;
    height: 100%;
    background-image: radial-gradient(4px 100px at 0px 235px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 235px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 117.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 252px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 252px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 126px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 150px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 150px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 75px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 253px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 253px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 126.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 204px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 204px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 102px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 134px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 134px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 67px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 179px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 179px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 89.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 299px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 299px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 149.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 215px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 215px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 107.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 281px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 281px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 140.5px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 158px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 158px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 79px, #a2100310 100%, #0000 150%),
        radial-gradient(4px 100px at 0px 210px, #a2100310, #0000),
        radial-gradient(4px 100px at 300px 210px, #a2100310, #0000),
        radial-gradient(1.5px 1.5px at 150px 105px, #a2100310 100%, #0000 150%);
    background-size:
        300px 235px,
        300px 235px,
        300px 235px,
        300px 252px,
        300px 252px,
        300px 252px,
        300px 150px,
        300px 150px,
        300px 150px,
        300px 253px,
        300px 253px,
        300px 253px,
        300px 204px,
        300px 204px,
        300px 204px,
        300px 134px,
        300px 134px,
        300px 134px,
        300px 179px,
        300px 179px,
        300px 179px,
        300px 299px,
        300px 299px,
        300px 299px,
        300px 215px,
        300px 215px,
        300px 215px,
        300px 281px,
        300px 281px,
        300px 281px,
        300px 158px,
        300px 158px,
        300px 158px,
        300px 210px,
        300px 210px,
        300px 210px;
    animation: hi 150s linear infinite;
}

@keyframes hi {
    0% {
        background-position:
            0px 220px,
            3px 220px,
            151.5px 337.5px,
            25px 24px,
            28px 24px,
            176.5px 150px,
            50px 16px,
            53px 16px,
            201.5px 91px,
            75px 224px,
            78px 224px,
            226.5px 350.5px,
            100px 19px,
            103px 19px,
            251.5px 121px,
            125px 120px,
            128px 120px,
            276.5px 187px,
            150px 31px,
            153px 31px,
            301.5px 120.5px,
            175px 235px,
            178px 235px,
            326.5px 384.5px,
            200px 121px,
            203px 121px,
            351.5px 228.5px,
            225px 224px,
            228px 224px,
            376.5px 364.5px,
            250px 26px,
            253px 26px,
            401.5px 105px,
            275px 75px,
            278px 75px,
            426.5px 180px;
    }

    to {
        background-position:
            0px 6800px,
            3px 6800px,
            151.5px 6917.5px,
            25px 13632px,
            28px 13632px,
            176.5px 13758px,
            50px 5416px,
            53px 5416px,
            201.5px 5491px,
            75px 17175px,
            78px 17175px,
            226.5px 17301.5px,
            100px 5119px,
            103px 5119px,
            251.5px 5221px,
            125px 8428px,
            128px 8428px,
            276.5px 8495px,
            150px 9876px,
            153px 9876px,
            301.5px 9965.5px,
            175px 13391px,
            178px 13391px,
            326.5px 13540.5px,
            200px 14741px,
            203px 14741px,
            351.5px 14848.5px,
            225px 18770px,
            228px 18770px,
            376.5px 18910.5px,
            250px 5082px,
            253px 5082px,
            401.5px 5161px,
            275px 6375px,
            278px 6375px,
            426.5px 6480px;
    }
}




/* footer */
.section3 {
    padding: 20px 120px;
    background: #780A00;
    width: 100%;
    height: 55vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.footer_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1080px;
}

.footer_logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.logos1 {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    cursor: pointer;
    margin-top: -100px;
}

.logo_container2 {
    background-image: url(/img/cgexplicit\ white\ \(5\).png);
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 100%;
    width: 200px;
    height: 120px;
    margin-left: -30px;
}

.footer_box1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-block: 20px;
    flex-wrap: wrap;
    gap: 40px;
}

.container6 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
    justify-content: start;
}
.footer_contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
    justify-content: start;
   
}
.footer_legal{
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: start;
    justify-content: start;
}

.container6 h4,
.footer_contact h4,
.footer_legal h4 {
    color: #a79c04;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 10px;
}
.container6 h4::before,
.footer_contact h4::before,
.footer_legal h4::before {
    content: "";
    height: 2px;
    width: 50%;
    position: absolute;
    bottom: 0;
    background-color: #a79c04;
}

.container6 a,
.footer_contact a,
.footer_legal a {
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    line-height: 30px;
    transition: all 0.5s;
}


.container6 a:hover,
.footer_contact a:hover,
.footer_legal a:hover {
    text-decoration: underline;
    transition: all 0.5s;
}


.socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0px; 
}
.socialicon {
    list-style-type: none;
    display: flex;
    gap: 0px;
}
.socialicon li{
    padding-inline: 30px;
}
.socials .socialicon i {
    display: block;
    color: #8f6313;
    align-items: center;
}
.socials .socialicon i:hover {
    color: #919393ab;
}

.socialsapp a {
    font-size: clamp(1rem, 1vw, 1.6rem);
    color: #a79c04;
    text-decoration: none;
    padding: 5px;
    margin-inline: 20px;
}


.line-1 {
    margin-top: -1px;
    border-style: solid;
    border-color: #fff8f6;
    border-width: 1px 0 0 0;
    flex-shrink: 0;
    width: 40%;
    height: 0px;
    position: absolute;
    /* left: 20px; */
    bottom: 40px;

}

.container7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
    height: 100px;
    position: absolute;
    /* left: 20px; */
    bottom: -30px;
}

.title20 {
    color: #fff8f6;
    font-family: "Roboto-Regular", sans-serif;
    font-size: clamp(0.5rem, 1vw, 0.7rem);
    line-height: 28px;
    font-weight: 400;
}
@media (max-width: 900px) {
    .section3{
        padding: 20px 80px;
    }
    .line-1 {
        width: 100%;
    }
}
@media (max-width: 680px) {
    .section3 {
        padding: 20px 50px;
    }

}

@media (max-width: 480px) {
    .section3 {
            padding: 20px 20px;
            height: 70vh;
        }
    .logos1 {
        margin-top: -100px;
    }
    .logo_container2 {
        width: 130px;
        height: 80px;
        margin-left: -20px;

    }
}