/* Font Awsome Icon */

@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);

/* @import url('https://fonts.googleapis.com/css2?family=Kavoon&display=swap'); */

@font-face {
    font-family: "Kavoon";
    src: url('../fonts/Kavoon-Regular.ttf');
}

@font-face {
    font-family: "KottaOne";
    src: url('../fonts/KottaOne-Regular.ttf');
}

@font-face {
    font-family: "Kapakana";
    src: url('../fonts/Kapakana.ttf');
}

@font-face {
    font-family: "Lacquer";
    src: url('../fonts/Lacquer-Regular.ttf');
}

@font-face {
    font-family: "Knewave";
    src: url('../fonts/Knewave-Regular.ttf');
}

@font-face {
    font-family: "KohSantepheap";
    src: url('../fonts/KohSantepheap-Regular.ttf');
}

@font-face {
    font-family: "Kavivanar";
    src: url('../fonts/Kavivanar-Regular.ttf');
}

@font-face {
    font-family: "RemachineScript";
    src: url('../fonts/RemachineScript_Personal_Use.ttf');
}

@font-face {
    font-family: "Lancelot";
    src: url('../fonts/Lancelot-Regular.ttf');
}

@font-face {
    font-family: "KumarOne";
    src: url('../fonts/KumarOne-Regular.ttf');
}

@font-face {
    font-family: "Sacramento";
    src: url('../fonts/Sacramento-Regular.ttf');
}



/* inter  */

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

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

/* poppin  */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #185fb7;
    --secondary: #404040;
    --white: #ffffff;
    --black: #000000;
    --black70: rgba(0, 0, 0, 0.7);
    --white70: rgba(255, 255, 255, 0.7);
    --blue10: rgba(153, 203, 236, 0.1);
    --transation: 0.3s all ease;
    --bgGradient: linear-gradient(82.93deg, #185fb7 0%, #3daae4 100%);
    --cardBoxshadow: 0px 8px 40px 0px rgba(48, 189, 243, 0.23);
    --primerydark: rgba(8, 33, 47, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0;
    background-color: #2867B2;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

h1 {
    font-size: 50px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 1px;
}

h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
}

img {
    width: 100%;
    height: auto;
}

button {
    background-color: transparent;
    border: unset;
    padding: 0;
}

.site-btn {
    background-color: var(--primary);
    text-align: center;
    font-size: 16px;
    border-radius: 37px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    z-index: 1;
    border: 1px solid var(--primary);
    color: var(--white);
    overflow: hidden;
    transition: 0.2s all ease;
    padding: 13px 10px;
    display: inline-block;
    min-width: 175px;
}

.site-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    z-index: -1;
    transition: 0.3s all ease;
    width: 0;
    height: 100%;
    border-radius: 50px;
    transform-origin: right;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.site-btn:hover {
    color: var(--primary);
}

.site-btn:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.btn-2 {
    color: #279ddf;
    border: 1px solid transparent;
    background-color: var(--white);
}

.btn-2:hover {
    color: var(--white);
}

.btn-2::before {
    background: var(--bgGradient);
}

.wrapper {
    max-width: 1173px;
    margin: auto;
}

.active {
    color: var(--primary) !important;
}


/* header  */

.header {
    padding-top: 24px;
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
}

.header .navbar-brand img {
    max-width: 175px;
    transition: var(--transation);
}

.header .navbar-brand img:hover {
    transform: scale(1.03);
    transition: var(--transation);
}

.header .wrapper {
    padding: 14px 15px;
    background-color: var(--white);
    border-radius: 67px;
}

.header ul {
    gap: 30px;
}

.header ul li a {
    padding: 0 !important;
    color: var(--secondary);
    font-size: 16px;
    font-family: "Roboto", serif;
    font-weight: 500;
}

.header ul li a:hover {
    color: var(--primary);
    transition: var(--transation);
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-container i {
    font-weight: 400;
}

#search-field {
    display: none;
    font-size: 16px;
    border-radius: 4px;
    margin-left: 10px;
    position: absolute;
    top: -2px;
    left: -150px;
    min-width: 180px;
}

.fa-search {
    cursor: pointer;
    font-size: 20px;
}

.header-btn {
    display: flex;
    align-items: center;
}

.search-icon {
    border-radius: 20px;
    border: 1px solid var(--primary);
    height: 40px;
    width: 40px;
    color: var(--primary);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-header {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background-color: var(--white);
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    gap: 10px;
}

.search-header input {
    background-color: transparent;
    border: unset;
}

.search-header input:focus {
    box-shadow: unset;
}

.search-input .form-control {
    border-radius: 25px;
    padding: 12px 11px 12px 0px;
    box-shadow: unset;
    width: 100%;
    border: unset;
}


/* banner  */

.bg-blue-g {
    background: var(--bgGradient);
}

.bg-blue-2 {
    position: relative;
    z-index: 1;
}

.bg-blue-2::before {
    width: 100%;
    height: 37%;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background-image: var(--bgGradient);
}

.banner {
    padding: 200px 0 100px;
    position: relative;
}

.banner .text h1 {
    color: var(--white);
    font-weight: 800;
    font-size: 66px;
}

.banner .text p {
    color: var(--white);
    font-size: 21px;
    margin: 15px 0 30px;
    max-width: 530px;
}

.banner .text h3 {
    color: var(--white);
    font-size: 29px;
    font-weight: 500;
    margin-bottom: 20px;
}

.banner-input {
    max-width: 505px;
}

.banner form .form-control {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid var(--white);
    border-radius: 25px;
    padding: 12px 16px;
    color: var(--white);
}

.banner form input::placeholder {
    color: var(--white);
}

@media (min-width: 768px) {
    .banner form .col-md-5 {
        flex: 0 0 auto;
        width: 40%;
    }
}

.search-name-btn {
    margin-top: 30px;
}

.search-name-btn .site-btn {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}

.search-name-btn .site-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: 0.3s all ease;
    width: 0;
    height: 100%;
    border-radius: 50px;
    transform-origin: right;
    transform: scaleX(0);
    width: 100%;
    transition: transform 0.4s ease-in-out;
}

.search-name-btn .site-btn:hover {
    color: var(--white);
}

.search-name-btn .site-btn:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.or-circle {
    content: " ";
    position: absolute;
    bottom: -48px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    border: 6px solid var(--white);
    background: linear-gradient(82.93deg, #185fb7 0%, #3daae4 100%);
    width: 100px;
    color: var(--white);
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}


/* section 1  */

.pb-70 {
    padding-bottom: 70px;
}

.p-120 {
    padding: 120px 0;
}

@media (min-width: 1200px) {
    .section-1 .col-xl-2 {
        width: 20%;
    }
}

.section-1 .title h2 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 50px;
    font-family: "Roboto";
}

.font-cards .inner-wrapper {
    padding: 20px 13px;
    transition: 0.3s all ease;
}

.bg-dark-blue {
    position: relative;
    z-index: 1;
}

.bg-dark-blue::before {
    content: "";
    background-color: #08212f;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    border-radius: 10px;
}

.font-cards .inner-wrapper .main-name {
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--cardBoxshadow);
    min-height: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s all ease;
    text-align: center;
}

.font-cards .inner-wrapper .main-name p {
    color: var(--black);
    line-height: 1.25;
}

.card-font-1 {
    font-family: "Kavoon";
    font-size: 30px;
    color: #08212F !important;
}

.card-font-2 {
    font-family: "Kapakana";
    font-size: 40px;
    line-height: 1 !important;
}

.card-font-3 {
    font-family: "KottaOne";
    font-size: 30px;
}

.card-font-4 {
    font-family: "Lacquer";
    font-size: 30px;
}

.card-font-5 {
    font-family: "Knewave";
    font-size: 30px;
    line-height: 1.5 !important;
}

.card-font-6 {
    font-family: "KohSantepheap";
    font-size: 28px;
}

.card-font-7 {
    font-family: "Kavivanar";
    font-size: 32px;
    line-height: 1.5 !important;
}

.card-font-8 {
    font-family: "RemachineScript";
    font-size: 44px;
    line-height: 1 !important;
}

.card-font-9 {
    font-family: "Lancelot";
    font-size: 30px;
}

.card-font-10 {
    font-family: "KumarOne";
    font-size: 27px;
    line-height: 1.7 !important;
}

.font-cards .inner-wrapper .img img {
    width: auto;
}

.font-cards .inner-wrapper .inner-text {
    margin-top: 20px;
}

.font-cards .inner-wrapper .inner-text p {
    color: var(--white);
    font-size: 12px;
    font-family: "Inter";
}

.font-cards .inner-wrapper .inner-text span {
    color: #279cde;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 600;
}

.font-cards .inner-wrapper:hover {
    transform: translateY(-5px) scale(1.01);
    transition: 0.4s all ease;
}

.font-cards .inner-wrapper:hover .img {
    transform: translateY(-8px) scale(1.02);
    transition: 0.3s all ease;
}


/* wrapper 2  */

@media (min-width: 992px) {
    .section-1 .wrapper-2 .col-lg-7 {
        width: 55.333333%;
    }
}

.section-1 .wrapper-2:nth-child(even) {
    margin-top: 100px;
}

.wrapper-2:nth-child(even) .row {
    flex-direction: row-reverse;
}

.wrapper-2 .text h2 {
    color: var(--secondary);
    font-weight: 600;
}

.wrapper-2 .text p {
    color: var(--black70);
    font-size: 19px;
    margin: 13px 0 16px;
}

.check-icon {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.check-icon li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--black70);
}

.check-icon li i {
    background-image: var(--bgGradient);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.section-1 .wrapper-2:nth-child(even) .text p {
    max-width: 430px;
}

.section-2 .custom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 70px;
}


/* ssection 2  */

@media (min-width: 992px) {
    .section-2 .col-lg-5 {
        flex: 0 0 auto;
        width: 42.666667%;
    }
}

@media (min-width: 992px) {
    .section-2 .col-lg-7 {
        flex: 0 0 auto;
        width: 55.333333%;
    }
}

.padding-x {
    padding: 70px 0 100px;
}

.section-2 .title h2 {
    color: var(--white);
    font-family: "Inter";
}

.section-2 .title p {
    color: var(--white70);
    font-size: 18px;
    margin: 13px auto 40px;
    max-width: 900px;
}

.section-2 .wrapper-2 .text h2 {
    font-weight: 600;
    color: var(--white);
}

.section-2 .wrapper-2 .text p {
    color: var(--white70);
    font-size: 15px;
    max-width: 515px;
}

.section-2 .wrapper-2 .text span {
    color: var(--white);
    font-weight: 700;
}


/* section 2  */

.section-3 .title h2 {
    font-family: "Inter";
}

.section-3 .title p {
    color: var(--black70);
    font-size: 18px;
    margin: 14px 0 40px;
}

input {
    width: 100%;
    transition: var(--transation);
}

input:focus {
    outline: unset;
    box-shadow: 0 0 0 5px rgba(153, 203, 236, 0.5);
    transition: var(--transation);
}

.email-box {
    display: flex;
    max-width: 750px;
    margin: auto;
    gap: 10px;
}

.email-box input {
    background-color: var(--blue10);
    padding: 15px;
    border: 1px solid rgba(238, 238, 238, 1);
    border-radius: 5px;
}

.email-box .site-btn,
.email-box .site-btn::before {
    border-radius: 5px;
    font-weight: 400;
}

.custom-table {
    display: flex;
}

.custom-table .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(225, 232, 236, 1);
}

.custom-table .text p {
    border-top: 1px solid rgba(225, 232, 236, 1);
    width: 100%;
    text-align: center;
}

.custom-table .text:first-child {
    border-right: unset;
    border-radius: 10px 0 0 10px;
}

.custom-table .text:last-child {
    border-radius: 0 10px 10px 0;
}

.custom-table .text :where(h3,
    p) {
    color: #595959;
    padding: 8px;
}

.custom-table .text h3 {
    background-color: #dff0fa;
    text-align: center;
    width: 100%;
    font-weight: 600;
    font-size: 22px;
}

.custom-table .text p {
    font-size: 20px;
    font-weight: 500;
}

.section-3 .inner-wrapper>p {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    color: var(--black70);
}


/* faqs  */

.pb-120 {
    padding-bottom: 120px;
}

.faqs-section .wrapper {
    max-width: 1008px;
}

.faqs-section .section-title h2 {
    margin-bottom: 50px;
}

.faqs-section .accordion-button:not(.collapsed) {
    background-color: transparent;
    border: unset;
    color: var(--secondary);
    padding: 10px 0;
}

.faqs-section .accordion-body {
    padding: 0;
    box-shadow: unset;
    color: var(--secondary);
}

.faqs-section .accordion-item {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 20px 30px;
}

.faqs-section .accordion-item,
.faqs-section .accordion-button:not(.collapsed) {
    border: unset;
}

.faqs-section .accordion-button::after {
    background-image: url(../images/plus-icon.svg);
    background-size: 15px;
    transform: unset;
    transition: 0.2s all ease;
    background-position: center;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    background-color: #e9e9e9;
}

.faqs-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.svg);
    background-color: #279cde;
    background-position: center;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    transition: 0.2s all ease;
    background-size: 15px;
}

.faqs-section .accordion-button:not(.collapsed) {
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 transparent;
}

.faqs-section .accordion-button {
    padding: 10px 0;
    font-size: 20px;
    color: var(--black);
    font-weight: 400;
}

.faqs-section .accordion-button:focus {
    box-shadow: unset;
}

.faqs-section .accordion-body ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faqs-section .accordion-body ul li {
    position: relative;
    z-index: 1;
    margin-left: 18px;
    color: var(--black70);
    font-size: 18px;
}

.faqs-section .accordion-body ul li a {
    color: var(--primary);
    word-break: break-word;
}

.faqs-section .accordion-body ul li::before {
    content: "";
    background-image: var(--bgGradient);
    position: absolute;
    z-index: -1;
    left: -18px;
    top: 8px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.faqs-section .accordion-body ul p {
    font-size: 20px;
    max-width: 875px;
    color: var(--black70);
}


/* footer  */

.footer {
    background: var(--bgGradient);
    padding: 32px 0;
}

.footer .text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .text p {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}


/* Domain Selection */

.pX-200 {
    padding: 260px 0;
}

.buy-domain {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--white);
    border-radius: 10px;
    padding: 30px 25px;
}

.buy-domain .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.buy-option {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
}

.buy-domain .head .price p {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.buy-domain .head label {
    font-size: 18px;
    font-weight: 600;
    color: #08212f;
    margin-left: 5px;
}

.buy-domain .body {
    max-width: 290px;
    margin-left: auto;
}

.buy-domain .body p {
    font-size: 12px;
    color: var(--black);
}

.buy-domain>h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primerydark);
    margin-bottom: 10px;
}

.buy-domain .site-btn {
    font-weight: 400;
}

.small-wrapper {
    max-width: 850px;
}

.buy-domain input {
    width: 20px;
    height: 20px;
}

.buy-domain input,
.buy-domain input:checked {
    border: 2px solid var(--primary);
    background-color: var(--white);
}

.buy-domain input:checked {
    background-image: url(../images/blue-cercle.svg);
    background-size: 80%;
    background-position: center;
}

.font-banner .inner-wrapper {
    padding: 22px;
    padding-top: 0;
}

.font-banner .inner-wrapper .main-name {
    min-height: 255px;
}

.banner .font-banner .inner-text p {
    font-size: 18px;
    font-weight: 500;
    max-width: 200px;
    margin: auto;
}

.font-banner .inner-wrapper .main-name .card-font-1 {
    font-size: 50px !important;
    width: 100%;
    max-width: 145px;
    margin: auto;
}


/* templats page */

.bg-light8 {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    overflow: hidden;
}

.bg-light8::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(82.93deg, rgba(24, 95, 183, 0.08) 0%, rgba(61, 170, 228, 0.08) 100%);
}

.banner .cstm-title h1 {
    font-family: "Roboto";
    font-weight: 700;
}

.info-card .inner-info {
    padding: 70px 28px 40px;
    border-radius: 28px;
    transition: 0.4s all ease;
    background-size: cover;
    background-repeat: no-repeat;
}

.info-card .inner-info:hover {
    transition: 0.3s all ease;
    transform: translateY(-20px) scale(1.03);
}

.info-card .img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100px;
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.info-card .img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.info-card .text h4 {
    color: var(--primerydark);
    font-size: 18px;
    font-weight: 600;
    margin: 12px auto 10px;
    font-family: "Inter";
}

.info-card .text p {
    color: var(--primerydark);
    font-size: 14px;
    font-family: "Inter";
    margin: unset;
}

.info-card .buttons {
    margin: 40px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.info-card .site-btn {
    color: #08212f;
    border: 1px solid #08212f;
    background-color: rgba(8, 33, 47, 0.05);
    max-width: 250px;
    width: 100%;
    text-align: center;
}

.info-card .site-btn:hover {
    color: var(--white);
    background-color: transparent;
}

.info-card .site-btn::before {
    background-image: var(--bgGradient);
}
.info-card #cardBtns{
    justify-content: center;
    align-items: center;
}
.info-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
}


.card-html .card-social-icons a{
display: flex;
}
.card-html{
    margin-top: 100px;
}

.info-card .social-icons i {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    font-size: 20px;
    width: 43px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
}

.info-card .social-icons i:hover {
    color: var(--white);
    background-color: var(--primary);
    transition: 0.3s all ease;
    border: 1px solid var(--white);
}

.info-card .row div:nth-child(2) .inner-info {
    background-image: url(../images/infu-card-2-bg.svg);
    background-size: cover;
}

.info-card .row div:nth-child(2) .inner-info .site-btn {
    background-color: var(--white);
    border: 1px solid transparent;
    color: var(--primerydark);
}

.info-card .row div:nth-child(2) .inner-info .site-btn:hover {
    color: var(--white);
}

.info-card .row div:nth-child(2) .inner-info :where(p,
    h4) {
    color: var(--white);
}

.info-card .row div:nth-child(3) .inner-info {
    background-image: url(../images/infu-card-3-bg.svg);
    background-size: cover;
}

.info-card .row div:nth-child(3) .inner-info :where(p,
    h4,
    .site-btn) {
    color: var(--white);
}

.info-card .row div:nth-child(3) .inner-info .site-btn {
    backdrop-filter: blur(7px);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 1);
}

.text-transperency h5 {
    color: var(--black);
}

.text-transperency .text-1 h5 {
    font-size: 16px;
    font-weight: 500;
}

.text-transperency .text-1 input {
    background-color: var(--white);
    border: unset;
    max-width: 48px;
    text-align: center;
    box-shadow: var(--cardBoxshadow);
    font-size: 16px;
    color: var(--secondary);
    padding: 5px 10px;
    border-radius: 5px;
}


/* preview section  */

.custom-width {
    max-width: 1020px;
}

.preview-section {
    font-family: Geneva, Verdana, sans-serif;
}
#cardName, #cardTagline{
    font-family: Geneva, Verdana, sans-serif;
}
.preview-section .title h2 {
    font-size: 40px;
    margin-bottom: 30px;
}


















.preview-section .details h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.preview-section .Social-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 15px 0 20px;
}

.preview-section .Social-icons .icons {
    background-color: var(--white);
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.preview-section .Social-icons .icons .float-btn::before {
    content: "";
    border: 1px solid #279cde;
    position: absolute;
    z-index: 2;
    top: -5px;
    right: -5px;
    width: 11px;
    height: 10.5px;
    border-radius: 1px;
}

.preview-section .Social-icons .icons .btn-check:checked+.float-btn::before {
    border: 1px solid #279cde;
    position: absolute;
    z-index: 2;
    top: -5px;
    right: -5px;
    width: 11px;
    height: 10.5px;
    border-radius: 1px;
    content: "\2713";
    background-color: #279cde;
    font-size: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    color: var(--white);
}

.preview-section .add-Social-links {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 170px;
}

.preview-section .add-Social-links input:focus {
    box-shadow: unset;
}

.preview-section .add-Social-links .link-1 {
    gap: 10px;
    display: none;
}

.preview-section .add-Social-links::-webkit-scrollbar {
    width: 5px;
}

.preview-section .color-picker {
    align-items: center;
    gap: 10px;
}

.preview-section .color-picker input {
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.preview-section .color-picker label {
    margin: unset;
    font-size: 12px;
    color: var(--black);
}

.preview-section .infom-card .buttons .site-btn {
    background-color: #279cde;
    border: 1px solid #279cde;
    border-radius: 5px;
    min-width: 122px;
    font-size: 12px;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    padding: 12px;
}

.preview-section .infom-card .buttons .site-btn i {
    font-size: 16px;
    font-weight: 400;
}

.preview-section .infom-card .buttons .site-btn:hover {
    color: #279ddf;
}

.preview-section .infom-card .buttons .site-btn::before {
    border-radius: 0;
}

.preview-section .infom-card .buttons {
    margin: 20px 0;
}

/* col-2  */

.preview-section .info-card .inner-info .site-btn {
    border: 1px solid rgba(255, 255, 255, 1);
    min-height: 50px;
}

.preview-section .info-card .inner-info .site-btn::after {
    content: "";
    background-color: #ffffff;
    opacity: 0.3;
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.preview-section .info-card .inner-info:hover {
    transform: unset;
}

.preview-section .info-card .inner-info {
    max-width: 450px;
    margin: auto;
}

.preview-section .info-card .inner-info :where(h4,
    p,
    .site-btn) {
    color: var(--white);
}

.preview-section .info-card .buttons {
    margin-bottom: 60px;
    height: 200px;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.preview-section .info-card .buttons::-webkit-scrollbar {
    width: 5px;
}

.our-bg .select-here {
    border: 2px dashed rgba(48, 48, 48, 0.1);
    border-radius: 12px;
    height: 100%;
    max-height: 115px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.our-bg .select-here i {
    color: #3daae4;
    font-size: 30px;
}

.our-bg-mob .select-here {
    min-height: 100px;
    border-radius: 5px;
}

footer {

    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
}
footer a:hover{
    text-decoration: underline;
}


/* media quary  */

@media (max-width: 1199px) and (min-width: 992px) {
    .domain-purchase .info-card .inner-info {
        padding: 70px 10px 40px;
    }
}


/* 1199  */

@media (max-width: 1199px) {
    .header .navbar-brand img {
        max-width: 140px;
    }

    .header ul {
        gap: 20px;
    }

    .header .site-btn {
        min-width: 130px;
    }


    /* domain perchase */
    .domain-purchase {
        padding: 40px 15px;
    }

    .domain-purchase .preview-section .details {
        padding: 9px;
    }

    .text-transperency .text-1 h5 {
        font-size: 14px;
        font-weight: 600;
    }

    .text-transperency .text-1 input {
        font-size: 15px;
    }

    .preview-section .details-footer .title h3 {
        font-size: 13px;
    }

    .preview-section .Social-icons .icons {
        padding: 6px;
    }
}


/* 991  */

@media (max-width: 991px) {
    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 30px;
    }

    .header .wrapper {
        border-radius: 20px;
    }

    .header ul {
        gap: 12px;
        padding: 17px;
    }

    .wrapper-2 .text ul li {
        font-size: 16px;
    }








    .wrapper .row .p-width h1 {
        font-size: 30px;
    }

    .wrapper .row .p-width p {
        font-size: 16px;
    }



    /* custom page  */
    .invest-section .invest-card {
        padding: 20px 15px;
    }

    .invest-section .invest-card .check-icon {
        gap: 20px;
    }

    .invest-section .card-foot {
        flex-direction: column;
        gap: 10px;
    }

    .info-card .inner-info:hover {
        transform: unset;
    }

    .preview-section .infom-card .input-group {
        max-width: 275px;
        margin-left: auto;
    }

    #certificate-popup .btn-close,
    #certificate-card .btn-close {
        padding: 5px !important;
    }

    #certificate-card .modal-header {
        align-items: center !important;
    }
}


/* mobile  */

@media (max-width: 767px) {
    h1 {
        font-size: 30px;
    }

    .header {
        padding-top: 10px;
    }

    .site-btn {
        padding: 10px !important;
    }

    .header .navbar-brand img {
        max-width: 150px;
    }

    .banner {
        padding: 116px 0 70px;
    }

    .banner .text p {
        font-size: 14px;
        margin-top: 10px;
    }

    .banner .text h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pb-70 {
        padding-bottom: 30px;
    }

    #search-field {
        width: 95%;
    }

    .p-120 {
        padding: 60px 0;
    }

    .section-1 .title h2 {
        color: var(--black);
        margin-bottom: 15px;
        font-size: 30px;
    }

    .font-cards .inner-wrapper {
        padding: 20px;
    }

    .pb-120 {
        padding-bottom: 30px;
    }

    .section-1 .wrapper-2:nth-child(even) {
        margin-top: 40px;
    }

    .wrapper-2 .text p {
        font-size: 16px;
        margin: 8px 0 7px;
    }

    .wrapper-2 .text ul {
        gap: 7px;
    }

    .wrapper-2 .text ul li i {
        padding: 3px;
    }

    .section-2 .title p {
        font-size: 14px;
    }

    .padding-x {
        padding: 30px 0 30px;
    }

    .section-3 .title p {
        margin: 10px 0 20px;
        font-size: 14px;
    }

    .email-box .site-btn,
    .email-box .site-btn::before {
        min-width: 120px;
        padding: 8px;
    }

    .email-box {
        max-height: 45px;
    }

    .custom-table .text h3 {
        font-size: 20px;
    }

    .custom-table .text p {
        font-size: 16px;
    }

    .faqs-section .section-title h2 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .faqs-section .accordion-button {
        font-size: 14px;
        gap: 10px;
    }

    .faqs-section .accordion-item {
        padding: 8px 14px;
    }

    .faqs-section .accordion-body ul {
        overflow-x: scroll;
    }

    .faqs-section .accordion-body ul li {
        font-size: 14px;
    }

    .faqs-section .accordion-body ul p {
        font-size: 14px;
    }

    .footer .text {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer .text p {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    .footer .text .site-btn {
        width: 100%;
    }

    /* templats */
    .preview-section .title h2 {
        font-size: 17px;
    }

    .preview-section {
        padding: 10px;
    }

    /* domain-purchase  */
    .domain-purchase .title h2 {
        font-size: 26px;
    }

    .domain-purchase .title p {
        font-size: 15px;
    }

    .domain-purchase .form-switch .form-check-input {
        height: 50px;
    }

    .my-form .form-switch .float-label {
        font-size: 18px;
        top: 12px;
    }

    .wrapper .row .p-width p {
        margin-bottom: 0px;
    }

    .pt-100 {
        padding: 100px 0 20px !important;
    }

    /* pricing page  */
    .pricing-sec .title .text {
        min-width: 175px;
    }

    .pricing-tab .accordion-header button {
        min-width: 185px;
        font-size: 13px;
        padding: 13px 15px;
    }

    .pricing-tab .accordion-button::after {
        width: 12px;
        height: 6px;
    }

    .pricing-sec .title .price {
        min-width: 293px;
        max-width: 290px;
    }

    .pricing-sec .title .price .inner-text:nth-child(1) {
        max-width: 146px;
    }

    .pX2-200 {
        padding: 132px 0 50px;
    }

    .inner-btn .site-btn {
        min-width: 170px;
    }

    /* brand name page */
    .banner h1 {
        font-size: 26px;
    }

    .reasons-sec .title h2 {
        font-size: 25px;
    }

    .reasons-sec .card-content .img img {
        max-width: 40px;
    }

    .reasons-sec .card-content {
        min-height: unset;
    }

    .benefits-sec .wrapper-2 .text a {
        font-size: 16px;
    }

    .section-2 .custom-wrapper {
        gap: 40px;
        margin-bottom: 20px;
    }

    .benefits-sec .wrapper-2 .text h2 br {
        display: none;
    }

    .benefits-sec .wrapper-2 .text h2 {
        font-size: 20px;
    }

    .section-2 .title p {
        margin: 10px 0;
    }

    .benefits-sec .title h2 {
        font-size: 30px;
    }

    .our-packages {
        padding: 30px 0;
    }

    .our-packages .title h2 {
        margin-bottom: 20px;
    }

    .our-packages .card-pakgs {
        min-height: unset;
        gap: 30px;
    }

    .our-packages.bg-blue-2::before {
        width: 100%;
        border-radius: 0;
    }

    .our-packages .card-title {
        margin-bottom: 20px;
    }

    .our-packages .card-title {
        min-height: unset;
        padding: 10px;
    }

    .our-packages .card-title h3 {
        margin-bottom: 4px;
    }

    .our-packages .card-pakgs:hover {
        transform: unset;
    }

    .check-icon {
        gap: 5px;
    }

    .our-packages .card-bottom {
        min-height: unset;
    }

    .domain-appraisal-sec {
        padding: 30px 0;
    }

    .domain-appraisal-sec .title h2 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .domain-appraisal-sec .wrapper {
        padding: 60px 10px 10px;
    }

    .domain-appraisal-sec .my-cols {
        flex-basis: 100%;
        max-width: unset;
    }

    .domain-appraisal-sec .wrapper .inner-wrapper .text-3 {
        text-align: left !important;
    }

    .domain-appraisal-sec .wrapper .inner-wrapper .text-2 p {
        font-size: 13px;
    }

    .domain-appraisal-sec .wrapper .custom-row hr {
        display: block;
    }

    .domain-appraisal-sec .wrapper .custom-row {
        flex-direction: column;
        gap: 15px;
    }

    /* .order domain */
    .order-domain {
        padding: 100px 0 30px;
    }

    .order-domain .wrapper {
        padding: 20px 12px;
    }

    .order-domain .wrapper .title .img img {
        max-width: 150px !important;
    }

    .order-domain .wrapper h3 {
        margin: 20px 0 10px;
    }

    .order-domain .input-form {
        margin-top: 10px;
    }

    .order-domain .input-form input,
    .order-domain .input-form select {
        padding: 9px 15px;
        font-size: 16px;
    }

    .order-domain .input-form input::placeholder {
        font-size: 14px;
    }

    .order-summary {
        padding: 15px;
    }

    .order-domain .order-summary>h3 {
        margin: 10px 0;
    }

    .order-summary h5 {
        font-size: 13px;
    }

    .order-domain .input-form label {
        font-size: 16px;
    }

    .process-order {
        width: 100%;
        margin-top: 20px;
    }

    .process-order a {
        font-size: 14px;
    }

    .pb-90 {
        padding-bottom: 50px !important;
    }

    .domain-path form label {
        font-size: 16px;
    }

    .font-cards .inner-wrapper {
        padding: 0 20px 20px;
    }

    .pricing-tab .cstm-row {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-tab .cstm-row .nav-pills {
        overflow-x: auto;
        width: 100%;
        padding-bottom: 6px;
    }

    .pricing-tab .nav-pills {
        flex-direction: row !important;
        flex-wrap: nowrap;
        gap: 4px;
    }

    .pricing-tab .icons {
        min-width: 289px;
    }

    .nav-pills .nav-link {
        text-align: center;
        white-space: nowrap;
    }

    .pricing-sec .title p {
        font-size: 14px;
    }

    .process-order {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* custom page  */
    .custom-sec.p-120 {
        padding: 30px 0;
    }

    .custom-sec .custom-wrapper {
        gap: 25px;
    }

    .cstm-banner .text p {
        margin: 10px 0;
    }

    .invest-section .title h2 {
        font-size: 30px;
    }

    .invest-section .invest-card h3 {
        font-size: 20px;
    }

    .invest-section {
        padding: 30px 0;
    }

    /* popup  */
    .popup .modal-footer .site-btn {
        min-width: unset;
    }

    .popup-7 .thems .img {
        flex-basis: 29% !important;
    }

    /* .domain-purchase  */
    .preview-section {
        padding: 0;
    }

    .preview-section .details h3 {
        font-size: 13px;
    }

    .main-name p br {
        display: none;
    }

    .preview-section .infom-card .input-group {
        max-width: 122px;
    }

}


/* tilt-animation  */

.tilt-container,
.swiper-3d {
    perspective: 2000px;
}

.swiper-3d {
    perspective: 4000px;
}

.tilt-image {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.banner:hover .tilt-image {
    transform: rotateY(0deg) rotateX(0deg);
}


/* swiper css  */

.swiper-3d .swiper-slide-shadow-left {
    background-image: unset;
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: unset;
}


/* popup  */

.popup {
    font-family: "Roboto";
}

.popup .modal-dialog {
    max-width: 450px;
}

.popup-1 .modal-footer {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.popup-1 .modal-footer button:last-child {
    border: 1px solid #279ddf;
    background-color: #279ddf;
}

.popup-1 .modal-footer button:last-child:hover {
    color: #279ddf;
}

.popup-1 .modal-footer .btn-2 {
    border: 1px solid #279ddf;
    background-color: transparent;
}

.popup-1 .modal-footer .site-btn {
    font-size: 14px;
}

.popup :where(.modal-footer,
    .modal-body) {
    border: unset;
    padding-left: 20px;
    padding-right: 20px;
}

.popup .modal-body {
    padding-bottom: 0;
}

.popup .modal-body input {
    padding: 12px 15px;
    font-size: 12px;
}

.popup .modal-body input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.popup label {
    color: #000000;
    font-size: 12px;
}


/* popup-2 */

.popup-2 .img {
    background-color: #279ddf;
    display: inline-flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.popup-2 h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primerydark);
    margin: 12px auto 20px;
}

.popup-2 .img img {
    max-width: 25px;
}

.popup-2 p {
    margin: 0 auto 30px;
    font-size: 13px;
    max-width: 350px;
    color: var(--black);
}


/* popup-7  */

.popup-7 .modal-dialog {
    max-width: 550px;
}

.popup-7 .thems {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    height: 300px;
    overflow-y: scroll;
}

.popup-7 .thems::-webkit-scrollbar {
    width: 5px;
}

.popup-7 .thems::-webkit-scrollbar-thumb {
    background-color: #c5c5c5;
    border-radius: 5px;
}

.popup-7 .thems .img {
    flex-basis: 23%;
}

.popup-7 .thems .img img {
    border-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.popup-7 .btn-close {
    background-image: url(../images/close-circle.svg);
    opacity: 1;
    background-size: 100%;
}

.popup-7 .fields {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.popup-7 .fields :where(input,
    .flot-label) {
    min-width: 150px;
    border: 1px solid rgba(206, 211, 213, 1);
    border-radius: 50px;
    padding: 8px 15px !important;
    color: #000000;
    font-size: 14px;
}

.popup-7 .fields .fields-1 .flot-label {
    text-align: center;
}

.popup-7 .fields .fields-2 input::placeholder {
    color: #000000;
    font-size: 14px;
}

.popup-7 .fields .fields-2 {
    position: relative;
}

.popup-7 .fields .fields-2 label {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 15px;
    bottom: 0;
    height: max-content;
    margin: auto;
    max-width: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.popup-7 .fields .fields-1 input:checked+label {
    background-color: #2bceb3;
    color: var(--white);
}

.popup-7 .modal-body {
    padding: 20px;
}

.bg-templates .img.selected img {
    border: 5px solid var(--primary);
}

@media (max-width: 374px) {

    .popup-7 .fields :where(input,
        label) {
        min-width: 120px;
    }

    .popup-7 .title h5 {
        font-size: 16px;
    }
}


/* New-pages */
.order-domain.initial-package {
    padding-bottom: 120px;
}

.bg-blue-2.initial-package::before {
    height: 68% !important;
}

.package-card {
    box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 13px;
    padding: 25px 25px;

}

.package-card .card-title h3 {
    margin-top: 0;
}

.initial-package .title h1 {
    color: #092433;
}

.package-card li {
    list-style: none;
    margin-bottom: 16px;
}

.package-card li:last-of-type {
    margin-bottom: 0;
}

.package-card li img {
    max-width: 20px;
    margin-right: 5px;
}

.profit-potential span {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.profit-potential h4 {
    font-size: 18px;
    font-weight: 700;
    color: #092433;
}

.package-card .amount {
    margin-top: 40px;
}

.package-card .amount span {
    font-size: 40px;
    color: var(--primary);
    font-weight: 700;
}

.check-card {
    width: 100%;
}

.check-card label {
    width: 100%;
    text-align: left;
    padding: 0;
}

.check-card .btn-check:checked+.btn {
    border: 2px solid;
    border-color: #3daae4;
    border-radius: 13px;
}

.domain-package-card {
    margin: 50px 0 70px;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-buttons .site-btn {
    min-width: 195px;
}

.outline-btn {
    background-color: transparent !important;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.outline-btn:hover {
    color: var(--white);
}

.outline-btn::before {
    background: var(--primary);
}

/* Card-details */
.bg-blue-2.card-details::before {
    height: 59%;
}

.order-domain.card-details {
    padding-bottom: 200px;
}

.card-details .wrapper {
    max-width: 900px;
}

.card-details h1 {
    color: #092433;
}

.card-input {
    margin-top: 40px;
}

.card-input .form-control {
    border: 1px solid #D9D9D9;
    color: #A4A4A4;
    padding: 16px 14px;
    border-radius: 10px;
}

.card-input input::placeholder {
    color: #A4A4A4;
}

.card-input input:focus {
    box-shadow: none;
}

.card-details .card-title h3 {
    color: #092433;
    margin-bottom: 20px;
}

.card-details .amount {
    margin-top: 0;
    margin-bottom: 10px;
}

.card-details .package-card li {
    margin-bottom: 20px;
}

.card-details .package-card {
    background: #F1F5FB;
    box-shadow: none;
}

.package-card {
    height: 100%;
}

.step-buttons p {
    max-width: 267px;
    color: #4D4D4D;
}

.step-buttons p span {
    font-weight: 600;
    color: var(--primary)
}

/* Detail-point */
.detail-point .wrapper {
    max-width: 960px;
}

.detail-point h1 {
    color: #092433;
}

.all-point {
    margin: 50px 0 70px;
}

.all-point label {
    color: #4D4D4D;
    font-size: 18px;
    font-weight: 400;
    margin-left: 12px;
}

.all-point .form-check-input:focus {
    box-shadow: none;
}

.all-point .form-check-input:checked {
    border-color: #185FB7;
}

.all-point .form-check-input {
    border-color: #185FB7;
    width: 20px;
    height: 20px;
}

.all-point .form-check-input:checked {
    background-color: #185FB7 !important;
}

.all-point .form-check {
    margin-bottom: 30px;
}

.all-point .form-check:last-of-type {
    margin-bottom: 0;
}

.deal-checkout[disabled] {
    background-color: #9D9D9D;
    border-color: #9D9D9D;
    pointer-events: none;
}

.deal-checkout:hover {
    color: var(--white);
}

.deal-checkout::before {
    width: 0;
    transform: unset;
    border-radius: 0;
    background: var(--primary);
}

@media (max-width:991px) {
    .order-domain.initial-package {
        padding-bottom: 70px;
    }

    .card-details .step-buttons .site-btn {
        min-width: 155px;
    }

    .all-point label {
        font-size: 16px;
    }

    .order-domain.card-details {
        padding-bottom: 100px;
    }
}

@media (max-width:767px) {
    .package-card {
        padding: 16px 16px;
    }

    .order-domain .wrapper h3 {
        font-size: 18px;
    }

    .profit-potential h4 {
        font-size: 16px;
    }

    .profit-potential span {
        font-size: 20px;
    }

    .package-card li {
        font-size: 14px;
    }

    .package-card li img {
        max-width: 15px;
    }

    .package-card .amount {
        margin-top: 30px;
    }

    .package-card .amount span {
        font-size: 30px;
    }

    .step-buttons {
        display: unset;
    }

    .step-buttons a {
        width: 100%;
        margin-bottom: 10px;
    }

    .step-buttons p {
        font-size: 14px;
        text-align: center;
        margin: 0 auto 20px;
    }

    .domain-package-card {
        margin: 30px 0 40px;
    }

    .all-point {
        margin: 40px 0 50px;
    }

    .card-input .form-control {
        padding: 12px 12px;
    }

    .card-details .amount {
        margin-top: 0;
    }

    .initial-package .title h1 {
        font-size: 26px;
    }
}

/* Popup */
.certificate-btn {
    background: #FFA500;
    min-width: 240px;
    color: var(--white);
    border-radius: 0 37px 37px 0;
    padding: 13px 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    transition: var(--transation);
}

.certificate-btn:hover {
    border: 1px solid var(--white);
}

.certificate-btn:hover:active {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: var(--transation);
}

.certificate-btn img {
    max-width: 105px;
    position: absolute;
    z-index: 1;
    top: 4px;
    bottom: 0;
    height: max-content;
    margin: auto;
    left: -34%;
}


.footer-button {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Valid Pin Popup */
@media (min-width: 576px) {
    #certificate-popup .modal-dialog {
        max-width: 390px;
    }
}


#certificate-popup .btn-close {
    background-size: 8px;
    padding: 0;
    border: 2px solid var(--black);
}

#certificate-popup .modal-header {
    padding: 20px 20px 20px;
}

.modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    justify-content: center !important;
}

.validate-btn {
    background-color: #279CDE;
    border-color: #279CDE;
    width: 100%;
}

.valid-pin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.valid-pin .form-control {
    border: 1px solid #CED3D5;
    font-size: 16px;
    color: #092433;
    font-weight: 500;
    border-radius: 5px;
    width: 49px;
    height: 49px;
    text-align: center;
}

.valid-pin input ::placeholder {
    color: #092433;
}

.popup-wrapper {
    max-width: 320px;
    margin: auto;
}


/* Certificate Card Popup */
#certificate-card .modal-dialog {
    max-width: 891px;
}

#certificate-card {
    padding-right: 0 !important;
}

#certificate-card .logo {
    max-width: 178px;
}

.btn-close {
    border: 1px solid;
    border-radius: 50%;
}

#certificate-card .btn-close {
    background-size: 8px;
    padding: 2px;
    border: 2px solid var(--black);
}

#certificate-card .btn-close {
    margin-right: 7px;
}

#certificate-popup .modal-body {
    padding-top: 0;
}

#certificate-popup {
    padding-right: 0 !important;
}

#certificate-popup .modal-footer {
    padding: 0 30px 30px;
}

#certificate-card .modal-content {
    background: linear-gradient(82.93deg, #185FB7 0%, #3DAAE4 100%);
    padding: 20px 20px;
    border-radius: 20px;
}

#certificate-card .modal-body {
    padding: 0;
}

#certificate-card .modal-header {
    padding: 0 0 30px;
    justify-content: space-between;
    align-items: baseline;
}

#certificate-popup .site-btn {
    padding: 8px 10px;
}

#certificate-card .card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
    z-index: 1;
}

#certificate-card .certificate-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 350px;

}



/* otp  */

.otp-fake-input {
    padding: 0;
    margin: 0 !important;
    width: 100% !important;
    height: 50px !important;
    border: 1px solid rgba(206, 211, 213, 1)
}

.otp-fake-input .otp-content {
    vertical-align: middle;
}

#otp_target .flex-row {
    gap: 5px;
    margin-top: 30px !important;
}

.otp-fake-input .otp-content {
    font-size: 20px !important;
    font-weight: 400 !important;
    padding: 0 !important;
    color: #092433 !important;
}

.otp-fake-input.otpdesigner__focus__ {
    border: 1px solid #007bff !important;
}

.certificate-card-body,
.certificate-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.certificate-card-body {
    margin-bottom: 50px;
}

.certificate-card-body .text {
    width: 40%;
}

.certificate-card-body .madel-pic {
    width: 40%;
    text-align: center;
}

.certificate-card-body h4 {
    font-size: 30px;
    font-weight: 600;
    color: #092433;
}

.certificate-card-body p {
    font-size: 20px;
    font-weight: 400;
    color: #092433;
    margin: 5px 0 20px;
}

.certificate-card-body span {
    font-size: 30px;
    font-weight: 600;
    color: #1A64BA;
}

.madel-pic img {
    max-width: 220px;
}

.certificate-card-footer .qr-scaner {
    width: 63%;
}

.certificate-card-footer .sign {
    width: 25%;
}

.certificate-card-footer .qr-scaner img {
    max-width: 180px;
    margin-bottom: 12px;
}

#certificate-card .sign h2 {
    font-size: 32px;
    font-weight: 400;
    color: #092433;
    font-family: "Sacramento";
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    padding-bottom: 15px;
}


.certificate-card-footer p {
    color: #092433;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width:991px) {
    .footer-button {
        flex-direction: column;
        align-items: end;

    }


    #certificate-popup .modal-content {
        width: 100%;
    }

    .certificate-card-body {
        margin-bottom: 30px;
    }

    .certificate-card-body h4 {
        font-size: 22px;
    }

    .certificate-card-body p {
        font-size: 14px;
    }

    .certificate-card-body span {
        font-size: 22px;
    }

    .certificate-card-body .text {
        width: 54%;
    }

    .certificate-card-footer .qr-scaner img {
        max-width: 110px;
    }

    .certificate-card-footer p {
        font-size: 14px;
    }

    .certificate-card-footer .sign img {
        max-width: 110px;
    }

    #certificate-card .sign h2 {
        font-size: 24px;
    }

    .btn-close {
        width: 8px;
        height: 8px;
    }

    #certificate-card .modal-dialog {
        max-width: 740px;
    }

    #certificate-card .card {
        padding: 20px 15px;
    }

    #certificate-card .modal-content {
        padding: 16px 16px;
    }

    .madel-pic img {
        max-width: 160px;
    }

    #certificate-card .certificate-bg {
        max-width: 270px;
    }

    .certificate-btn img {
        max-width: 95px;
    }

    .certificate-btn {
        min-width: 225px;
        font-size: 15px;
    }


}

@media (max-width:767px) {


    .certificate-btn {
        padding: 10px 10px;
        width: 100%;
        font-size: 15px;
    }


    .footer-button {
        gap: 20px;
    }

    .footer-button {
        width: 100%;
        align-items: unset;
    }

    .site-btn.certificate-btn {
        margin-bottom: 30px;
    }

    .certificate-card-body {
        flex-direction: column-reverse;
    }

    .certificate-card-body .text,
    .certificate-card-body .madel-pic {
        width: 100%;
    }

    #certificate-card .logo img {
        max-width: 120px;
    }

    .madel-pic img {
        max-width: 80px;
        margin-bottom: 30px;
    }

    .certificate-card-footer {
        display: unset;
    }

    .certificate-card-footer .qr-scaner {
        width: 100%;
        margin-bottom: 30px;
    }

    .certificate-card-footer .sign {
        width: 100%;
        text-align: end;
    }

    .certificate-card-footer .sign>div {
        display: flex;
        justify-content: end;
    }

    #certificate-card .modal-header {
        align-items: baseline !important
    }

    #certificate-card .sign h2 {
        font-size: 18px;
        display: inline-block;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }

    .certificate-btn img {
        left: -2px;
        max-width: 75px;
    }


    @media (min-width: 576px) {
        #certificate-popup .modal-dialog {
            max-width: 500px !important;
        }
    }

    .btn-close {
        background-size: 12px;
    }

}

@media (max-width: 374px) {

    .certificate-btn {
        font-size: 14px;
        padding: 9px 10px;
    }

    .header .navbar-brand img {
        max-width: 122px;
    }

    .certificate-btn img {
        left: -2px;
        max-width: 67px;
    }
}