/* ==================================================
SERVICE HERO
================================================== */

.service-hero{
    position:relative;
    overflow:hidden;
    min-height:450px;

    padding:30px 0;

    background:
    radial-gradient(circle at 15% 20%, rgba(0,119,255,.20), transparent 35%),
    radial-gradient(circle at 85% 30%, rgba(0,255,204,.12), transparent 30%),
    linear-gradient(
        135deg,
        #021660 0%,
        #03257f 100%
    );
}

.service-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:60px 60px;
}

.service-content-description{
    margin-top:20px;
}

.service-content-description p{
    margin-bottom:20px;
    font-size:16px;
    line-height:1.9;
    color:#667085;
}

.service-content-description p:last-child{
    margin-bottom:0;
}

.service-content-description strong{
    color:#071C63;
    font-weight:700;
}

.service-content-description ul{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px 30px;

    list-style:none;

    padding:0;

    margin:25px 0 0;

}

.service-content-description li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    position:relative;

    font-size:16px;

    line-height:1.7;

    color:#667085;

}

.service-content-description li::before{

    content:"\f058";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    color:#0B5FFF;

    font-size:18px;

    flex-shrink:0;

    margin-top:2px;

}

.service-hero-wrapper{
    display:grid;
    grid-template-columns:1.5fr .7fr .9fr;
    gap:10px;
    align-items:center;
    position:relative;
    z-index:2;
}

.service-hero-content h1{

    color:#fff;

    font-size:32px;

    line-height:1.15;

    font-weight:700;

    margin-bottom:10px;

}

.service-hero-content h1 span{

    display:block;
    /*color:#3C8DFF;*/
    color: transparent;
    background: linear-gradient(90deg, rgb(34, 211, 238), rgb(129, 140, 248)) text;

}

.service-hero-content p{

    color:rgba(255,255,255,.82);

    font-size:16px;

    line-height:1.7;

    max-width:620px;

    margin-bottom:10px;

}

/*=====================================
Features
=====================================*/

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:6px 10px;

    margin-bottom:15px;

}

.hero-feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    font-weight:500;

}

.hero-feature i{

    color:#2F8BFF;

    font-size:16px;

}

/*=====================================
Buttons
=====================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    align-items:center;

}

.service-primary-btn,
.service-secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    padding:10px 20px;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.service-primary-btn{

    background:#0B5FFF;
    font-size: 16px;
    color:#fff;

    box-shadow:0 15px 35px rgba(11,95,255,.30);

}

.service-primary-btn:hover{

    transform:translateY(-4px);

    background:#1568ff;

}

.service-secondary-btn{

    color:#fff;
    font-size: 16px;
    border:1px solid rgba(255,255,255,.25);

    background:rgba(255,255,255,.08);

}

.service-secondary-btn:hover{

    background:#fff;

    color:#021660;

}

.service-hero-image{
    text-align:center;
}

.service-hero-image img{
    width:100%;
    max-width:450px;
}

/* ==================================================
CONSULTATION FORM
================================================== */

.service-hero-form{
    /*background:rgba(255,255,255,.08);*/
    background:#edf5ff;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:25px;

    padding:15px;
}

.service-hero-form p{
    color:#25468d;

    text-align:center;

    font-size:20px;

    margin-bottom:10px;
}

.service-hero-form form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.service-hero-form input,
.service-hero-form select,
.service-hero-form textarea{
    width:100%;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.12);

    /*background:rgba(255,255,255,.06);*/
    background:#25468d;

    color:#fff;

    padding:10px 20px;

    outline:none;
}

.service-hero-form select{
    background:#25468d;
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.service-hero-form select option:hover{
    background:#0B5FFF !important;
    color:#fff !important;
}

.service-hero-form textarea{
    resize:none;
    /*min-height:120px;*/
}

.service-hero-form input::placeholder,
.service-hero-form textarea::placeholder{
    color:rgba(255,255,255,.65);
}

.service-consult-btn{
    padding:15px;

    border:none;

    border-radius:12px;

    background:linear-gradient(
        135deg,
        #0B5FFF,
        #4DA3FF
    );

    color:#fff;

    font-weight:700;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    transition:.35s;
}

.service-consult-btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.6s;
}

.service-consult-btn:hover{
    transform:translateY(-4px);

    box-shadow:
    0 15px 35px rgba(11,95,255,.45);
}

.service-consult-btn:hover::before{
    left:100%;
}

.response-time{
    display:block;

    text-align:center;

    color:rgba(255,255,255,.8);

    margin-top:15px;
}

/* ==================================================
SERVICE CONTENT
================================================== */

.service-content{

    padding:30px 0;

    background:#fff;

}

.service-content-wrapper{

    display:grid;

    grid-template-columns:1.6fr 1fr;

    gap:60px;

    /*align-items:center;*/

}

/*==========================
Left
==========================*/

.service-content-left h2{

    font-size:36px;

    line-height:1.15;

    font-weight:800;

    color:#071C63;

    margin-bottom:10px;

}

.service-content-left p{

    font-size:16px;

    line-height:2;

    color:#667085;

    margin-bottom:15px;

}

.service-content-left p:last-child{

    margin-bottom:0;

}

/*==========================
Right
==========================*/

.service-content-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.service-content-image{

    width:100%;

    max-width:450px;

    border-radius:18px;

    display:block;

    transition:.35s;

}

.service-content-image:hover{

    transform:translateY(-6px);

}



/*=========================================
Comparison Table
=========================================*/

.comparison-section{
    padding:30px 0;
    background: #f8faff;
}

.comparison-heading{
    text-align:center;
    margin-bottom:15px;
}

.comparison-heading h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    margin-bottom:15px;
}

.comparison-section .container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/*=========================================
Table Wrapper
=========================================*/

.comparison-table-wrapper{
    width:100%;
    /*max-width:900px;*/
    overflow-x:auto;
    border-radius:18px;
    box-shadow:0 15px 20px rgba(0,0,0,.08);
    background:#fff;
}

/*=========================================
Table
=========================================*/

.comparison-table{
    width:100%;
    margin:0 auto;
    border-collapse:collapse;
    table-layout:fixed;
    display: inline-table;
    /*max-width:900px;*/
}

/*=========================================
Header
=========================================*/

.comparison-table thead th{

    padding:14px 10px;

    background:#1147A8;

    color:#fff;

    font-size:18px;

    font-weight:700;

    text-align:center;
}

.comparison-table thead th:first-child{

    text-align:left;

    padding-left:28px;

    border-top-left-radius:18px;

}

.comparison-table thead th:last-child{

    border-top-right-radius:18px;

}

.comparison-table thead th.active{

    background:#ff7b00;

}

/*=========================================
Body
=========================================*/

.comparison-table tbody tr{

    border-bottom:1px solid #edf1f7;

}

.comparison-table tbody tr:nth-child(even){

    background:#f8fbff;

}

.comparison-table tbody tr:hover{

    background:#eef5ff;

}

.comparison-table tbody td{

    padding:10px 20px;

    text-align:center;

    font-size:16px;

    color:#444;

}

.comparison-table tbody td:first-child{

    text-align:left;

    padding-left:28px;

    font-weight:700;

    color:#071C63;

}

.comparison-table tbody tr:last-child td:first-child{

    border-bottom-left-radius:18px;

}

.comparison-table tbody tr:last-child td:last-child{

    border-bottom-right-radius:18px;

}

/*=========================================
Highlight
=========================================*/

.comparison-table .highlight{

    color:#0B5FFF;

    font-weight:700;

}


/* ==========================================
   SERVICE PRICING
========================================== */

.service-pricing{
    padding:30px 0;
    background:#fff;
}

.service-section-header{
    text-align:center;
    margin-bottom:15px;
}

.service-section-header h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    margin-bottom:10px;
}

.service-section-header p{
    font-size:18px;
    line-height:1.8;
    color:#667085;
    margin-bottom:15px;
}

.pricing-scroll{
    display:flex;
    gap:30px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:25px;
    scroll-behavior:smooth;
    align-items:stretch;
}

/* Scrollbar */

.pricing-scroll::-webkit-scrollbar{
    height:8px;
}

.pricing-scroll::-webkit-scrollbar-track{
    background:#edf2ff;
    border-radius:20px;
}

.pricing-scroll::-webkit-scrollbar-thumb{
    background:#0B5FFF;
    border-radius:20px;
}

.pricing-scroll::-webkit-scrollbar-thumb:hover{
    background:#063fb3;
}

.pricing-scroll{
    /*scrollbar-width:thin;*/
    scrollbar-width:auto;
    scrollbar-color:#0B5FFF #edf2ff;
}

/* ==========================================
   CARD
========================================== */

.pricing-card{

    flex:0 0 320px;

    min-height:350px;

    display:flex;
    flex-direction:column;

    background:#fff;

    border:1px solid #E5ECFA;

    border-radius:10px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    position:relative;

    overflow:visible;

    padding-top:15px;

    transition:all .35s ease;

}

.pricing-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(11,95,255,.18);

}

.pricing-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#ff6a00;

    border-radius:18px 18px 0 0;

}

/*=========================================
Featured Card
=========================================*/

.pricing-card.featured{

    border:2px solid #0B5FFF;

    transform:translateY(-6px);

}

.pricing-card.featured::before{

    background:#0B5FFF;

}

/*=========================================
Badge
=========================================*/

.pricing-badge{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    /*min-width:140px;*/

    padding:10px 20px;

    background:linear-gradient(135deg,#1F67FF,#0B5FFF);

    color:#fff;

    text-align:center;

    font-size:13px;

    font-weight:700;

    line-height:1;

    border-radius:50px;

    white-space:nowrap;

    z-index:10;

    box-shadow:
        0 4px 10px rgba(11,95,255,.35);

}

/* White outline */

.pricing-badge::before{

    content:"";

    position:absolute;

    inset:-2px;

    border:2px solid #fff;

    border-radius:50px;

    pointer-events:none;

}


/* ==========================================
   HEADER
========================================== */

.pricing-header{

    padding:10px 15px 0px;

    text-align:center;

}

.pricing-header h3{

    font-size:22px;

    font-weight:800;

    color:#071C63;

    margin-bottom:10px;

}

/*=====================================
Pricing
=====================================*/

.price{

    display:flex;

    justify-content:center;

    align-items:flex-end;

    gap:4px;

    /*margin:18px 0 10px;*/

    color:#ff6600;

    font-weight:800;

    line-height:1;

    font-size:36px;

}

.price .currency{

    font-size:30px;

    /*margin-bottom:6px;*/

}

.price small{

    font-size:18px;

    color:#555;

    font-weight:600;

    /*margin-bottom:8px;*/

}

/*=====================================
Regular Price
=====================================*/

.regularprice{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-bottom:10px;
    border-bottom: 1px solid #0b5fff;

    font-size:16px;

    color:#6b7280;

}

.regularprice span{

    font-weight:500;

}

.regularprice .currency {
    font-size: 20px;
    font-weight: 700;
    text-decoration-thickness:2px;
}

.regularprice del{

    color:#9ca3af;

    font-size:20px;

    font-weight:700;

    text-decoration-thickness:2px;

}

.regularprice small{

    font-size:14px;

    color:#6b7280;

}

.pricing-subtitle{

    margin-top:15px;

    color:#667085;

    font-size:15px;

}

/* ==========================================
   FEATURES
========================================== */

.pricing-features{

    list-style:none;

    margin:0;

    padding:0 20px;

    flex:1;

}

.pricing-features li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:5px;
    font-size:14px;
}

.pricing-features li.available i{
    color:#28a745;
}

.pricing-features li.not-available i{
    color:#ff4d4f;
}

.pricing-features li.not-available{
    color:#9ca3af;
}

.pricing-features li.not-available span{
    text-decoration:line-through;
}

/* ==========================================
   BUTTON
========================================== */

.pricing-btn{

    margin:10px 20px;

    padding: 10px 20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0B5FFF;

    color:#fff;

    border-radius:10px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.pricing-btn:hover{

    background:#ff6a00;

    color:#fff;

}

/* ===================================
QUOTE MODAL
=================================== */

.quote-modal-overlay{
    position:fixed;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(3,18,55,.75);
    backdrop-filter:blur(8px);

    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.quote-modal-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ===================================
MODAL BOX
=================================== */

.quote-modal{
    position:relative;

    width:100%;
    max-width:450px;

    background:#fff;

    border-radius:24px;

    padding:15px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.18);

    transform:translateY(30px) scale(.96);

    transition:.35s ease;
}

.quote-modal-overlay.active .quote-modal{
    transform:translateY(0) scale(1);
}

/* ===================================
CLOSE BUTTON
=================================== */

.quote-modal-close{
    position:absolute;

    top:-12px;
    right:-12px;

    width:46px;
    height:46px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#071C63;

    box-shadow:
    0 10px 25px rgba(0,0,0,.15);

    cursor:pointer;

    font-size:18px;

    transition:.3s ease;
}

.quote-modal-close:hover{
    background:#0B5FFF;
    color:#fff;
    transform:rotate(90deg);
}

/* ===================================
HEADER
=================================== */

.quote-modal h3{
    font-size:28px;
    font-weight:800;
    color:#071C63;

    text-align:center;

    /*margin-bottom:10px;*/
}

.quote-modal-subtitle{
    text-align:center;

    color:#667085;

    font-size:16px;

    line-height:1.7;

    margin-bottom:10px;
}

/* ===================================
FORM LAYOUT
=================================== */

.quote-row{
    margin-bottom:15px;
}

/* ===================================
INPUTS
=================================== */

.quote-modal input,
.quote-modal select,
.quote-modal textarea{

    width:100%;

    border:1px solid #dbe4ff;

    border-radius:14px;

    background:#fff;

    outline:none;

    font-size:15px;

    transition:.3s ease;
}

.quote-modal input,
.quote-modal select{
    /*height:56px;*/
    
    padding:10px 20px;
}

.quote-modal textarea{
    /*height:120px;*/
    padding:10px 18px;
    resize:none;
}

/* Focus */

.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus{

    border-color:#0B5FFF;

    box-shadow:
    0 0 0 4px rgba(11,95,255,.10);
}

/* ===================================
SUBMIT BUTTON
=================================== */

.service-quotes-submit{

    width:100%;

    /*height:58px;*/
    padding:10px 20px;
    
    border:none;

    border-radius:14px;

    margin-bottom:10px;

    background:linear-gradient(
        135deg,
        #0B5FFF,
        #4DA3FF
    );

    color:#fff;

    font-size:18px;
    font-weight:700;

    cursor:pointer;

    transition:.35s ease;
}

.service-quotes-submit:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(11,95,255,.35);
}

/* ===================================
PRIVACY POLICY
=================================== */

.quote-policy{

    text-align:center;

    color:#667085;

    font-size:14px;

    line-height:1.7;
}

.quote-policy a{

    color:#0B5FFF;

    font-weight:600;

    text-decoration:none;
}

.quote-policy a:hover{
    text-decoration:underline;
}


/* ===================================
BODY SCROLL LOCK
=================================== */

body.modal-open{
    overflow:hidden;
}

/* ==========================================
   BENEFITS
========================================== */

.pricing-benefits{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:18px;

    margin-top:35px;

}

.benefit-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px;

    background:#fff;

    border:1px solid #E5ECFA;

    border-radius:12px;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.benefit-item i{

    font-size:22px;

    color:#0B5FFF;

}

.benefit-item span{

    font-size:15px;

    color:#071C63;

    font-weight:600;

}


/*=========================================
WHY CHOOSE
=========================================*/

.service-why-choose{
    padding:30px 0;
    background:#fff;
}

.service-why-choose .service-section-header{
    margin-bottom:25px;
}

.service-why-choose .service-section-header h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    text-align:center;
    margin-bottom:0;
}

/*=========================================
TOP GRID
=========================================*/

.why-choose-top-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:15px;

    /*margin-bottom:50px;*/

}

.why-top-card{

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:12px;

    padding:22px 15px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.why-top-card:hover{

    transform:translateY(-6px);

    border-color:#0B5FFF;

    box-shadow:0 15px 35px rgba(11,95,255,.15);

}

.why-top-icon{

    width:58px;

    height:58px;

    margin:0 auto 15px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0B5FFF;

    font-size:26px;

}

.why-top-card h3{

    font-size:15px;

    font-weight:700;

    color:#071C63;

    line-height:1.5;

    margin:0;

}

/*=========================================
BOTTOM GRID
=========================================*/

.why-choose-bottom-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

.why-bottom-card{

    background:#fff;

    border:1px solid #E8EEF8;

    border-radius:14px;

    padding:22px 18px;

    display:flex;

    align-items:center;

    gap:15px;

    transition:.35s ease;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

}

.why-bottom-card:hover{

    transform:translateY(-6px);

    border-color:#0B5FFF;

    box-shadow:0 15px 35px rgba(11,95,255,.15);

}

.why-bottom-icon{

    width:55px;

    height:55px;

    min-width:55px;

    border-radius:50%;

    background:#EEF4FF;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#0B5FFF;

    font-size:24px;

}

.why-bottom-content h3{

    font-size:17px;

    font-weight:700;

    color:#071C63;

    margin-bottom:8px;

    line-height:1.4;

}

.why-bottom-content p{

    font-size:14px;

    color:#667085;

    line-height:1.7;

    margin:0;

}

/* ==================================================
FAQ
================================================== */

.service-faq{
    padding:30px 0;
    background:#f8faff;
}

.service-faq-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px 40px;
}

.faq-column{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.service-faq-answer a{
    color:#0B5FFF;
    font-weight:600;
    text-decoration:none;
}

.service-faq-answer a:hover{
    text-decoration:underline;
}

.service-faq-answer p{
    margin-bottom:4px;
    font-size:16px;
    line-height:1.8;
    color:#667085;
}

.service-faq-answer p:last-child{
    margin-bottom:0;
}

.service-faq-item{

    background:#fff;

    border:1px solid #E7EDF7;

    border-radius:15px;

    transition:.3s ease;

}

.service-faq-item:hover{

    border-color:#0B5FFF;

    box-shadow:0 10px 25px rgba(11,95,255,.08);

}

.service-faq-question{
    width:100%;

    background:none;

    border:none;

    padding:15px 20px;

    text-align:left;

    font-size:18px;
    font-weight:700;

    color:#071C63;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.service-faq-answer{

    max-height:0;

    overflow:hidden;
    
    font-size:16px;

    transition:
        max-height .35s ease,
        padding .35s ease;

    padding:0 22px;

}

.service-faq-item.active .service-faq-answer{

    max-height:250px;

    padding:0 22px 22px;

}

.service-faq-question i{

    transition:.3s ease;

    color:#0B5FFF;

}

.service-faq-item.active .service-faq-question i{

    transform:rotate(180deg);

}

/*==================================================
Domain Solution
==================================================*/
.domain-section{
    padding:30px 0;
    background:#f7f9ff;
}

.domain-section .domain-section-title{
    max-width:760px;
    margin:0 auto 30px;
    text-align:center;
}

.domain-section-title h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    margin-bottom:10px;
}

.domain-section-title h2 span{
    color:#ff7a00;
}

.domain-section-title p{
    color:#667085;
    font-size:16px;
    line-height:1.8;
}

.domain-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    align-items:stretch;
}

.domain-grid5{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:30px;

    align-items:stretch;
}

.domain-grid6{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;
}

/* =====================================
   CARD
===================================== */

.domain-card{

    background:#fff;
    border-radius:18px;
    padding:10px 20px;
    text-align:center;
    position:relative;
    transition:.35s ease;
    overflow:hidden;
    border:1px solid #edf1ff;
    box-shadow:0 15px 40px rgba(16,34,86,.08);
    height:100%;
    min-height:300px;
    display:flex;
    flex-direction:column;
    align-items:center;
}


.domain-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(7,28,99,.15);
}

/* =====================================
   ICON
===================================== */


.domain-icon{

    width:75px;
    height:75px;
    /*min-height:75px;*/
    border-radius:50%;
    margin:0 auto 15px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0b5fff;
    color:#fff;
    font-size:28px;
    box-shadow:0 10px 30px rgba(37,99,235,.25);
}

/* =====================================
   TITLE
===================================== */

.domain-card h3{

    color:#071C63;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    /*min-height:55px;*/
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =====================================
   DESCRIPTION
===================================== */

.domain-card p{

    color:#667085;
    line-height:1.8;
    font-size:15px;
    margin-bottom:15px;
    flex:1;
}

/* =====================================
   BUTTON FIX BOTTOM
===================================== */


.domain-card .theme-btn{

    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    /*max-width:260px;*/
    /*min-height:58px;*/
    padding:10px 20px;
    background:#ff7a00;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border-radius:12px;
    transition:.35s ease;
}


.domain-card .theme-btn:hover{

    background:#0b5fff;
    color:#fff;
    transform:translateY(-3px);
}


.domain-card .theme-btn:focus{

    color:#fff;
    text-decoration:none;
    outline:none;
}


.domain-card .theme-btn:active{

    transform:translateY(0);
}

.domain-search-section{
    padding:30px 0;
    background: #f7f9ff;
}

.domain-search-box{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.domain-search-box h2{

    color:#071c63;

    font-size:36px;

    margin-bottom:20px;

    font-weight:700;

}

.domain-search-wrapper{

    display:flex;

    overflow:hidden;

    border-radius:60px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.domain-search-wrapper input{

    flex:1;

    height:50px;

    border:none;

    outline:none;

    padding:0 30px;

    font-size:18px;

}

.domain-search-wrapper button{

    width:220px;

    border:none;

    background:#ff6b00;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    transition:.3s;

}

.domain-search-wrapper button:hover{

    background:#071c63;

}

.domain-extension-list{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:15px;

    margin-top:25px;

}

.extension-card{

    flex:1;

    min-width:110px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    border:1px solid #c5c5c582;

    border-radius:15px;

    text-align:center;

    padding:15px;

    transition:.3s;

}

.extension-card:hover{

    transform:translateY(-5px);

    background:#fff;

}

.extension-card:hover .extension-name{

    color:#071c63;

}

.extension-card:hover .extension-price{

    color:#ff6b00;

}

.extension-name{

    display:block;

    color:#071c63;

    font-size:22px;

    font-weight:700;

}

.extension-price{

    display:block;

    color:#071c63;

    font-size:18px;

    margin-top:6px;

    font-weight:600;

}

.extension-card.featured{

    border:2px solid #ff6b00;

}

/*-------------------------------------------------------------
            Responsive
--------------------------------------------------------------*/

/*==================================================
4K Screens (3840px+)
==================================================*/

@media (min-width:3000px){

    .container{
        max-width:2400px;
    }

    /*==================================
    Common Section
    ==================================*/

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:70px 0;
    }

    .service-section-header{
        margin-bottom:30px;
    }

    .service-section-header h2{
        font-size:62px;
        line-height:1.2;
    }

    .service-section-header p{
        font-size:28px;
        max-width:1200px;
        margin:auto;
    }

    /*==================================
    Hero
    ==================================*/

    .service-hero{
        min-height:700px;
    }

    .service-hero-wrapper{
        grid-template-columns:1.6fr .8fr 1fr;
        gap:80px;
    }

    .service-hero-content h1{
        font-size:62px;
    }

    .service-hero-content p{
        font-size:28px;
        max-width:900px;
    }

    .hero-feature{
        font-size:24px;
        gap:18px;
    }

    .hero-feature i{
        font-size:24px;
    }

    .hero-buttons{
        gap:30px;
        margin-top:30px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        padding:20px 40px;
        font-size:22px;
        border-radius:16px;
    }

    .service-hero-image img{
        max-width:650px;
    }

    /*==================================
    Form
    ==================================*/

    .service-hero-form{
        padding:35px;
        border-radius:30px;
    }

    .service-hero-form p{
        font-size:34px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea{
        padding:18px 24px;
        font-size:20px;
    }

    .service-consult-btn{
        height:70px;
        font-size:22px;
    }

    .response-time{
        font-size:18px;
    }

    /*==================================
    Content
    ==================================*/

    .service-content-wrapper{
        gap:120px;
    }

    .service-content-left h2{
        font-size:60px;
    }

    .service-content-left p{
        font-size:24px;
    }

    .service-content-image{
        max-width:650px;
    }

    /*==================================
    Comparison Table
    ==================================*/

    .comparison-table-wrapper{
        max-width:1700px;
    }

    .comparison-table{
        max-width:1700px;
    }

    .comparison-heading h2{
        font-size:60px;
    }

    .comparison-table thead th{
        font-size:28px;
        padding:24px;
    }

    .comparison-table tbody td{
        font-size:24px;
        padding:22px;
    }

    /*==================================
    Pricing
    ==================================*/

    .pricing-scroll{
        gap:40px;
        padding:40px;
    }

    .pricing-card{
        flex:0 0 480px;
        min-height:500px;
    }

    .pricing-badge{
        font-size:20px;
        padding:12px 34px;
    }

    .pricing-header h3{
        font-size:38px;
    }

    .price{
        font-size:64px;
    }

    .price small{
        font-size:26px;
    }

    .regularprice{
        font-size:26px;
    }

    .regularprice del{
        font-size:32px;
    }
    
    .regularprice .currency {
    font-size: 32px;
}

    .pricing-features{
        padding:0 40px;
    }

    .pricing-features li{
        font-size:22px;
        margin-bottom:20px;
    }

    .pricing-features li i{
        font-size:22px;
    }

    .pricing-btn{
        margin:30px;
        height:72px;
        font-size:22px;
        border-radius:14px;
    }

    .pricing-benefits{
        gap:30px;
        margin-top:50px;
    }

    .benefit-item{
        padding:24px;
    }

    .benefit-item i{
        font-size:34px;
    }

    .benefit-item span{
        font-size:22px;
    }

    /*==================================
    Why Choose
    ==================================*/

    .why-choose-top-grid{
        gap:28px;
    }

    .why-top-card{
        padding:35px;
    }

    .why-top-icon{
        width:90px;
        height:90px;
        font-size:40px;
    }

    .why-top-card h3{
        font-size:22px;
    }

    .why-choose-bottom-grid{
        gap:30px;
    }

    .why-bottom-card{
        padding:35px;
    }

    .why-bottom-icon{
        width:80px;
        height:80px;
        min-width:80px;
        font-size:36px;
    }

    .why-bottom-content h3{
        font-size:26px;
    }

    .why-bottom-content p{
        font-size:20px;
    }

    /*==================================
    FAQ
    ==================================*/

    .service-faq-wrapper{
        gap:30px 60px;
    }

    .service-faq-question{
        padding:32px;
        font-size:28px;
    }

    .service-faq-answer{
        padding:0 32px;
    }

    .service-faq-item.active .service-faq-answer{
        padding:0 32px 32px;
    }

    .service-faq-answer p{
        font-size:22px;
        line-height:2;
    }

    .service-faq-question i{
        font-size:26px;
    }
    
    .domain-section{
    padding:100px 0;
}

.domain-section-title{
    max-width:1200px;
    margin-bottom:70px;
}

.domain-section-title h2{
    font-size:72px;
}

.domain-section-title p{
    font-size:28px;
}

.domain-grid{
    gap:50px;
}

.domain-grid5{
    gap:50px;
}

.domain-grid6{
    gap:50px;
}

.domain-card{
    padding:50px;
    border-radius:30px;
}

.domain-icon{
    width:100px;
    height:100px;
    font-size:40px;
    margin-bottom:35px;
}

.domain-card h3{
    font-size:34px;
}

.domain-card p{
    font-size:22px;
}

.domain-card .theme-btn{
    max-width:280px;
    padding:18px 30px;
    font-size:22px;
}


}

/*==================================================
2560px Screens
==================================================*/

@media (min-width:2200px) and (max-width:2999px){

    .container{
        max-width:1800px;
    }

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:70px 0;
    }

    .service-section-header{
        margin-bottom:45px;
    }

    .service-section-header h2{
        font-size:56px;
    }

    .service-section-header p{
        font-size:24px;
        max-width:1000px;
    }

    /* Hero */

    .service-hero{
        min-height:600px;
    }

    .service-hero-wrapper{
        gap:60px;
    }

    .service-hero-content h1{
        font-size:56px;
    }

    .service-hero-content p{
        font-size:22px;
        max-width:800px;
    }

    .hero-feature{
        font-size:20px;
    }

    .hero-feature i{
        font-size:20px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        font-size:20px;
        padding:18px 34px;
    }

    .service-hero-image img{
        max-width:600px;
    }

    .service-hero-form{
        padding:28px;
    }

    .service-hero-form p{
        font-size:30px;
    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea{
        padding:16px 20px;
        font-size:18px;
    }

    /* Content */

    .service-content-wrapper{
        gap:80px;
    }

    .service-content-left h2{
        font-size:50px;
    }

    .service-content-left p{
        font-size:20px;
    }

    .service-content-image{
        max-width:550px;
    }

    /* Comparison */

    .comparison-table-wrapper{
        max-width:1400px;
    }

    .comparison-heading h2{
        font-size:50px;
    }

    .comparison-table thead th{
        font-size:24px;
    }

    .comparison-table tbody td{
        font-size:20px;
    }

    /* Pricing */

    .pricing-card{
        flex:0 0 420px;
        min-height:500px;
    }

    .pricing-header h3{
        font-size:32px;
    }

    .price{
        font-size:54px;
    }

    .price small{
        font-size:22px;
    }

    .pricing-features li{
        font-size:19px;
    }

    .pricing-btn{
        height:64px;
        font-size:20px;
    }

    .benefit-item span{
        font-size:18px;
    }

    /* Why Choose */

    .why-top-card{
        padding:28px;
    }

    .why-top-icon{
        width:75px;
        height:75px;
        font-size:34px;
    }

    .why-top-card h3{
        font-size:19px;
    }

    .why-bottom-card{
        padding:28px;
    }

    .why-bottom-icon{
        width:70px;
        height:70px;
        font-size:30px;
    }

    .why-bottom-content h3{
        font-size:22px;
    }

    .why-bottom-content p{
        font-size:18px;
    }

    /* FAQ */

    .service-faq-question{
        font-size:22px;
        padding:28px;
    }

    .service-faq-answer p{
        font-size:18px;
    }
    
    .domain-section{
    padding:80px 0;
}

.domain-section-title h2{
    font-size:56px;
}

.domain-section-title p{
    font-size:22px;
}

.domain-grid{
    gap:40px;
}

.domain-grid5{
    gap:40px;
}

.domain-grid6{
    gap:40px;
}

.domain-card{
    padding:40px 30px;
}

.domain-icon{
    width:80px;
    height:80px;
    font-size:34px;
}

.domain-card h3{
    font-size:28px;
}

.domain-card p{
    font-size:18px;
}

.domain-card .theme-btn{
    max-width:250px;
    font-size:19px;
    padding:15px 24px;
}


}

/*==================================================
1920px Screens
==================================================*/

@media (min-width:1600px) and (max-width:2199px){

    .container{
        max-width:1500px;
    }

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:40px 0;
    }

    .service-section-header h2{
        font-size:46px;
    }

    .service-section-header p{
        font-size:20px;
    }

    /* Hero */

    .service-hero{
        min-height:500px;
    }

    .service-hero-wrapper{
        gap:40px;
    }

    .service-hero-content h1{
        font-size:48px;
    }

    .service-hero-content p{
        font-size:18px;
    }

    .hero-feature{
        font-size:17px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        padding:15px 28px;
        font-size:17px;
    }

    .service-hero-image img{
        max-width:500px;
    }

    .service-hero-form{
        padding:22px;
    }

    /* Content */

    .service-content-left h2{
        font-size:42px;
    }

    .service-content-left p{
        font-size:18px;
    }

    .service-content-image{
        max-width:580px;
    }

    /* Comparison */

    .comparison-table-wrapper{
        max-width:1200px;
    }

    .comparison-heading h2{
        font-size:42px;
    }

    .comparison-table thead th{
        font-size:20px;
    }

    .comparison-table tbody td{
        font-size:17px;
    }

    /* Pricing */

    .pricing-card{
        flex:0 0 360px;
        min-height:500px;
    }

    .pricing-header h3{
        font-size:26px;
    }

    .price{
        font-size:42px;
    }

    .price small{
        font-size:18px;
    }

    .pricing-features li{
        font-size:16px;
    }

    .pricing-btn{
        font-size:16px;
        height:56px;
    }

    /* Benefits */

    .benefit-item{
        padding:18px;
    }

    .benefit-item span{
        font-size:16px;
    }

    /* Why Choose */

    .why-top-card{
        padding:22px;
    }

    .why-top-card h3{
        font-size:16px;
    }

    .why-bottom-card{
        padding:22px;
    }

    .why-bottom-content h3{
        font-size:18px;
    }

    .why-bottom-content p{
        font-size:15px;
    }

    /* FAQ */

    .service-faq-question{
        font-size:19px;
    }

    .service-faq-answer p{
        font-size:16px;
    }
    
    .domain-section{
    padding:60px 0;
    }
    
    .domain-grid{
        gap:35px;
    }
    
    .domain-grid5{
        gap:35px;
    }
    
    .domain-grid6{
        gap:35px;
    }
    
    .domain-card{
        padding:35px 25px;
    }

}

/*==================================================
1440px Screens
==================================================*/

@media (max-width:1440px){

    .container{
        max-width:1240px;
    }

    /* Sections */

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:30px 0;
    }

    /* Hero */

    .service-hero{
        min-height:450px;
    }

    .service-hero-wrapper{
        grid-template-columns:1.5fr .75fr .9fr;
        gap:30px;
    }

    .service-hero-content h1{
        font-size:36px;
    }

    .service-hero-content p{
        font-size:17px;
        max-width:560px;
    }

    .hero-feature{
        font-size:15px;
    }

    .hero-buttons{
        gap:15px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        font-size:15px;
        padding:12px 24px;
    }

    .service-hero-image img{
        max-width:400px;
    }

    .service-hero-form{
        padding:18px;
    }

    /* Content */

    .service-content-wrapper{
        gap:50px;
    }

    .service-content-left h2{
        font-size:34px;
    }

    .service-content-left p{
        font-size:16px;
    }

    .service-content-image{
        max-width:450px;
    }

    /* Comparison */

    .comparison-heading h2{
        font-size:34px;
    }

    .comparison-table-wrapper{
        max-width:1100px;
    }

    .comparison-table thead th{
        font-size:17px;
    }

    .comparison-table tbody td{
        font-size:15px;
    }

    /* Pricing */

    .service-section-header h2{
        font-size:36px;
    }

    .service-section-header p{
        font-size:17px;
    }

    .pricing-card{
        flex:0 0 310px;
        min-height:400px;
    }

    .pricing-header h3{
        font-size:22px;
    }

    .price{
        font-size:34px;
    }

    .price small{
        font-size:16px;
    }

    .pricing-features li{
        font-size:15px;
    }

    .pricing-btn{
        font-size:15px;
    }

    /* Benefits */

    .pricing-benefits{
        gap:16px;
    }

    .benefit-item{
        padding:14px;
    }

    .benefit-item span{
        font-size:14px;
    }

    /* Why Choose */

    .why-choose-top-grid{
        grid-template-columns:repeat(5,1fr);
    }

    .why-choose-bottom-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-top-card{
        padding:18px;
    }

    .why-bottom-card{
        padding:18px;
    }

    /* FAQ */

    .service-faq-question{
        font-size:17px;
        padding:20px;
    }

    .service-faq-answer p{
        font-size:16px;
    }
    
    .domain-grid{
        gap:25px;
    }
    
    .domain-grid5{
        gap:25px;
    }
    
    .domain-grid6{
        gap:25px;
    }

/*.domain-card{*/
/*    padding:28px 20px;*/
/*}*/
}

/*==================================================
1366px Screens
==================================================*/

@media (max-width:1366px){

    .container{
        max-width:1240px;
    }

    .service-hero{
        min-height:350px;
    }

    .service-hero-wrapper{
        grid-template-columns:1.45fr .75fr .9fr;
        gap:25px;
    }

    .service-hero-content h1{
        font-size:30px;
    }

    .service-hero-content p{
        font-size:16px;
    }

    .hero-feature{
        font-size:14px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        font-size:15px;
        padding:11px 22px;
    }

    .service-hero-image img{
        max-width:350px;
    }

    .service-hero-form{
        padding:16px;
    }

    .service-content-wrapper{
        gap:45px;
    }

    .service-content-left h2{
        font-size:32px;
    }

    .service-content-left p{
        font-size:15px;
    }

    .service-content-image{
        max-width:450px;
    }

    .comparison-heading h2{
        font-size:32px;
    }

    .comparison-table thead th{
        font-size:16px;
    }

    .comparison-table tbody td{
        font-size:14px;
    }

    .service-section-header h2{
        font-size:32px;
    }

    .service-section-header p{
        font-size:16px;
    }

    .pricing-card{
        flex:0 0 300px;
        min-height:400px;
    }

    .pricing-header h3{
        font-size:20px;
    }

    .price{
        font-size:30px;
    }

    .price small{
        font-size:15px;
    }

    .pricing-features li{
        font-size:14px;
    }

    .pricing-btn{
        font-size:14px;
        padding:10px 20px;
    }

    .pricing-benefits{
        gap:15px;
    }

    .benefit-item{
        padding:13px;
    }

    .benefit-item span{
        font-size:13px;
    }

    .why-choose-top-grid{
        grid-template-columns:repeat(5,1fr);
    }

    .why-choose-bottom-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-top-card{
        padding:16px;
    }

    .why-bottom-card{
        padding:16px;
    }
    
    .service-why-choose .service-section-header h2{
        font-size:32px;
    }

    .service-faq-question{
        font-size:16px;
        padding:18px;
    }
    
    .domain-section-title h2{
    font-size:32px;
}

.domain-card h3{
    font-size:18px;
}

.domain-grid{
    gap:22px;
}

.domain-grid5{
    gap:22px;
}

.domain-grid6{
    gap:22px;
}

}

/*==================================================
1280px Screens
==================================================*/

@media (max-width:1280px){

    .container{
        max-width:1180px;
    }

    /* Sections */

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:30px 0;
    }

    /* Hero */

    .service-hero{
        min-height:350px;
    }

    .service-hero-wrapper{
        grid-template-columns:1.4fr .7fr .9fr;
        gap:25px;
    }

    .service-hero-content h1{
        font-size:30px;
    }

    .service-hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .hero-features{
        gap:8px 10px;
    }

    .hero-feature{
        font-size:12px;
    }

    .hero-feature i{
        font-size:14px;
    }

    .hero-buttons{
        gap:12px;
    }
    
    .domain-search-box h2{
        font-size:32px;
    }
    
    .service-primary-btn,
    .service-secondary-btn{
        padding:10px 20px;
        font-size:12px;
    }

    .service-hero-image img{
        max-width:240px;
    }

    /* Form */

    .service-hero-form{
        padding:15px;
    }

    .service-hero-form p{
        font-size:16px;
    }

    /* Content */

    .service-content-wrapper{
        gap:40px;
    }

    .service-content-left h2{
        font-size:32px;
    }

    .service-content-left p{
        font-size:16px;
    }

    .service-content-image{
        max-width:400px;
    }

    /* Comparison */

    .comparison-heading h2{
        font-size:32px;
    }

    .comparison-table thead th{
        font-size:15px;
    }

    .comparison-table tbody td{
        font-size:14px;
        padding:10px 16px;
    }

    /* Pricing */

    .service-section-header h2{
        font-size:32px;
    }

    .service-section-header p{
        font-size:16px;
    }

    .pricing-card{
        flex:0 0 290px;
        min-height:350px;
    }

    .pricing-header h3{
        font-size:20px;
    }

    .price{
        font-size:30px;
    }

    .pricing-features li{
        font-size:14px;
    }

    .pricing-btn{
        margin:15px;
        font-size:14px;
    }

    .pricing-benefits{
        grid-template-columns:repeat(5,1fr);
        gap:14px;
    }

    .benefit-item{
        padding:12px;
    }

    .benefit-item span{
        font-size:13px;
    }

    /* Why Choose */
    
    .service-why-choose .service-section-header h2{
        font-size:32px;
    }

    .why-choose-top-grid{
        grid-template-columns:repeat(5,1fr);
    }

    .why-choose-bottom-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .why-top-card{
        padding:18px 12px;
    }

    .why-bottom-card{
        padding:18px;
    }

    /* FAQ */

    .service-faq-wrapper{
        gap:16px 25px;
    }

    .service-faq-question{
        font-size:16px;
        padding:18px;
    }
    
    .domain-card h3{
        font-size:18px;
    }
    
    .domain-grid{
        grid-template-columns:repeat(4,1fr);
        gap:24px;
    }
    
    .domain-grid5{
        grid-template-columns:repeat(5,1fr);
        gap:24px;
    }
    
    .domain-grid6{
        grid-template-columns:repeat(3,1fr);
        gap:24px;
    }

}

/*==================================================
1024px Screens
==================================================*/


@media (max-width:1024px){

    .container{
        max-width:960px;
        padding:0 20px;
    }

    /* Sections */

    .service-hero,
    .service-content,
    .comparison-section,
    .service-pricing,
    .service-why-choose,
    .service-faq{
        padding:30px 0;
    }

    /* Hero */

    .service-hero{
        min-height:auto;
    }

    .service-hero-wrapper{

        display:grid;
        grid-template-columns:1fr;
        gap:40px;
        align-items:center;
        text-align:center;

    }

    .service-hero-content{
        order:1;
        width:100%;
    }

    .service-hero-image{

        order:2;

        display:flex;
        justify-content:center;
        align-items:center;

    }

    .service-hero-image img{

        width:100%;
        max-width:350px;
        height:auto;

    }

    .service-hero-form{

        order:3;

        width:100%;
        max-width:520px;

        margin:0 auto;

    }

    .service-hero-form .hero-form{

        padding:35px 30px;

        border-radius:20px;

        box-shadow:0 20px 50px rgba(0,0,0,.18);

    }

    .service-hero-form h3{

        font-size:28px;

        margin-bottom:10px;

    }

    .service-hero-form p{

        margin-bottom:25px;

    }

    .service-hero-form input,
    .service-hero-form select,
    .service-hero-form textarea{

        height:52px;

        font-size:15px;

        border-radius:10px;

    }

    .service-hero-form textarea{

        height:120px;

    }

    .service-hero-form button{

        height:54px;

        font-size:16px;

        border-radius:10px;

    }

    .service-hero-content h1{

        font-size:30px;

        line-height:1.3;

    }

    .service-hero-content p{

        font-size:16px;

        max-width:750px;

        margin:20px auto;

    }

    .hero-features{

        grid-template-columns:repeat(2,1fr);

        gap:15px 30px;

        max-width:700px;

        margin:30px auto;

        text-align:left;

    }

    .hero-buttons{

        justify-content:center;

        gap:15px;

    }

    /* Content */

    .service-content-wrapper{

        grid-template-columns:1fr;

        gap:40px;

    }

    .service-content-left{

        text-align:center;

    }

    .service-content-right{

        display:flex;
        justify-content:center;

    }

    .service-content-image{

        max-width:400px;

    }

    /* Comparison */

    .comparison-table-wrapper{

        overflow-x:auto;

    }

    /*.comparison-table{*/

    /*    min-width:900px;*/

    /*}*/

    /* Pricing */

    .pricing-scroll{

        gap:20px;

    }

    .pricing-card{

        flex:0 0 320px;

    }

    .pricing-benefits{

        grid-template-columns:repeat(3,1fr);

    }

    /* Why Choose */

    .why-choose-top-grid{

        grid-template-columns:repeat(5,1fr);

    }

    .why-choose-bottom-grid{

        grid-template-columns:repeat(3,1fr);

    }
    
    .service-why-choose .service-section-header h2{
        font-size:32px;
    }

    /* FAQ */

    .service-faq-wrapper{

        grid-template-columns:1fr;

        gap:18px;

    }
    
    .domain-section{
    padding:40px 0;
}

.domain-section-title{
    margin-bottom:25px;
}

.domain-section-title h2{
    font-size:30px;
}

.domain-section-title p{
    font-size:16px;
}

.domain-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.domain-grid5{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.domain-grid6{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.domain-card{
    padding:25px 18px;
}

.domain-icon{
    width:55px;
    height:55px;
    font-size:22px;
}

.domain-card h3{
    font-size:18px;
}

}


/*==================================================
768px (Tablet)
==================================================*/

@media (max-width:768px){

    .container{
        max-width:720px;
        padding:0 15px;
    }

    .service-hero{
        min-height:auto;
        padding:50px 0;
    }

    .service-hero-wrapper{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .service-hero-content{
        order:1;
    }

    .service-hero-image{
        order:2;
    }

    .service-hero-form{
        order:3;
        max-width:550px;
        margin:0 auto;
    }

    .service-hero-content h1{
        font-size:30px;
    }

    .service-hero-content p{
        font-size:16px;
    }

    .hero-features{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .service-hero-image img{
        max-width:360px;
    }

    .service-content-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .service-content-left{
        text-align:center;
    }
    
    .service-content-description ul{

        grid-template-columns:1fr;

    }

    .service-content-right{
        justify-content:center;
    }

    .service-content-image{
        max-width:350px;
    }

    .comparison-heading h2,
    .service-section-header h2{
        font-size:30px;
    }
    
    .service-why-choose .service-section-header h2{
        font-size:30px;
    }

    /*.comparison-table{*/
    /*    min-width:850px;*/
    /*}*/

    .pricing-card{
        flex:0 0 300px;
    }

    .pricing-benefits{
        grid-template-columns:repeat(2,1fr);
    }

    .why-choose-top-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-choose-bottom-grid{
        grid-template-columns:1fr;
    }

    .service-faq-wrapper{
        grid-template-columns:1fr;
    }
    
    .domain-section{
    padding:50px 0;
}

.domain-section-title h2{
    font-size:28px;
}

.domain-section-title p{
    font-size:15px;
}

.domain-grid{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.domain-grid5{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.domain-grid6{
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.domain-card{
    padding:22px 16px;
}

.domain-icon{
    width:52px;
    height:52px;
    font-size:20px;
}

.domain-card h3{
    font-size:17px;
}

.domain-card p{
    font-size:14px;
}

.domain-card .theme-btn{
    font-size:15px;
}

.domain-search-wrapper{

        flex-direction:column;

        background:none;

        box-shadow:none;

        gap:15px;

    }

    .domain-search-wrapper input{

        width:100%;

        border-radius:10px;

    }

    .domain-search-wrapper button{

        width:100%;

        height:55px;

        border-radius:10px;

    }

    .domain-extension-list{

        justify-content:center;

    }

    .extension-card{

        min-width:140px;

    }

}


/*==================================================
576px
==================================================*/

@media (max-width:576px){

    .container{
        padding:0 15px;
    }

    .service-hero-content h1{
        font-size:30px;
    }

    .service-hero-content p{
        font-size:15px;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .service-primary-btn,
    .service-secondary-btn{
        width:100%;
    }

    .service-hero-image img{
        max-width:280px;
    }

    .service-content-left h2{
        font-size:28px;
    }
    
    .service-content-description ul{

        grid-template-columns:1fr;

    }

    .comparison-heading h2,
    .service-section-header h2{
        font-size:28px;
    }

    /*.comparison-table{*/
    /*    min-width:800px;*/
    /*}*/

    .pricing-card{
        flex:0 0 270px;
    }
    
    
    .quote-modal{

        width:95%;

        padding:15px;

        border-radius:20px;
    }

    .quote-modal h3{

        font-size:24px;
    }

    .quote-modal input,
    .quote-modal select{
        height:52px;
    }

    .quote-modal textarea{
        height:100px;
    }
    
    

    .pricing-benefits{
        grid-template-columns:1fr;
    }

    .benefit-item{
        justify-content:center;
    }

    .why-choose-top-grid{
        grid-template-columns:1fr;
    }

    .why-top-card{
        display:flex;
        align-items:center;
        text-align:left;
        gap:15px;
    }

    .why-top-icon{
        margin:0;
    }

    .why-bottom-card{
        flex-direction:column;
        text-align:center;
    }

.domain-section{
    padding:45px 0;
}

.domain-section-title{
    margin-bottom:20px;
}

.domain-section-title h2{
    font-size:26px;
}

.domain-section-title p{
    font-size:14px;
}

.domain-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.domain-grid5{
    grid-template-columns:1fr;
    gap:20px;
}

.domain-grid6{
    grid-template-columns:1fr;
    gap:20px;
}

.domain-card{
    padding:25px 18px;
}

.domain-card .theme-btn{
    max-width:100%;
}


}


/*==================================================
480px
==================================================*/

@media (max-width:480px){

    .service-hero{
        padding:40px 0;
    }

    .service-hero-content h1{
        font-size:28px;
    }

    .service-hero-content p{
        font-size:14px;
    }

    .service-hero-image img{
        max-width:250px;
    }

    .service-hero-form{
        padding:18px;
    }
    
    .service-content-description ul{

        grid-template-columns:1fr;

    }

    .service-content{
        padding:40px 0;
    }

    .service-content-left h2{
        font-size:26px;
    }

    .comparison-heading h2,
    .service-section-header h2{
        font-size:26px;
    }

    .pricing-card{
        flex:0 0 250px;
    }

    .pricing-header h3{
        font-size:20px;
    }

    .price{
        font-size:30px;
    }

    .pricing-features li{
        font-size:14px;
    }

    .service-faq-question{
        font-size:16px;
        padding:18px;
    }
    
    .domain-section{
    padding:40px 0;
}

.domain-section-title h2{
    font-size:24px;
}

.domain-section-title p{
    font-size:14px;
}

.domain-card{
    padding:22px 16px;
}

.domain-icon{
    width:50px;
    height:50px;
    font-size:20px;
}

.domain-card h3{
    font-size:18px;
}

.domain-card p{
    font-size:14px;
}

.domain-card .theme-btn{
    font-size:15px;
    padding:11px 18px;
}

}


/*==================================================
375px
==================================================*/

@media (max-width:375px){

    .service-hero-content h1{
        font-size:24px;
    }

    .hero-feature{
        font-size:14px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        font-size:14px;
        padding:12px;
    }

    .service-content-left h2{
        font-size:24px;
    }
    
    .service-content-description ul{

        grid-template-columns:1fr;

    }

    .comparison-heading h2,
    .service-section-header h2{
        font-size:24px;
    }

    .pricing-card{
        flex:0 0 230px;
    }

    .price{
        font-size:28px;
    }

    .pricing-header h3{
        font-size:18px;
    }

    .benefit-item span{
        font-size:14px;
    }

    .service-faq-question{
        font-size:15px;
    }
    
    .domain-section-title h2{
    font-size:22px;
}

.domain-section-title p{
    font-size:13px;
}

.domain-card{
    padding:20px 15px;
}

.domain-icon{
    width:46px;
    height:46px;
    font-size:18px;
}

.domain-card h3{
    font-size:16px;
}

.domain-card p{
    font-size:13px;
}

.domain-card .theme-btn{
    font-size:14px;
    padding:10px 16px;
}

}


/*==================================================
320px
==================================================*/

@media (max-width:320px){

    .container{
        padding:0 12px;
    }

    .service-hero-content h1{
        font-size:22px;
        line-height:1.3;
    }

    .service-hero-content p{
        font-size:13px;
    }

    .hero-feature{
        font-size:13px;
    }

    .service-primary-btn,
    .service-secondary-btn{
        font-size:13px;
        padding:10px;
    }

    .service-hero-image img{
        max-width:220px;
    }

    .service-content-left h2{
        font-size:22px;
    }
    
    .service-content-description ul{

        grid-template-columns:1fr;

    }

    .comparison-heading h2,
    .service-section-header h2{
        font-size:22px;
    }

    .pricing-card{
        flex:0 0 210px;
    }

    .pricing-header{
        padding:18px;
    }

    .pricing-header h3{
        font-size:17px;
    }

    .price{
        font-size:24px;
    }

    .pricing-features{
        padding:0 18px;
    }

    .pricing-features li{
        font-size:13px;
    }

    .pricing-btn{
        margin:15px;
        font-size:13px;
    }

    .benefit-item{
        padding:12px;
    }

    .benefit-item span{
        font-size:13px;
    }

    .service-faq-question{
        padding:16px;
        font-size:14px;
    }
    
    .domain-section{
    padding:35px 0;
}

.domain-section-title h2{
    font-size:20px;
}

.domain-section-title p{
    font-size:12px;
}

.domain-card{
    padding:18px 14px;
}

.domain-icon{
    width:42px;
    height:42px;
    font-size:16px;
    margin-bottom:18px;
}

.domain-card h3{
    font-size:15px;
}

.domain-card p{
    font-size:12px;
    line-height:1.7;
}

.domain-card .theme-btn{
    font-size:13px;
    padding:10px 14px;
}

}

