* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
body {
    width: 100%;
    height: 100%;
    --color: rgba(114, 114, 114, 0.3);
    background-color: #ffffff;
    background-image: linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent),
        linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%,transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%,transparent);
    background-size: 55px 55px;
}
header {
    position: relative;
    padding: 0 2rem;
}
header nav {
    width: 100%;
    height: 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-div svg {
    width: 175px;
}




section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    width: 100%;
    height: 90vh;
    gap: 15px;
}
















.con {
    border: 2px solid #333;
    border-radius: 20px;
    min-width: 35%;
    height: 95%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}



.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 550px;
    padding: 10px;
    position: relative;
    color: #fff;
}

.form .title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #00bfff;
}

.form .title::before {
    width: 18px;
    height: 18px;
}

.form .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.form .title::before,
.form .title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #00bfff;
}

.message {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
}



.flex {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 6px;
}

.form label {
    position: relative;
    width: 100%;
}

.form label .input {
    background-color: #333;
    color: #fff;
    width: 100%;
    padding: 20px 05px 05px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
}

.form label .input+span {
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 10px;
    top: 0px;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
}

.form label .input:placeholder-shown+span {
    top: 12.5px;
    font-size: 0.9em;
}

.form label .input:focus+span,
.form label .input:valid+span {
    color: #00bfff;
    top: 0px;
    font-size: 0.7em;
    font-weight: 600;
}

.form .input {
    font-size: medium;
}

.form .submit {
    border: none;
    outline: none;
    padding: 10px;
    border-radius: 10px;
    color: #333;
    font-size: 18px;
    transform: .3s ease;
    background-color: #00bfff;
}
.submit a {
    text-decoration: none;
}
.form .submit:hover {
    background-color: #00bfff96;
}

@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}
.radio-input input {
    display: none;
}

.radio-input label {
    --border-color: #a1b0d8;

    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 250px;
    margin: 10px 0;
    padding: 0.7rem;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.radio-input input:checked+label {
    --border-color: #2f64d8;
    border-color: var(--border-color);
    border-width: 2px;
}

.radio-input label:hover {
    --border-color: #2f64d8;
    border-color: var(--border-color);
}

.radio-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(189, 187, 207);
    margin-right: 0.5rem;
    position: relative;
}

.radio-input input:checked+label span.circle::before {
    content: "";
    display: inline;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #2f64d8;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.text {
    display: flex;
    align-items: center;
}

.price {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-weight: bold;
}

.small {
    font-size: 10px;
    color: rgb(136, 138, 139);
    font-weight: 100;
}

.info {
    position: absolute;
    display: inline-block;
    font-size: 11px;
    background-color: #00bfff;
    border-radius: 20px;
    padding: 1px 9px;
    top: 0;
    transform: translateY(-50%);
    right: 5px;
}

.radio-input- {
    background-color: #333;
}

.form .custum-file-upload {
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    gap: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e8e8e8;
    background-color: #333;
    padding: 1.5rem;
    border-radius: 10px;
}

.form .custum-file-upload .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form .custum-file-upload .icon svg {
    height: 80px;
    fill: #e8e8e8;
}

.form .custum-file-upload .text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form .custum-file-upload .text span {
    font-weight: 400;
    color: #e8e8e8;
}

.form .custum-file-upload input {
    display: none;
}


.adrs {
    min-width: 35%;
    height: 95%;
    border: 2px solid #333;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem;
}
.inner-div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction :column;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
.adr {
    width: 100%;
    height: 18%;
    border: 2px solid;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    gap: 10px;
}
.adr-logo {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.adr-text {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.add-1 {
    width: 99%;
    height: 30px;
    border-radius: 5px;
    margin: 5px;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}











.loader {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader_cube {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.loader_cube--glowing {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.loader_cube--color {
    z-index: 1;
    filter: blur(2px);
    background: linear-gradient(135deg, #1afbf0, #da00ff);
    animation: loadtwo 2.5s ease-in-out infinite;
}

@keyframes loadtwo {
    50% {
        transform: rotate(-80deg);
    }
}
.coin1 {
    font-size: 80px;
    width: 0.1em;
    height: 1em;
    background: linear-gradient(#53ae94, #141001);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate_4001510 7s infinite linear;
    transform-style: preserve-3d;
    z-index: 1;
}

.coin1 .side,
.coin1:before,
.coin1:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    overflow: hidden;
    border-radius: 50%;
    right: -0.4em;
    text-align: center;
    line-height: 1;
    transform: rotateY(-90deg);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coin1 .tails,
.coin1:after {
    left: -0.4em;
    transform: rotateY(90deg);
}

.coin1:before,
.coin1:after {
    background: linear-gradient(#53ae94, #141001);
    backface-visibility: hidden;
    transform: rotateY(90deg);
}

.coin1:after {
    transform: rotateY(-90deg);
}

.coin2 {
    font-size: 80px;
    width: 0.1em;
    height: 1em;
    background: linear-gradient(#faa504, #141001);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate_4001510 7s infinite linear;
    transform-style: preserve-3d;
    z-index: 1;
}

.coin2 .side,
.coin2:before,
.coin2:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    overflow: hidden;
    border-radius: 50%;
    right: -0.4em;
    text-align: center;
    line-height: 1;
    transform: rotateY(-90deg);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coin2 .tails,
.coin2:after {
    left: -0.4em;
    transform: rotateY(90deg);
}

.coin2:before,
.coin2:after {
    background: linear-gradient(#faa504, #141001);
    backface-visibility: hidden;
    transform: rotateY(90deg);
}

.coin2:after {
    transform: rotateY(-90deg);
}
.coin3 {
    font-size: 80px;
    width: 0.1em;
    height: 1em;
    background: linear-gradient(#627EEA, #141001);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate_4001510 7s infinite linear;
    transform-style: preserve-3d;
    z-index: 1;
}

.coin3 .side,
.coin3:before,
.coin3:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    overflow: hidden;
    border-radius: 50%;
    right: -0.4em;
    text-align: center;
    line-height: 1;
    transform: rotateY(-90deg);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coin3 .tails,
.coin3:after {
    left: -0.4em;
    transform: rotateY(90deg);
}

.coin3:before,
.coin3:after {
    background: linear-gradient(#627EEA, #141001);
    backface-visibility: hidden;
    transform: rotateY(90deg);
}

.coin3:after {
    transform: rotateY(-90deg);
}
.coin4 {
    font-size: 80px;
    width: 0.1em;
    height: 1em;
    background: linear-gradient(#000000, #141001);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate_4001510 7s infinite linear;
    transform-style: preserve-3d;
    z-index: 1;
}

.coin4 .side,
.coin4:before,
.coin4:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    overflow: hidden;
    border-radius: 50%;
    right: -0.4em;
    text-align: center;
    line-height: 1;
    transform: rotateY(-90deg);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coin4 .tails,
.coin4:after {
    left: -0.4em;
    transform: rotateY(90deg);
}

.coin4:before,
.coin4:after {
    background: linear-gradient(#000000, #141001);
    backface-visibility: hidden;
    transform: rotateY(90deg);
}

.coin4:after {
    transform: rotateY(-90deg);
}
.coin5 {
    font-size: 80px;
    width: 0.1em;
    height: 1em;
    background: linear-gradient(#EF0027, #141001);
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rotate_4001510 7s infinite linear;
    transform-style: preserve-3d;
    z-index: 1;
}

.coin5 .side,
.coin5:before,
.coin5:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    overflow: hidden;
    border-radius: 50%;
    right: -0.4em;
    text-align: center;
    line-height: 1;
    transform: rotateY(-90deg);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.coin5 .tails,
.coin5:after {
    left: -0.4em;
    transform: rotateY(90deg);
}

.coin5:before,
.coin5:after {
    background: linear-gradient(#EF0027, #141001);
    backface-visibility: hidden;
    transform: rotateY(90deg);
}

.coin5:after {
    transform: rotateY(-90deg);
}
@keyframes rotate_4001510 {
    100% {
        transform: rotateY(360deg);
    }
}

.svg_back {
    transform: scaleX(-1);
}


/* Card Container
.card {
    position: relative;
    width: 1000px;
    height: 500px;

}

.card-content {
    transition: all 0.3s;
}

.card-content:hover {
    transform: translateY(-16px);
    transition-duration: 1s;
}

.seal {
    background-color: #f43f5e;
    rose-500
    color: #7f1d1d;
    red-800
    width: 40px;
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: 40;
    text-align: center;
    font-weight: 600;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    transition: opacity 1s, transform 1s, rotate 1s;
}

.seal:hover {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.tp {
    transition: all 1s;
    clip-path: polygon(50% 50%, 100% 0, 0 0);
    background-color: #2d2d2d;
}

.card:hover .tp {
    clip-path: polygon(50% 0%, 100% 0, 0 0);
}

.lft,
.rgt,
.btm {
    transition: all 0.7s;
    position: absolute;
    width: 100%;
    height: 100%;
}

.lft {
    clip-path: polygon(50% 50%, 0 0, 0 100%);
    background-color: #1e1e1e;
}

.rgt {
    clip-path: polygon(50% 50%, 100% 0, 100% 100%);
    background-color: #2d2d2d;
}

.btm {
    clip-path: polygon(50% 50%, 100% 100%, 0 100%);
    background-color: #1e1e1e;
}

.card:hover .lft,
.card:hover .rgt,
.card:hover .btm {
    background-color: transparent;
} */












