:root {
    --mainColor: #0569C2;
    --mainColorB: #075AA6;
    --subColor: #FC9E20;
    --redColor: #E20702;
    --bgWebsite: #F0F5FC;
    --font-Poppins: 'Fz Poppins';
    --font-Poppins-SemiBold: 'Fz Poppins SemiBold';
    --font-Poppins-Bold: 'Fz Poppins Bold';
}

img {
    -webkit-user-drag: none;
    user-drag: none;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.bg-main {
    background: var(--mainColor);
}

.bg-main-opa2 {
    background: #bcd5f8;
}

@-webkit-keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(8deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    70% {
        transform: rotate(8deg);
    }

    80% {
        transform: rotate(-8deg);
    }

    90% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(8deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    70% {
        transform: rotate(8deg);
    }

    80% {
        transform: rotate(-8deg);
    }

    90% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.ringRing {
    -webkit-animation: phone-shake 1s infinite;
    animation: phone-shake 1s infinite;
    transform-origin: center center;
}

#nina-wrapper {
    font-family: var(--font-Poppins);
    font-size: 14px;
    background-color: var(--bgWebsite);
}

.wrap-content {
    max-width: 1310px;
    margin: auto;
    padding: 0px 10px;
}

#nina-slider {
    background: url(../imgs/bg_header2.png) no-repeat center top / 100% 100%;
    padding-top: 240px;
}

#nina-slider .wrap-content {
    max-width: 1600px;
}

#nina-top-header {
    background-color: #0461aa;
    position: relative;
    z-index: 61;
}

#nina-nav-menu {
    padding: 10px 0px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 60;
    top: 0px;
    transition: all .5s;
}

#nina-nav-menu.menuPageIn,
#nina-nav-menu.fixed {
    background: #027DC2;
    background: linear-gradient(90deg, rgba(2, 125, 194, 1) 0%, rgba(6, 96, 175, 1) 100%);
    padding: 5px 0px 10px;
    position: -webkit-sticky;
    position: sticky;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}

#nina-nav-menu.menuPageIn .nina-menu,
#nina-nav-menu.fixed .nina-menu,
#nina-nav-menu.onScroll .nina-menu {
    padding-top: 5px;
}

#nina-nav-menu.onScroll {
    background: #027DC2;
    background: linear-gradient(90deg, rgba(2, 125, 194, 1) 0%, rgba(6, 96, 175, 1) 100%);
    padding: 5px 0px 10px;
    transition: all .5s;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
}

.nina-logo,
.nina-logo-mobile {
    display: flex;
    align-items: end;
    gap: 17px;
}

.nina-logo img.logo1,
.nina-logo-mobile img.logo1 {
    height: 45px;
    width: auto;
    padding: 7px 8px;
    border-radius: 6px;
    box-shadow: 0px 0px 4px 0px rgb(197 18 42 / 30%);
    transition: all .3s;
}

.nina-logo img.logo1:hover,
.nina-logo-mobile img.logo1:hover {
    box-shadow: 0px 0px 7px 1px rgb(197 18 42 / 50%);
    transition: all .3s;
}

.nina-logo img.logo2,
.nina-logo-mobile img.logo2 {
    height: 45px;
    transition: all .3s;
}

.nina-logo img.logo2:hover,
.nina-logo-mobile img.logo2:hover {
    /*box-shadow: 0px 0px 7px 1px rgb(73 169 246 / 50%); transition: all .3s;*/
}

.line-logo {
    width: 1px;
    height: 40px;
    background: #F2F2f2;
    box-shadow: 1px 1px 5px 1px rgb(73 169 246 / 37%);
    position: relative;
    top: -5px;
}

ul.nina-menu>li {
    position: relative;
}

ul.nina-menu>li>a {
    color: #333;
    text-transform: capitalize;
    font-weight: 300;
}

ul.nina-menu>li:hover>a,
ul.nina-menu>li>a.active {
    background-color: var(--mainColor);
    color: #fff;
}

ul.nina-menu>li>ul>li:hover a {
    color: var(--mainColor);
}

a.menuLogin {
    border-radius: 4px;
    transition: all .3s;
    background: transparent;
    border: 1px solid var(--mainColor);
    padding: 10px 15px;
}

ul.nina-menu>li:hover>a.menuLogin {
    background-color: var(--mainColor);
    transition: all .3s;
}

#menu-mobile {
    z-index: 200999;
}

.nina-menu-mobile {
    padding-top: 3px;
}

.btn-open-mobile {
    border: 1px solid var(--mainColor);
    border-radius: 4px;
    width: 40px;
    height: 35px;
    gap: 1px;
    flex-direction: column;
}

.btn-open-mobile>span {
    background-color: var(--mainColor);
    width: 60%;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    border-radius: 4px;
    transition: all .3s;
    background: transparent;
    border: 1px solid var(--mainColor);
    padding: 10px 20px;
    cursor: pointer;
    color: #333;
    font-family: var(--font-Poppins-SemiBold);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}

.dropdown-content a {
    color: black;
    text-transform: capitalize;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-top: 1px solid #f3f3f3;
}

.dropdown-content a:first-child {
    border-top: none;
}

.dropdown-content a:hover {
    background-color: #f2f2f2;
}

.dropdown-content.show {
    display: block;
}

.flex-slide {
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: space-between;
}

.flex-slide .col-l {
    width: 45%;
    display: flex;
    justify-content: end;
}

.flex-slide .col-r {
    flex: 1;
    position: relative;
    text-align: right;
    overflow: hidden;
}

.flex-slide .col-r img {
    position: relative;
    right: -20px;
}

.wrap-searchdomain {
    width: 100%;
    max-width: 626px;
    margin-top: 50px;
}

.frmSearchDomain h2 {
    color: var(--mainColor);
    font-family: var(--font-Poppins-Bold);
    font-size: clamp(25px, 4vw, 42px);
    text-transform: capitalize;
}

.frmSearchDomain .wrap-input {
    border-radius: 8px;
}

button#btnCheckDomain {
    background: var(--redColor);
    text-transform: capitalize;
    font-size: 16px;
    white-space: nowrap;
    min-width: 89px;
}

.nina-slide-domain i {
    color: var(--redColor);
}

.nina-slide-domain .gift-icon {
    background-color: var(--redColor);
    width: 20px;
    height: 20px;
}

.nina-slide-domain .gift-icon i {
    color: #fff;
}

.nina-domain-item>span:nth-child(1) {
    color: #444;
    font-weight: 200;
}

.nina-domain-item>span.font-bold {
    font-family: var(--font-Poppins-SemiBold);
}

#volume,
.volume {
    width: 40px !important;
    height: 40px !important;
    display: none;
    right: 138px !important;
    top: 16px !important;
}

#nina-support-page {
    background-color: #E2EEFF;
}

#nina-support-page h3 {
    font-family: var(--font-Poppins-Bold);
}

.nina-support-call a {
    color: #C5122A;
    font-family: var(--font-Poppins-SemiBold);
}

.nina-footer-item h3 {
    font-family: var(--font-Poppins-SemiBold);
    color: #4B5563;
}

.nina-title-introduce {
    font-family: var(--font-Poppins-SemiBold);
}

.nina-desc-introduce {
    color: #4B5563;
    font-size: 14px;
    line-height: 20px;
}

.nina-view-introduce a {
    border-color: var(--redColor);
}

.nina-view-introduce a:hover {
    border-color: var(--mainColor);
}

.bgDomain {
    background: url(../imgs/bg_banggia_domain.jpg) no-repeat center 10% / 100% auto;
}

#nina-service-page {
    padding: 20px 0px;
    position: relative;
}

.flex-services {
    display: flex;
    gap: 37px;
    align-items: center;
    position: relative;
}

.flex-services::before {
    content: '';
    position: absolute;
    width: calc(100% - 300px);
    height: 100%;
    background-color: #E8EFFF;
    top: 55px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.flex-services .col-l {
    flex: 1;
    position: relative;
    z-index: 2;
}

.flex-services .col-r {
    flex: 1;
    position: relative;
    z-index: 2;
}

.sloganHome {
    color: #BD1042;
    font-size: 15px;
    font-family: var(--font-Poppins-SemiBold);
    font-style: normal;
    margin-bottom: 20px;
    line-height: normal;
}

.sloganHome2 {
    margin-bottom: 10px;
}

.sloganHome3 {
    text-align: center;
    color: var(--subColor);
    margin-bottom: 10px;
}

.sloganWeb {
    margin-bottom: 0px;
    text-align: center;
}

.des-service .r2 {
    color: #0369C2;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(22px, 4vw, 45px);
    margin-bottom: 25px;
    font-style: normal;
    line-height: 55px;
    text-transform: capitalize;
}

.des-service .r3 {
    color: #464646;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.des-service .r3 p {
    margin-bottom: 1rem;
}

.itemService {
    border-radius: 22px;
    float: left;
    position: relative;
    overflow: hidden;
    background: #FFF;
    margin-bottom: 28px;
    top: 0px;
    transition: all .3s;
    box-shadow: 0 0 30px 0 #C1D2FC;
    width: calc(50% - 14px);
    min-height: 335px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.itemService:nth-child(1) .name h3,
.itemService:nth-child(4) .name h3 {
    color: #fff;
}

.itemService:nth-child(1),
.itemService:nth-child(4) {
    background: linear-gradient(180deg, #018AD8 0%, #0369C2 62.02%);
}

.itemService:nth-child(2),
.itemService:nth-child(4) {
    float: right;
}

.itemService:nth-child(2) {
    margin-top: 120px;
}

.itemService:last-child {
    margin-bottom: 0px;
}

.itemService a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    border-radius: 50%;
    background: linear-gradient(180deg, #018AD8 0%, #0369C2 62.02%);
    z-index: 1;
    transition: all .2s
}

.itemService .wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 2;
    position: relative;
}

.itemService .name h3 {
    color: #273986;
    transition: all .5s;
    text-align: center;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(14px, 3vw, 23px);
    font-style: normal;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 10px;
}

.itemService .desc {
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    font-family: 'Open Sans';
    line-height: 20px;
    margin-top: 0px;
    opacity: 0;
    height: 0px;
    transition: all .3s;
}

.itemService:hover {
    top: -7px;
    transition: all .3s;
    box-shadow: 1px 1px 30px 0 rgb(35, 148, 247);
}

.itemService:hover a::before {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    transition: all .2s;
}

.itemService:hover .name h3 {
    color: #fff;
    transition: all .3s;
    margin-bottom: 0px;
}

.itemService:hover .desc {
    opacity: 1;
    height: auto;
    margin-top: 18px;
    transition: all .3s;
}

h2.nameBangGia {
    color: #0369C2;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(24px, 4vw, 42px);
    font-style: normal;
    line-height: normal;
    text-transform: capitalize;
}

.nina-domain-box .desc {
    color: #464646;
    text-align: justify;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.itemDomain {
    padding: 18px 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 30px 0 #D5E3F6;
}

.itemDomain>span:nth-child(1) {
    color: #273986;
    font-family: var(--font-Poppins-SemiBold);
    font-size: 15px;
    font-style: normal;
    line-height: normal;
}

.itemDomain>span:nth-child(2) {
    color: #BD1042;
    text-align: right;
    font-family: var(--font-Poppins-SemiBold);
    font-size: 15px;
    font-style: normal;
    line-height: normal;
}

.nina-domain-box .nina-readmore a {
    box-shadow: 5px 9px 15px rgb(212 35 37 / 60%)
}

.bgHostWeb {
    background-image: url(../imgs/bg_banggia_head.png), url(../imgs/bg_banggia_foot.jpg);
    background-repeat: no-repeat;
    background-position: top center, bottom center;
    background-size: auto, auto;
}

.titleHome {
    color: #0369C2;
    text-align: center;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(26px, 5vw, 55px);
    font-style: normal;
    line-height: normal;
    text-transform: capitalize;
}

.titleHome2 {
    color: #fff;
}

.txtHome {
    color: #464646;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 910px;
    margin: auto;
    margin-top: 10px;
}

.txtHome2 {
    color: #fff;
}

.txtHomeWeb {
    margin-top: 0px;
    margin-bottom: 35px;
}

.nina-tabs-host .nav-list-item {
    border-radius: 8px;
    background-color: #fff !important;
    color: #222;
    font-family: var(--font-Poppins-SemiBold);
    font-size: 14px;
    padding: 13px 20px;
    font-style: normal;
}

.nav-list-item.active {
    color: var(--subColor) !important;
}

.nina-item-hosting-home {
    border-radius: 22px;
    position: relative;
    background: #FFF;
    box-shadow: 0px 0px 10px 0 rgb(228, 239, 254);
}

.nina-item-hosting-home .hosting-bonus {
    position: absolute;
    left: 30px;
    top: 0px;
    padding: 5px 6px;
    width: 50px;
    height: 170px;
    cursor: pointer;
    border-radius: 0 0 50px 50px;
    background: #FFBBBC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nina-item-hosting-home .hosting-bonus>div {
    transform: rotate(90deg);
}

.nina-item-hosting-home .hosting-bonus img {
    width: 37px;
    height: auto;
}

.nina-item-hosting-home .hosting-bonus .txt {
    font-size: 14px;
    line-height: 17px;
    white-space: nowrap;
    text-align: center;
    width: 128px;
    font-family: var(--font-Poppins-SemiBold);
}

.nina-item-hosting-home .nina-title-hosting {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.nina-item-hosting-home .nina-title-hosting .wrap {
    background: #FFB065;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    flex-direction: column;
    color: #222;
    font-size: 20px;
    line-height: 10px;
    font-style: normal;
}

.nina-item-hosting-home .nina-title-hosting .wrap::before {
    content: '';
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    background: linear-gradient(180deg, #FFEAD5 66.92%, rgba(255, 234, 213, 0.00) 100%);
    border-radius: 50%;
    z-index: 1;
}

.nina-item-hosting-home .nina-title-hosting .wrap p {
    position: relative;
    z-index: 2;
    margin-top: 17px;
}

.nina-item-hosting-home .nina-title-hosting .wrap h3 {
    position: relative;
    z-index: 2;
    font-family: var(--font-Poppins-Bold);
    font-size: 30px;
    line-height: normal;
    font-style: normal;
}

.nina-item-hosting-home .nina-price-hosting {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.nina-item-hosting-home .nina-text-price2 {
    color: #BD1042;
    text-align: center;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(2.2vw, 2.5vw, 36px);
    font-style: normal;
    line-height: 48px;
}

.nina-item-hosting-home .nina-body-hosting {
    color: #222;
}

.nina-item-hosting-home .nina-info-parameter-last {
    font-family: var(--font-Poppins-SemiBold);
    font-size: 16px;
}

a.btnGraHome {
    transition: all .3s;
    overflow: hidden;
    padding: 1px;
    border-radius: 50px;
    width: 100%;
    max-width: 250px;
    margin: 0px auto;
    color: #222;
    text-align: center;
    font-family: var(--font-Poppins-SemiBold);
    font-size: 14px;
    font-style: normal;
}

a.btnGraHome2 {
    color: var(--subColor);
    max-width: 310px;
}

a.btnGraHome::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #FC9E21;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(252, 158, 33, 1) 0%, rgba(212, 34, 37, 1) 100%);
}

a.btnGraHome>span {
    position: relative;
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    width: 100%;
    transition: all .3s;
}

a.btnGraHome:hover>span {
    background: #FC9E21;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(90deg, rgba(252, 158, 33, 1) 0%, rgba(212, 34, 37, 1) 100%);
}

.gridWeb {
    gap: 50px 20px;
}

.website-item {
    border-width: 3px;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 20px;
    position: relative;
    transition: all .3s;
    top: 0px;
    box-shadow: 10px 20px 30px 0 #D5E3F6;
}

.website-item h3.header-title {
    font-family: var(--font-Poppins-Bold);
    text-transform: uppercase;
    font-size: clamp(20px, 2vw, 29px);
}

.wrap-price-web {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrap-price-web span {
    color: #273986;
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: normal;
    font-weight: 500;
}

.wrap-price-web>div:nth-child(2) {
    color: #888;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.website-item .line-content {
    border-bottom: 1px dashed #EEE7E7;
}

.website-item .body-content h3 {
    font-size: 16px;
}

.website-item:hover {
    top: -7px;
    transition: all .3s;
    box-shadow: 1px 1px 20px 0 rgb(119, 190, 253);
}

.flex-uudiem {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.flex-uudiem .col-l {
    width: 46%;
}

.flex-uudiem .col-r {
    width: 46%;
}

.gridUudiem {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.itemUuDiem {
    border-radius: 10px;
    padding: 20px;
    position: relative;
    top: 0;
    transition: all .3s;
    background: #FFF;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 0 30px 0 #D5E3F6;
}

.itemUuDiem .img>span {
    border-radius: 10px;
}

.itemUuDiem h3 {
    color: #222;
    font-family: var(--font-Poppins-SemiBold);
    font-size: 15px;
    font-style: normal;
    line-height: normal;
}

.itemUuDiem:hover {
    top: -4px;
    transition: all .3s;
    box-shadow: 0px 0px 15px 0 rgb(119, 190, 253);
}

.bgQuestion {
    position: relative;
    padding: 130px 0px 60px;
    overflow: hidden;
    background-color: #E2EEFF;
    background-image: url(../imgs/ic_bg_cauhoi.png), url(../imgs/bg_cauhoi.png);
    background-repeat: no-repeat;
    background-position: left top, right bottom;
    background-size: auto, auto;
}

.ic_ques1 {
    position: absolute;
    left: 0px;
    top: 0px;
    background: url;
}

.ques-container {
    max-width: 950px;
    position: relative;
}

.ic_ques2 {
    position: absolute;
    right: -55px;
    top: -55px;
    background: url(../imgs/ic_bg_cauhoi1.png) no-repeat;
    width: 15px;
    height: 53px;
}

.ic_ques3 {
    position: absolute;
    right: -280px;
    top: 200px;
    background: url(../imgs/ic_bg_cauhoi2.png) no-repeat;
    width: 122px;
    height: 122px;
}

.ques-header {
    margin-bottom: 40px;
}

.ques-header .r1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ques-header .r2 {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.ques-header .r2 .col-l {
    width: 52%;
}

.ques-header .r2 .col-l>p:nth-child(1) {
    color: #046AC2;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(20px, 4vw, 40px);
    font-style: normal;
    line-height: normal;
}

.ques-header .r2 .col-l>p:nth-child(2) {
    color: #273986;
    font-size: clamp(20px, 4vw, 40px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.ques-header .r2 .col-r {
    width: 42%;
    padding-top: 5px;
    color: #464646;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.nina-question-box {
    padding: 10px 5px;
    margin-bottom: 1rem;
}

.nina-question-title h3 {
    color: #000;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(15px, 2vw, 18px);
    font-style: normal;
    line-height: normal;
}

#nina-process-page {
    padding: 100px 0px 275px;
    position: relative;
}

#nina-process-page .ic_bg1 {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0, -50%);
    background: url(../imgs/ic_bg_qt_l.png) no-repeat;
    width: 626px;
    height: 785px;
}

#nina-process-page .ic_bg2 {
    position: absolute;
    right: 0px;
    top: 8%;
    background: url(../imgs/ic_bg_qt_r.png) no-repeat;
    width: 291px;
    height: 570px;
}

#nina-process-page .ic_qt1 {
    position: absolute;
    left: -215px;
    top: 0px;
    background: url(../imgs/ic_bg_qt1.png) no-repeat;
    width: 83px;
    height: 100px;
}

#nina-process-page .ic_qt2 {
    position: absolute;
    left: -82px;
    bottom: -140px;
    background: url(../imgs/ic_bg_qt2.png) no-repeat;
    width: 114px;
    height: 108px;
}

#nina-process-page .ic_qt3 {
    position: absolute;
    left: -160px;
    bottom: -200px;
    background: url(../imgs/ic_bg_qt.png) no-repeat;
    width: 377px;
    height: 346px;
}

.wrap-process {
    position: relative;
    width: 930px;
    height: 835px;
    float: right;
    z-index: 9;
}

.contentProcess {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
}

.contentProcess .r1 {
    color: #404040;
    font-size: clamp(18px, 2.2vw, 25px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contentProcess .r2 {
    color: var(--mainColor);
    font-family: var(--font-Poppins-Bold);
    font-size: clamp(24px, 3.4vw, 40px);
    font-style: normal;
    line-height: normal;
}

.contentProcess .r3 {
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.itemProcess {
    position: absolute;
}

.stepProcess {
    position: absolute;
    transition: all .3s;
}

.itemProcess .bodyStepProcess {
    display: flex;
    gap: 20px;
    align-items: start;
    width: 320px;
    position: relative;
}

.itemProcess .img {
    width: 70px;
    text-align: center;
    padding-top: 20px;
}

.itemProcess .img img {
    max-width: 100%;
    height: auto;
}

.itemProcess .info {
    flex: 1;
}

.itemProcess .info .r1 {
    font-size: clamp(19px, 2vw, 25px);
    display: inline-block;
    font-style: normal;
    margin-bottom: 5px;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    background: #404CD8;
    background: linear-gradient(to right, #404CD8 0%, #B41FE7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.itemProcess .info .name {
    color: #000;
    font-family: var(--font-Poppins-SemiBold);
    font-size: clamp(16px, 1.8vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.itemProcess .info .desc {
    color: #000;
    height: 54px;
    overflow: hidden;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-top: 5px;
}

.itemProcess1 {
    top: 0px;
    left: 190px;
}

.itemProcess2 {
    top: 162px;
    right: 155px;
}

.itemProcess3 {
    top: 50%;
    right: 0px;
    transform: translate(0, -50%);
}

.itemProcess4 {
    bottom: 158px;
    right: 155px;
}

.itemProcess5 {
    bottom: 0px;
    left: 190px;
}

.stepProcess1 {
    left: -200px;
    bottom: -150px;
}

.stepProcess2 {
    left: -270px;
    bottom: -98px;
}

.stepProcess3 {
    left: -247px;
    top: -25px;
}

.stepProcess4 {
    left: -270px;
    top: -128px;
}

.stepProcess5 {
    left: -190px;
    top: -170px;
}

#nina-search-domain-page1 {
    top: 60px;
}

.nina-footer-info:nth-child(1) {
    width: 20%;
}

.nina-footer-info:nth-child(2) {
    width: 78%;
}

.footer-title {
    font-family: var(--font-Poppins-SemiBold);
}

/* begin: overwrite css */

.bg-l-sub {
    border-color: var(--redColor);
}

.td-border-x,
.border-x-\[\#edb7bf\] {
    border-color: #bcd5f8;
}

.even\:bg-\[\#FAEDEF\]:nth-child(even) {
    background-color: #E2EEFF;
}

.bg-\[\#FAEDEF\] {
    background-color: #E2EEFF;
}

.bg-\[\#edb7bf\] {
    background-color: #bcd5f8;
}

.bg-\[\#DB3C51\] {
    background-color: var(--mainColor);
}

.nina-table-article table thead th {
    background-color: var(--mainColor);
}

.nina-table-article {
    background-color: #E2EEFF;
}

.nina-table-article table thead th,
.nina-table-article table tbody td {
    border-color: #E2EEFF;
}

.content-detail table tr:nth-child(1) td {
    background: var(--mainColor);
}

.content-detail h3 {
    color: var(--mainColor);
}

.bgSupport {
    background: #0C8CE9;
    background: linear-gradient(145deg, rgba(12, 140, 233, 1) 0%, rgba(6, 96, 175, 1) 100%);
}

.contact-detail span:nth-child(2),
.contact-detail span:nth-child(4) {
    color: var(--mainColor);
}

.btn-katy {
    background-color: var(--mainColor);
}

.nina-domain-top-result .item.no-exists .nina-name .i span:nth-child(2) {
    color: var(--mainColor);
}

.nina-domain-top-result .item.no-exists {
    border-left: 5px solid var(--redColor);
}

.extension li input[type=checkbox]:checked~label:before {
    background: var(--mainColor);
    border-color: var(--mainColor);
}

#nina-phone {
    background: var(--mainColorB);
    border-top-color: var(--mainColorB);
}

.odd\:bg-\[\#bd0019\]:nth-child(odd) {
    background: var(--mainColorB);
}

.lg\:even\:bg-\[\#bd0019\]:nth-child(even) {
    background: var(--mainColorB);
}

/* end: overwrite css */

@media (max-width:1200px) {
    .flex-slide .col-r img {
        right: 0px;
    }

    #nina-slider {
        padding-top: 150px;
        background-size: cover;
    }

    .ic_bg_ques {
        display: none;
    }

    .ic_bg_process {
        display: none;
    }
}

@media (max-width: 1024px) {
    #nina-phone {
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }

    #nina-nav-menu {
        padding: 8px 0px;
    }

    .nina-logo img {
        height: 60px;
    }

    #nina-slider {
        padding: 40px 0px 61px;
    }

    .flex-slide .col-l {
        width: 100%;
        justify-content: center;
    }

    .flex-slide .col-r {
        display: none;
    }

    .wrap-searchdomain {
        max-width: 800px;
    }

    button#btnCheckDomain {
        font-size: 14px;
        padding: 0px 14px;
    }

    .flex-services {
        flex-direction: column;
    }

    .flex-services::before {
        content: none
    }

    .flex-services .col-l {
        width: 100%;
    }

    .flex-services .col-r {
        width: 100%;
    }

    .des-service .r2 {
        line-height: 30px;
    }

    .itemService {
        width: calc(50% - 10px);
    }

    .itemService:hover {
        box-shadow: 0 0 30px 0 #C1D2FC;
        top: 0px;
    }

    .itemService:hover::before {
        content: none;
    }

    .itemService:hover .name h3 {
        color: initial;
    }

    .itemService:nth-child(2) {
        margin-top: 0px;
    }

    .flex-uudiem {
        flex-direction: column;
    }

    .flex-uudiem .col-l {
        width: 100%;
        display: none;
    }

    .flex-uudiem .col-r {
        width: 100%;
    }

    #nina-process-page {
        padding: 40px 0px;
    }

    .contentProcess {
        position: relative;
        top: 0px;
        transform: translate(0, 0);
        max-width: 100%;
        margin-bottom: 20px;
    }

    .wrap-process {
        width: 100%;
        height: auto;
        padding-bottom: 10px;
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        gap: 30px;
    }

    .itemProcess {
        position: relative;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .stepProcess {
        display: none;
    }

    .itemProcess {
        width: 200px;
    }

    .itemProcess3 {
        transform: translate(0, 0);
    }

    .itemProcess .bodyStepProcess {
        width: auto;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .itemProcess .info {
        text-align: center;
        flex: auto;
        width: 100%;
    }

    .itemProcess .img {
        width: 100%;
        height: 90px;
        text-align: center;
    }

    .itemProcess .img img {
        width: auto;
        max-height: 100%;
        margin: auto;
    }

    .itemProcess .info .desc {
        display: none;
    }

    #volume,
    .volume {
        right: 88px !important;
    }

    .nina-footer-info {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .nina-copyright {
        text-align: center;
        width: 100%;
        margin-top: 20px;
    }

    .nina-footer-info:nth-child(1),
    .nina-footer-info:nth-child(2) {
        width: 100%;
    }

    .nina-footer-info:nth-child(2) {
        text-align: center;
    }

    .nina-footer-info:nth-child(1) img {
        max-width: 250px;
    }
}

@media (max-width: 992px) {}

@media (max-width:768px) {
    .nina-item-hosting-home .nina-text-price2 {
        font-size: 30px;
        line-height: 38px;
    }

    .bgQuestion {
        background: #E2EEFF url(../imgs/bg_cauhoi.png) no-repeat right bottom;
        padding: 40px 20px;
    }
}

@media (max-width:640px) {
    .txtHome {
        font-size: 14px;
        line-height: 22px;
    }

    .nina-tabs-host .nav-list::-webkit-scrollbar {
        display: block;
        height: 1px;
    }

    .nina-tabs-host .nav-list {
        white-space: nowrap;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 5px;
    }

    .nina-tabs-host .nav-list>div {
        justify-content: start;
    }

    .gridUudiem {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ques-header .r2 {
        flex-direction: column;
    }

    .ques-header .r2 .col-l,
    .ques-header .r2 .col-r {
        width: 100%;
    }
}

@media (max-width:520px) {
    .itemService {
        padding: 15px;
        min-height: 150px;
    }

    .itemService .wrap {
        padding: 10px 0px;
    }

    .itemService .img {
        height: 90px;
    }

    .itemService .desc {
        display: none;
    }

    .website-item .body-content {
        padding: 0px 30px 30px;
    }

    .website-item .body-content h3 {
        font-size: 14px;
    }

    a.btnGraHome2 {
        max-width: 86%;
    }

    #domain-swiper>div.mx-10 {
        margin-left: 2rem;
        margin-right: 2rem;
    }
}