main{
    padding-top: 50px;
    overflow: hidden;
    
    h3{
        font-weight: 600;
    }
    p{
        font-weight: 400;
        color: #000;
    }
    .boxes{
        display: flex;
        gap: 20px;
        .box{
            border: 1px solid #DFDFDF;
            background-color: #FFFBF1;
            border-radius: 10px;
            padding: 20px;
            height: 200px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            align-items: start;
            p{
                color: #8D6B0B;
                font-size: 20px;
                font-weight: 600;
            }
            .icon{
                display: flex;
                justify-content: center;
                align-items: center;
                padding-bottom: 20px;
                box-shadow: 0px 1px 2px 0px #1018280D;
                border: 1px solid var(--Component-colors-Components-Icons-Featured-icons-Modern-featured-icon-modern-border, #EAECF0);
                height: 40px;
                width: 40px;
                padding: 5px;
                i{
                    font-size: 14px;
                    border-radius: 5px;
                }
            }
        }
    }
    .scope{
        padding-bottom: 75px;
        .splide{
            
            .splide__track{
                overflow: visible;
                .splide__slide{
                     position: relative;
                     border-radius: 10px;
                     overflow: hidden;
                     &:before{
                        position: absolute;
                        content: '';
                        left: 0;
                        top: 0;
                        height: 100%;
                        width: 100%;
                        background: linear-gradient(rgba(0,0,0,0.7), transparent);
                     }
                     img{
                        width: 100%;
                        /* height: 500px; */
                     }
                     h4{
                        position: absolute;
                        top: 20px;
                        left: 20px;
                        z-index: 5;
                        font-size: 20px;
                        color: #fff;
                     }
                }
            }

            .splide__arrow{
                position: absolute;
                top: calc(100% + 40px);
                border-radius: 5px;
                background-color: #fff;
                border: 1px solid rgba(128, 128, 128, 0.425);
                &:hover{
                    background-color: #F2BA1C;
                }
                &.splide__arrow--next{
                    left: 70px;
                }
            }
        }
    }

    .contact{
        position: relative;
        form{
            max-width: 500px;
            width: 100%;
            margin: auto;
            display: flex;
            gap: 20px;
            flex-direction: column;
            .single{
                display: flex;
                flex-direction: column;
                input, select, textarea{
                    padding: 10px;
                    border: 1px solid #D0D5DD;
                    border-radius: 5px;
                    appearance: none;
                    outline: none;
                }
                button{
                    padding: 10px;
                    border-radius: 5px;
                    background-color: #F2BA1C;
                    color: #fff;
                    border: none;
                    appearance: none;
                    outline: none;
                }
            }
        }

        span{
            position: absolute;
            width: 75px;
            &:nth-child(1){
                background-color: #383838;
                height: 60%;
                left: 0;
            }
            &:nth-child(2){
                background-color: #F2BA1C;
                height: 40%;
                left: 100px;
            }
            &:nth-child(3){
                background-color: #383838;
                height: 60%;
                bottom: 0;
                right: 0;
            }
            &:nth-child(4){
                background-color: #F2BA1C;
                height: 40%;
                bottom: 0;
                right: 100px;
            }

        }
    }
}
.stillThinking{
    /* box-shadow: 0 5px 15px 0 #A9A9A9; */
    width: 100%;
    padding: 20px;
    .box{
        background-color: #FFFBF1;
        padding: 50px;
        border: 1px solid rgba(128, 128, 128, 0.178);
        border-radius: 20px;
    }
}