@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --thm-font: "Inter", sans-serif;
    --thm-font-2: "reeyregular";
    --thm-base: rgb(0, 48, 73);
    --thm-primary: rgb(3, 40, 54);
    --thm-primary-rgb: 24, 41, 120;
    --thm-gray: #515151;
    --thm-gray-rgb: 81, 81, 81;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #202020;
    --thm-black-rgb: 32, 32, 32;
    --thm-gray-bg: #f5f5f5;
    --thm-main-bg: #202020;
}

:root {
    --swiper-theme-color: #007aff;
}


* {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: var(--thm-font);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

html {
    scroll-behavior: smooth;
}

/* HEADING */

.heading{
    width: 100%;
    height: 300px;
    background: url("../image/background-top.jpg");

    .its-cover{
        width: 100%;
        height: 100%;
        display: flex;
        background-color: rgba(53, 83, 94, 0.803);
        justify-content: center;
        align-items: center;
        color: #ffffff;
        padding-top: 100px;
        font-size: 25px;
    }
}

.about-top{
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
    grid-gap: 20px;
    background-color: var(--thm-primary);
    padding: 70px 70px 50px 70px;


    .about-left{
        width: 100%;
        height: fit-content;


        .pic-hold{
            width: 100%;
            height: fit-content;
            /* background-color: #515151; */
            position: relative;
            display: inline-block;


            img{
                width: 500px;
                height: 500px;
                display: block;
            }

            .info{
                width: 100%;
                max-width: 350px;
                display: flex;
                justify-content: center;
                background-color: rgb(255,195,0);
                padding: 15px 30px;
                font-size: 20px;
                font-weight: 500;
                position: absolute;
                bottom: 50px;
            }
        }
    }

    .about-right{
        .contact-session {
            
        
        
            .top p {
                font-size: 18px;
                font-weight: 700;
                color: rgb(255, 195, 0);
            }
        
            .top h2 {
                width: 100%;
                font-size: 45px;
                font-weight: 700;
                color: var(--thm-white);
                margin-top: 15px;
                line-height: 50px;
                background: linear-gradient(to right, rgb(108, 152, 235), rgb(125, 70, 108), rgb(237, 85, 116));
                color: transparent;
                -webkit-background-clip: text;
                background-clip: text;
            }
        
        }

        .down{
            margin-top: 55px;
            color: #ffffff;
            font-weight: 500;

        }
    }
}

.more-info{
    width: 100%;
    height: fit-content;
    background-color: var(--thm-primary);
    padding: 5px 70px 80px 70px;
    color: #ffffff;

    p{
        margin-bottom: 20px;
    }
}