*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --gray : #4D4D4D;
    --white : #ffffff;
    --dark-red: #D13258;
    --pink : #FF5D8F;
    --border-color: #e0e0e0;
    --lighte-bg: rgba(144, 144, 144, 0.15);
    --gradient : linear-gradient(to right, #FF5D8F, #D13258)
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('SourceCodePro-Bold.woff2') format('woff2'),
        url('SourceCodePro-Bold.woff') format('woff'),
        url('SourceCodePro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('SourceCodePro-SemiBold.woff2') format('woff2'),
        url('SourceCodePro-SemiBold.woff') format('woff'),
        url('SourceCodePro-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('SourceCodePro-ExtraBold.woff2') format('woff2'),
        url('SourceCodePro-ExtraBold.woff') format('woff'),
        url('SourceCodePro-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body{
    font-family: 'Source Code Pro', sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 0;
}
a{
    text-decoration: none;
}
img{
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width:430px){
    .same-space{
        padding: 10px 16px;
    }
    .bg{
        position: relative;
        height: 100vh;
    }
    .banner{
        overflow: hidden;
        padding-top: 36px;
        height: 30vh;
    }
    .bg::before{
        content: "";
        background: url(./assets/image/left-shade.svg);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        width: 200px;
        height: 420px;
        filter: blur(100px);
        z-index: -1;
    }
    .bg::after{
        content: "";
        background: url(./assets/image/right-shade.svg);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        width: 200px;
        height: 420px;
        filter: blur(100px);
        z-index: -1;
    }
    .button{
        display: inline-block;
        color: var(--white);
        font-size: 18px;
        font-weight: 600;
        background: var(--gradient);
        padding: 18px 60px;
        border-radius: 10px;
    }
    .button:hover{
        border: 1px solid rgba(209, 50, 88, 0.3);
    }
    .info-text {
        text-align: center;
        padding-top: 40px;
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
        width: 100%;
        padding: 20px;
    }
    .info-text .title{
        color: var(--dark-red);
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    .title{
        color: var(--dark-red);
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 8px;
    }
    .info-text p{
        color: var(--gray);
        color: var(--gray);
        font-size: 16px;
        margin-bottom: 40px;
    }


    .ad-rectangle {
        display: none !important;
        max-width: 350px;
        width: 100%;
        height: 250px;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 5px;
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        transform: translateX(-50%);
        left: 50%;
        border: 1px solid var(--border-color);
    }

    .ad-banner {
        display: none !important;
        max-width: 350px;
        width: 100%;
        height: 50px;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        position: absolute;
        bottom: 7%;
        left: 5px;
        right: 5px;
        transform: translateX(-50%);
        left: 50%;
        border: 1px solid var(--border-color);
    }


    /* Go TO Video CAll Page css */
   .go-to-call .button{
        margin-top: 30px;
    }
    .info-text input{
        padding: 16px 16px;
        width: 100%;
        border-radius: 12px;
        background-color: rgb(153, 170, 187, 0.15);
        border: none;
        font-size: 16px;
    }
    .info-text .form{
        text-align: left;
    }
    .name {
        padding-top: 22%;
    }

    
    .gender-selection {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .gender-option {
        display: flex;
        align-items: center;
        background: var(--lighte-bg);
        padding: 15px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 18px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .gender-option input {
        display: none;
    }

    .gender-option span {
        flex: 1;
        color: var(--gray);
        font-size: 16px;
    }
    .radio-circle {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 2px solid var(--gray);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .radio-circle::before {
        content: "";
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: transparent;
        transition: all 0.3s ease;
    }

    .gender-option input:checked + span + .radio-circle {
        border-color: black;
    }

    .gender-option input:checked + span + .radio-circle::before {
        background: black;
    }


    .gender-option input:checked ~ span {
        font-weight: bold;
    }

    .only-title .title{
        margin-bottom: 30px;
    }
    .screen-6 .banner{
        height: 100%;
        padding-top: 0;
        text-align: center;
    }
    .screen-6 .banner img{
        max-width: 300px;
        height: auto;
    }
    .button.secondury-button{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        margin-bottom: 16px;
    }
    .secondury-button img{
        width: 16px;
    }
    .secondury-button img.avtar{
        width: 30px;
    }


    .my-fun-fact{
        text-align: center;
        border: 1px solid var(--pink);
        padding: 12px;
        width: 90%;
        margin: 0 auto;
        border-radius: 12px;
    }
    .my-fun-fact h5{
        margin-bottom: 16px;
        font-size: 18px;
        color: var(--dark-red);
    }
    .my-fun-fact p{
        font-size: 16px;
        color: var(--pink);
    }
}