*{
    padding: 0;margin: 0;box-sizing: border-box;
}
:root{
    --ddd: #1a3a32;
    --green: #284B42;
    --bgc:#F0EEE5;
    --button: #bc3f31;
    --cream: #B9B58D;
    --hvrbtn: #8D342A;
}
@font-face {
    font-family: font1;
    src: url(../font/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
}
@font-face {
    font-family: font2;
    src: url(../font/ReadexPro-VariableFont_HEXP\,wght.ttf);
}
/* body/////////////////////////////////////// */
.row{
    >header{
        flex-wrap: wrap;
        background-color: var(--bgc);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        *{
            ::selection{
                color: #fff ;
                background-color: var(--green);
            }
        }
        .headp1{
            width: 90%;
            border-bottom: 1px solid #DFDDD2;
            display: flex;
            align-items: center;
            padding: 10px 30px 5px 30px;
            justify-content: space-between;
            >a{
                font-weight: 400;
                font-family: font1;
                padding: 10px 5px;
                font-size: 14px;
            }
            >ul{
                display: flex;
                >li{
                    /* border: 1px solid yellow; */
                    padding: 0 10px;

                    display: flex;
                    align-items: center;
                }
            }
        }
        .headp2{
            width: 90%;
            align-items: center;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            *{
            }
            >a{
                width: 50%;
            }
            >ul{
                height: 90px;
                width: 50%;
                display: flex;
                justify-content: center;
                >li{
                    position: relative;
                    font-size: 20px;
                    flex-grow: 1;
                    display: flex;
                    justify-content: center;
                    &:nth-of-type(3){
                        >ul{
                            margin-top: 57%;
                        }
                    }
                    >a{
                        font-family: font2;
                        font-size: 16px;
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 5px;
                    }
                    >ul{
                        border-radius: 2px;
                        z-index: 2000;
                        position: absolute;
                        margin-top: 79%;
                        width: 150%;
                        left: 0;
                        height: 50%;
                        background-color: var(--bgc);
                        color: black;
                        opacity: 0;
                        visibility: hidden;
                        transition: 0.38888s ease-in;
                        >li{
                            width: 100;
                            height: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            >a{
                                width: 100%;
                                padding: 0 25px;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                height: 100%;
                                font-size: 14px;
                                font-family: font2;
                                background-color: var(--bgc);
                                width: 100%;
                                transition: 0.2s ease-in-out;
                                &:hover{
                                    background-color: var(--green);
                                    color: white;
                                }
                            }
                        }
                    }
                    &:hover{
                        >ul{
                            opacity: 1;
                            visibility: visible;
                        }
                    }
                    &:hover::before{
                        width: 100%;
                    }
                    &::before{
                        content: '';
                        width: 0;
                        height: 5px;
                        background-color: var(--cream);
                        position: absolute;
                        left: 0;top:0;
                        transition: 0.38888s ease-in;
                    }
                }
            }
        }
    }
    >main{
        flex-wrap: wrap;
        width: 100%;
        display: flex;
        position: relative;
        >.fancy{
            display: flex;
            flex-wrap: nowrap;
            width: 350px;
            >.fancy1{
                display: flex;
                justify-content: flex-start;
                align-items: center;
                width: 350px;
                height: 60px;
                background-color: var(--ddd);
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px;
                position: fixed;
                right: -325px;
                bottom: 20px;
                z-index: 3000;
                transition: 1.1s ease-in-out;
                padding: 0;margin: 0;
                gap: 20px;
                *{
                    display: flex;
                }
                >img{
                    width: 45px;
                    height: 45px;
                    border-radius: 50px;
                    border: 3px solid white;
                }
                >div{
                    display: inline;
                    *{
                        color: #F0EEE5;
                    }
                    >p{
                        font-size: 10px;
                        font-weight: 300;
                        font-family: font2;
                    }
                    >h3{
                        font-size: 15px;
                        font-weight: 400;
                        font-family: font2;
                    }
                }
                >nav{
                    display: flex;
                    >ul{
                        display: flex;
                        justify-content: flex-end;
                        gap: 10px;
                        >li{
                            >a{

                            }
                        }
                    }
                }
                &:hover{
                    right: 0;
                }
            }
        }
        >.main1{
            width: 100%;
            position: relative;
            height: 100vh;
            flex-wrap: nowrap;
            justify-content: space-between;
            display: flex;
            >.m1p1{
                width: 60%;
                background-image: url(../img/m1p1bg.jpg);
                background-size: cover;
                background-repeat: no-repeat;
                background-position: 50% 50%;
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                padding-bottom: 60px;
                &::before{
                    content:'';
                    width: 60%;
                    height: 100%;
                    position: absolute;
                    background: rgb(38,38,38);
                    background: linear-gradient(0deg, rgba(38,38,38,0.9108018207282913) 0%, rgba(255,255,255,0) 75%);
                }
                
                >div{
                    width: 100%;
                    height: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    flex-direction: column;
                    justify-content: flex-end;
                    z-index: 1000;
                    padding: 0 50px;
                    gap: 20px;
                    *{
                        /* border: 1px solid red; */
                        display: flex;
                        align-items: center;
                        width: 150px;
                        height: 50px;
                    }
                    h2{
                        color: white ;
                        width: 100%;
                        height: 50px;
                        font-size: 30px;
                        font-family: font1;
                    }
                    form{
                        font-size: 16px;
                        font-family: font2;
                        display: flex;
                        flex-wrap: nowrap;
                        width: 100%;
                        gap: 15px;
                        outline: none;
                        background-color: #ffffff00;
                        border: none;
                        >*{
                            border-radius: 2px;
                            border: 1px solid #ffffffab;
                            background-color: #ffffff00;
                            &:hover{
                                border: 1px solid #ffffff65 ;
                            }
                            &:focus{
                                background-color: #ffffff00;
                            }
                        }
                        >input{
                            padding-left: 20px;
                            color: white;
                            &:first-child{
                                padding-right: 20px;
                            }
                            &::placeholder{
                                color: white;
                                font-size: 15px;
                                font-family: font2;
                            }
                        }
                        >select{
                            padding-left: 20px;
                            color: white;
                            outline: none;
                            font-size: 15px;
                            font-family: font2;
                            >option{
                                color: white;
                                background: var(--green);

                            }
                        }
                        >button{
                            background-color: #ffffff00;
                            cursor: pointer;
                            display: flex;
                            justify-content: center;
                            width: 150px;
                            height: 50px;
                            font-size: 16px;
                            font-family: font2;
                            color: var(--green) ;
                            background-color: #fff;
                            transition: 0.4s;
                            border: none;
                            outline: none;
                            &:hover{
                                border: none;
                                outline: none;
                                color: #fff;
                                background-color: var(--button);
                            }
                        }
                        >input:focus{
                            outline: none;
                        }
                    }
                    p{
                        width: 100%;
                        height: 30px;
                        font-size: 14px;
                        color: white;
                        font-family: font1;
                    }
                    ::selection{
                        color: #fff ;
                        background-color: var(--green);
                    }
                }
            }
            >.m1p2{
                background-image: url(../img/m1p2bg.jpg);
                background-size: contain;
                background-repeat: no-repeat;
                position: relative;
                background-position: 50% 50%;
                display: flex;
                flex-wrap: wrap;
                width: 40%;
                &::before{
                    content: '';
                    width: 100%;
                    height: 100%;
                    background-color: #284C43;
                    opacity: 0.9;
                    position: absolute;
                }
                >div{
                    z-index: 300;
                    padding: 80px;
                    display: flex;
                    flex-wrap: wrap;
                    width: 100%;
                    >*{
                        display: flex;
                        flex-wrap: nowrap;
                    }
                    >h1{
                        font-size: 48px;
                        font-family: font1;
                        font-weight: 500;
                        color: white;
                    }
                    >h4{
                        font-size: 18px;
                        font-family: font2;
                        font-weight: 300;
                        color: white;
                    }
                    >div{
                        border: 1px solid white;
                        width: 250px;
                        height: 50px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: white;
                        transition: 0.4s;
                        border-radius: 2px;
                        >a{
                            width: 100%;
                            height: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            font-size: 16px;
                            font-weight: 400;
                            font-family: font2;
                        }
                        &:hover{
                            background-color: var(--button);
                            border: none;
                        }
                        
                    }
                    ::selection{
                        color: var(--green);
                        background-color: #fff;
                    }
                }
                
            }

            /* >div{

            /////////////////////////
                width: 55%;
                height: 80%;
                border: 1px solid red;
                
            } */
        }
        >.main2{
            background-color: #F0EEE5;
            width: 100%;
            >.m2p1{
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                padding:130px 30px 80px 30px;
                *{
                    color: #091B18;
                    /* border: 1px solid red; */
                    display: flex;
                    width: 100%;
                    flex-wrap: nowrap;
                    align-items: center;
                    justify-content: center;     
                }
                img{
                    width: 70px;
                    height: 70px;
                }
                h2{
                    margin-top: 10px;
                    margin-bottom: 20px;
                    font-size: 35px;
                    font-weight: 500;
                    font-family: font1;
                }
                h4{
                    margin-top: 10px;
                    width: 700px;
                   font-size: 20px; 
                   font-weight: 300;
                   font-family: font2;
                   text-align: center;
                   line-height: 28px;
                }
                ::selection{
                    color: #fff ;
                    background-color: var(--green) ;
                }
            }
            >.m2p2{
                display: flex;
                width: 100%;
                margin-bottom: 100px;
                background-color: #F0EEE5;
                >*{
                    width: 50%;
                    margin: 0 30px;
                    
                }
                >.art1{
                    display: flex;
                    flex-wrap: wrap;
                    background-color: #F0EEE5;
                    margin-bottom: 0;
                    *{

                    }
                    >img{
                        object-fit: cover;
                        width: 100%;
                    }
                    >div{
                        background-color: #fff;
                        display: flex;
                        flex-wrap: wrap;
                        width: 100%;
                        justify-content: center;
                        padding: 80px;
                        *{
                            ::selection{
                                color: var(--green) ;
                                background-color: #fff ;
                            }
                        }
                        >.subart1{
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            align-items: center;
                            *{
                                width: 100%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }
                            >img{
                                width: 70px;
                                height: 70px;
                                margin-bottom: 5px;
                            }
                            >h3{
                                font-size: 28px;
                                font-weight: 500;
                                color: rgba(9, 27, 24, 1);
                                font-family: font1;
                                margin-top: 10px;
                                margin-bottom: 10px;
                            }
                            >p{
                                font-size: 14px;
                                font-weight: 400;
                                font-family: font1;
                                color: rgba(9, 27, 24, 1);
                                margin-bottom: 30px;
                            }
                        }
                        >.subart2{
                            display: flex;
                            flex-wrap: wrap;
                            width: 100%;
                            >ul{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                flex-wrap: wrap;
                                margin: 10px 77.5px 0 77.5px ;
                                >li{
                                    width: 70%;
                                    font-size: 17px;
                                    font-family: font2;
                                    font-weight: 300;
                                    justify-content: flex-start;
                                    padding: 12px 0;
                                    gap: 15px;
                                    display: flex;
                                    width: 100%;
                                    border-bottom: 1px solid rgba(75, 74, 74, 0.253);
                                    border-bottom-width: 70%;
                                    font-size: 17px;
                                    font-weight: 300;
                                    color: rgba(9, 27, 24, 1) ;
                                    align-items: center;
                                }
                            }
                        }
                        >.subart3{
                            width: 200px;
                            height: 57px;
                            margin-top: 50px;
                            justify-content: center;
                            align-items: flex-end;
                            >div{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                text-align: center;
                                width: 100%;
                                height: 100%;
                                background-color: #BC3F31;
                                color: white;
                                font-size: 16px;
                                font-family: font2;
                                font-weight: 400;
                                transition: 0.4s;
                                >p{
                                    display: flex;
                                    width: 100%;
                                    height: 100%;
                                }
                                
                            }
                            &:hover{
                                cursor: pointer;
                                >div{
                                    background-color: #8D342A;
                                }
                            }   
                        }
                        ::selection{
                            color: var(--green) ;
                            background-color: #fff ;
                        }
                    }
                }
                >.art2{
                    /* border: 1px solid rgb(56, 201, 152); */
                    >img{
                        width: 100%;
                    }
                    >div{
                        background-color: #fff;
                        display: flex;
                        flex-wrap: wrap;
                        width: 100%;
                        justify-content: center;
                        padding: 80px;
                        *{

                        }
                        >.subart1{
                            display: flex;
                            flex-wrap: wrap;
                            justify-content: center;
                            align-items: center;
                            *{
                                width: 100%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                            }
                            >img{
                                width: 70px;
                                height: 70px;
                                margin-bottom: 5px;
                            }
                            >h3{
                                font-size: 28px;
                                font-weight: 500;
                                color: rgba(9, 27, 24, 1);
                                font-family: font1;
                                margin-top: 10px;
                                margin-bottom: 10px;
                            }
                            >p{
                                font-size: 14px;
                                font-weight: 400;
                                font-family: font1;
                                color: rgba(9, 27, 24, 1);
                                margin-bottom: 30px;
                            }
                        }
                        >.subart2{
                            display: flex;
                            flex-wrap: wrap;
                            width: 100%;
                            >ul{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                flex-wrap: wrap;
                                margin: 10px 77.5px 0 77.5px ;
                                >li{
                                    width: 70%;
                                    font-size: 17px;
                                    font-family: font2;
                                    font-weight: 300;
                                    justify-content: flex-start;
                                    padding: 12px 0;
                                    gap: 15px;
                                    display: flex;
                                    width: 100%;
                                    border-bottom: 1px solid rgba(75, 74, 74, 0.253);
                                    border-bottom-width: 70%;
                                    font-size: 17px;
                                    font-weight: 300;
                                    color: rgba(9, 27, 24, 1) ;
                                    align-items: center;
                                }
                            }
                        }
                        >.subart3{
                            width: 200px;
                            height: 57px;
                            margin-top: 50px;
                            justify-content: center;
                            align-items: flex-end;
                            >div{
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                text-align: center;
                                width: 100%;
                                height: 100%;
                                background-color: #BC3F31;
                                color: white;
                                font-size: 16px;
                                font-family: font2;
                                font-weight: 400;
                                transition: 0.4s;
                                >p{
                                    display: flex;
                                    width: 100%;
                                    height: 100%;
                                }
                                
                            }
                            &:hover{
                                cursor: pointer;
                                >div{
                                    background-color: #8D342A;
                                }
                            }   
                        }
                    }
                }
                &::selection{
                    color: #FFF ;
                    background-color: var(--green) ;
                }
            }
        }
        >.main3{
            background-image: url(../img/main3bg.jpg);
            background-position: 50% 50%;
            background-size: cover;
            background-repeat: no-repeat;
            width: 100%;
            height: 120vh;
            position: relative;
            >.row{
                padding: 30px;
                z-index: 500;
                width: 100%;
                height: 100%;
                >.card{
                    padding: 50px;
                    display: flex;
                    width: 33%;
                    *{
                    }
                    >.card-icon{
                        display: flex;
                        justify-content: flex-end;
                        align-items: flex-end;
                        padding-right: 30px;
                        margin-top: 10px;
                        width: 40%;
                        height: 50%;
                        color: white;
                        >svg{
                            width: 50px;
                            height: 50px;
                            fill: white;
                        }
                    }

                    >.card-text{
                        *{
                            height: 50%;
                            display: flex;
                            justify-content: center;
                            text-align: left;
                        }
                        >h4{
                            display: flex;
                            justify-content: flex-start;
                            align-items: flex-end;
                            width: 100%;
                            font-size: 25px;
                            font-weight: 500;
                            font-family: font1;
                            color: rgba(255, 255, 255, 1);
                            padding-top: 50px;
                            margin-bottom: 20px;
                        }
                        >p{
                            font-size: 16px;
                            font-weight: 400;
                            font-family: font2;
                            color: rgba(255, 255, 255, 1);
                            padding-bottom: 50px;
                        }
                    }

                }
            }
            &::before{
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background-color: var(--green);
                opacity: 0.95;
            }
            ::selection{
                color: var(--green) ;
                background-color: #fff ;
            }
        }
        >.main4{
            *{}
            >.m4p1{
                margin-bottom: 50px;
                >div{
                    display: flex;
                    justify-content: center;
                    width: 100%;
                    
                    *{
                        /* border: 1px solid blue; */
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        text-align: center;
                        flex-wrap: wrap;
                        padding: 6px 0 ;
                    }
                    >img{
                        margin-top: 50px;
                        justify-content: center;
                        align-items: center;
                        width: 75px;
                        height: 75px;
                    }
                    >h2{
                        font-size: 33px;
                        font-weight: 500;
                        font-family: font1;
                        color: rgba(9, 27, 24, 1);                        ;
                    }
                    >p{
                        width: 60%;
                        font-size: 18px;
                        font-weight: 300;
                        font-family: font2;
                        color: rgba(9, 27, 24, 1);
                    }
                }
                ::selection{
                    color: #fff ;
                    background-color: var(--green);
                }
            }
            >.m4p2{
                position: relative;
                padding: 40px 30px;
                *{
                    width: 50%;
                }
                >div{
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    /* border: 1px solid red; */
                    *{

                    }
                    >img{
                        width: 100%;
                        height: 100%;
                    }
                    >div{
                        transform: translateX(-60px);
                        width: 100%;
                        display: flex;
                        flex-wrap: wrap;
                        background-color: #F0EEE5;
                        height: 60%;
                        /* border: 1px solid blue; */
                        padding: 70px;
                        *{
                            width: 100%;
                            margin-bottom: 20px;
                            
                        }
                        >h2{
                            font-size: 33px;
                            font-weight: 500;
                            font-family: font1;
                            color: rgba(9, 27, 24, 1) ;
                        }
                        >p{
                            font-size: 18px;
                            font-weight: 300;
                            font-family: font2;
                            color: rgba(9, 27, 24, 1) ;
                        }
                        >div{
                            width: 240px;
                            height: 57px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background-color: var(--button);
                            transition: 0.4s;
                            >a{
                                margin-bottom: 0;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                color: white;
                            }
                            &:hover{
                                background-color: var(--hvrbtn);
                            }
                        }
                    }
                }
                &:last-child{
                    z-index: 700;
                    position: absolute;
                    margin-right: 40px;
                }
                ::selection{
                    color: #fff ;
                    background-color: var(--green);
                }
            }
            >.m4p3{
                padding: 40px 30px;
                *{
                    width: 50%;
                }
                >div{
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    *{}
                    >img{
                        width: 100%;
                        height: 100%;
                    }
                    >div{
                        transform: translateX(60px);
                        width: 100%;
                        display: flex;
                        flex-wrap: wrap;
                        background-color: #F0EEE5;
                        height: 60%;
                        /* border: 1px solid blue; */
                        padding: 70px;
                        *{
                            width: 100%;
                            margin-bottom: 30px;
                            
                        }
                        >h2{
                            font-size: 33px;
                            font-weight: 500;
                            font-family: font1;
                            color: rgba(9, 27, 24, 1) ;
                        }
                        >p{
                            font-size: 18px;
                            font-weight: 300;
                            font-family: font2;
                            color: rgba(9, 27, 24, 1) ;
                        }
                        >div{
                            width: 240px;
                            height: 57px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background-color: var(--button);
                            transition: 0.4s;
                            >a{
                                margin-bottom: 0;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                color: white;
                            }
                            &:hover{
                                background-color: var(--hvrbtn);
                            }
                        }
                    }
                    &:nth-of-type(1){
                        width: 45%;
                    }
                    &:nth-of-type(2){
                        width: 55%;
                    }
                }
                ::selection{
                    color: #fff ;
                    background-color: var(--green);
                }
            }
        }
        >.main5{
            display: flex;
            flex-wrap: nowrap;
            width: 100%;
            height: 210px;
            margin-top: 70px;
            >div{
                flex-wrap: nowrap;
                display: flex;
                width: 20%;
                height: 210px;
                overflow: hidden;
                padding: 0;margin: 0;
                /* position: absolute; */
                >a{
                    transition: transform 0.8s ease-in-out;
                    &:hover{
                        transform: scale(1.1);
                    }
                    >img{
                        object-fit: cover;
                        width: 225px;
                        height: 225px;
                        
                    }
                }
                
            }
        }
    }
    >footer{
        z-index: 990;
        min-height: 100vh;
        width: 100%;
        background-image: url(../img/footerbg.png);
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-content: flex-start;

        *{
            display: flex;
        }
        >.f1{
            z-index: 991;
            display: flex;
            width: 100%;
            justify-content: center;
            align-items: flex-end;
            margin-top: 100px;
            margin-bottom: 30px;
            height: max-content;

        }
        >.f2{
            width: 100%;
            z-index: 991;
            display: flex;
            justify-content: center;            
            >div{
                display: flex;
                width: 90%;
                justify-content: center;
                gap: 70px;
                padding: 35px 0 100px 0;
                border-bottom: 1px solid white;
                border-bottom-width: 80%;
                *{
                    width: 25%;
                }
                >form{
                    font-size: 16px;
                    font-family: font2;
                    display: flex;
                    flex-direction: column;
                    flex-wrap: nowrap;
                    gap: 20px;
                    outline: none;
                    background-color: #ffffff00;
                    border: none;
                    >*{
                        height: 50px;
                        width: 100%;
                        border-radius: 2px;
                        border: 1px solid #ffffffab;
                        background-color: #ffffff00;
                        &:hover{
                            border: 1px solid #ffffff65 ;
                        }
                        &:focus{
                            background-color: #ffffff00;
                        }
                    }
                    >input{
                        padding-left: 20px;
                        color: white;
                        &:first-child{
                            padding-right: 20px;
                            width: 100%;
                            flex-wrap: wrap;
                        }
                        &::placeholder{
                            color: white;
                            font-size: 15px;
                            font-family: font2;
                        }
                    }
                    >select{
                        padding-left: 20px;
                        color: white;
                        outline: none;
                        font-size: 15px;
                        font-family: font2;
                        >option{
                            color: white;
                            background: var(--green);
    
                        }
                    }
                    >button{
                        background-color: #ffffff00;
                        cursor: pointer;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 100%;
                        height: 50px;
                        font-size: 16px;
                        font-family: font2;
                        color: var(--green) ;
                        background-color: #fff;
                        transition: 0.4s;
                        border: none;
                        outline: none;
                        &:hover{
                            border: none;
                            outline: none;
                            color: #fff;
                            background-color: var(--button);
                        }
                    }
                    >input:focus{
                        outline: none;
                    }
                }
                >nav{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;
                    >ul{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        >li{
                            position: relative;
                            flex-grow: 1;
                            /* border: 1px solid white; */
                            width: 100%;
                            padding: 10px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            /* margin-bottom: 1px solid white; */
                            border-bottom: 1px solid rgba(255, 255, 255, 0.63);
                            color: white;
                            /* margin-bottom: 10px; */
                            transition: all 0.8s ;
                            >a{
    
                                display: flex;
                                width: 100%;
                                justify-content: center;
                                align-items: center;
                                font-size: 16px;
                                font-weight: 400;
                                line-height: 27px;   
                                font-family: font2 ;
                                color: white;
                                >svg{
                                    color: white;
                                }
                            }
                            >ul{
                                display: flex;
                                width: 100%;
                                flex-wrap: wrap;
                                border-radius: 5px;
                                z-index: 2000;
                                position: absolute;
                                /* margin-top: 79%; */
                                width: 200px;
                                left: 0;
                                transform: translateX(312px);
                                height: 55px;
                                background-color: var(--bgc);
                                color: black;
                                opacity: 0;
                                visibility: hidden;
                                transition: 0.38888s ease-in;
                                /* border-bottom: 1px solid rgba(255, 255, 255, 0.534); */
                                >li{
                                    border-radius: 5px;
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    >a{
                                        width: 100%;
                                        padding: 0 25px;
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        height: 100%;
                                        font-size: 14px;
                                        font-family: font2;
                                        background-color: var(--bgc);
                                        width: 100%;
                                        transition: 0.2s ease-in-out;
                                        &:hover{
                                            background-color: var(--green);
                                            color: white;
                                        }
                                    }
                                }
                            }
                            >svg{
                                width: 24px;
                                height: 24px;
                                color: #b9b58d;
                            }
                            >.ulinfooter{
                                display: flex;
                                width: 100%;
                                flex-wrap: wrap;
                                height: 55px;
                            }
                            &:hover{
                                >ul{
                                    opacity: 1;
                                    visibility:visible ;
                                }
                                >a{
                                    color:#b9b58d;
                                    >svg{
                                        color: #b9b58d;
                                    }
                                }
                            }
                        }
                    }
                }
                >div{
                    height: max-content;
                    display: flex;
                    flex-wrap: wrap;
                    align-items: flex-start;
                    padding-left: 15px;
                    *{
                        width: 100%;
                        height: max-content;
                        padding-bottom: 20px;
                    }
                    >h3{
                        font-family: font1;
                        font-size: 28px;
                        font-weight: 500;
                        color: #fff;
                    }
                    >p{
                        font-size: 15px;
                        font-family: font2;
                        font-weight: 300;
                        color: white;
                        margin-top: 15px;
                        line-height: 28px;
                    }
                    >nav{
                        >ul{
                            display: flex;
                            justify-content: flex-start;
                            gap: 35px;
                            margin-top: 15px;
                            >li{
                                width: 23px;
                                height: 23px;
                                >a{
                                    color: white;
                                }
                            }
                        }
                    }
                }
            }
        }
        >.f3{
            width: 100%;
            z-index: 991;
            justify-content: center;
            display: flex;
            align-items: center;
            margin-top: 20px;
            >div{
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 40px;
                padding: 15px 0;
                margin-bottom: 30px;
                >p{
                    padding-left: 40px;
                    color: white;
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 26px;
                    font-family: font1;
                    >a{
                        padding: 0;
                        margin: 0 5px;
                        color: #b9b58d;
                    }

                }
            }
        }
        &::after{
            content: '';
            
            width: 100%;
            height: 100%;
            position: absolute;
            background-color: #10372d ;
        }
    }
}