:root {
    --b-color: #f7b214;
}


/* Small devices (landscape phones, 576px and down) */

@media (max-width: 575px) {
    .dmoain.sec-3 table tr td {
        display: flex;
        align-items: center;
        -webkit-box-align: center;
    }
    .dmoain.sec-3 table tr td:before {
        content: attr(data-value);
        display: block;
        width: 50%;
    }

    .shared-hosting .big {
        font-size: 9vw;
        font-weight: bold;
    }

    .shared-hosting .semi-big {
        font-size: 5vw;
        font-weight: bold;
    }
}


/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
    .wrap .title {
        height: 58px;
    }
    .wrap .subtitle {
        height: 120px;
    }
    .summary {
        height: 75px;
    }
    .shared-hosting .big {
        font-size: 5vw;
        font-weight: bold;
    }

    .shared-hosting .semi-big {
        font-size: 3vw;
        font-weight: bold;
    }
}


/* Large devices (desktops, 992px and up) */

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


/* X-Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}


/* XX-Large devices (larger desktops, 1400px and up) */

@media (min-width: 1400px) {}

.btn-custom {
    background-color: var(--b-color);
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link.btn-custom {
    padding: 0.25rem .75rem;
}

.btn-white {
    background-color: #fff;
}

.bg-custom {
    background-color: var(--b-color) !important;
}

.img-header {
    max-width: 577px;
    max-height: 420px;
}

.text-custom {
    color: var(--b-color);
}

.fs-14 {
    font-size: 14px;
}

.fw-600 {
    font-weight: 600;
}

.faq-img {
    height: 280px;
    width: auto;
}


/* NAVBAR */

.navbar {
    transition: .25s;
}

.navbar-brand img {
    height: 35px;
    width: auto;
    margin-top: -3px;
}

.navbar-custom .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.navbar-custom .navbar-nav .nav-link.btn-custom {
    color: var(--b-color);
    background-color: #fff;
}

.dropdown-menu {
    border-radius: 6px;
    border: unset;
    box-shadow: 5px 0 10px #00000010;
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background-color: #fff;
    margin: 1px;
}

.wrap {
    display: block;
    color: #212529;
    text-decoration: unset;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px #00000010;
    overflow: hidden;
    transition: .25s;
    margin: 15px 0;
}

.wrap:not(.not-hover):hover {
    color: #212529;
    box-shadow: 0 0 15px #00000020;
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -o-transform: translateY(-3px);
}

.wrap .desc {
    padding: 20px 25px;
    background-color: #fff;
}

.wrap .img {
    width: 100%;
    height: 170px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.box-accordion .box-collapse {
    border-radius: 5px;
    box-shadow: 0 0 10px #00000010;
    padding: 10px 20px;
    margin-bottom: 25px;
    border: unset;
}

.box-accordion .box-collapse .btn-collapse {
    border: unset;
    width: 100%;
    text-align: left;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--b-color);
    transition: .25s;
}

.box-accordion .box-collapse .btn-collapse.collapsed {
    color: unset;
}

.box-accordion .box-collapse .btn-collapse i {
    transform: rotate(180deg);
    transition: .25s;
}

.box-accordion .box-collapse .btn-collapse.collapsed i {
    transform: rotate(0);
}


/* HOME */

.head {
    /* background-color: var(--b-color); */
    background-image: linear-gradient(to bottom, var(--b-color), #f7b21490);
    padding-top: 75px;
}

.package hr {
    height: 2px;
    border-radius: 10px;
    opacity: .75;
    margin: 1.50rem 1.5rem;
}


/* FOOTER */

footer img.logo {
    height: 45px;
    width: auto;
}

footer a {
    text-decoration: none;
}

footer a,
footer a:hover {
    color: unset;
}

footer a.contact:hover {
    text-decoration: underline;
}

footer .contact {
    display: block;
    margin: 5px 0;
}

footer .contact div {
    display: inline-block;
    width: 23px;
}

footer .box-sosmed {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--b-color);
    color: #fff;
    font-size: 22px;
    margin-right: 5px;
}

footer .link a:hover {
    text-decoration: underline;
}


/* FIND DOMAIN */

.dmoain.sec-1 {}

table {
    border-collapse: unset;
    border-spacing: 0 10px;
}

table tr:first-child td:first-child,
table tr:first-child th:first-child {
    border-top-left-radius: 5px;
}

table tr:first-child td:last-child,
table tr:first-child th:last-child {
    border-top-right-radius: 5px;
}

table tr:last-child td:first-child,
table tr:last-child th:first-child {
    border-bottom-left-radius: 5px;
}

table tr:last-child td:last-child,
table tr:last-child th:last-child {
    border-bottom-right-radius: 5px;
}

table tbody tr {
    margin: 6px 0;
    border-radius: 3px;
    overflow: hidden;
}

table {
    border-collapse: unset;
    border-spacing: 0 10px !important;
}

table tr th {
    color: #fff
}

table tr th {
    padding: 8px 12px;
}

table tr td {
    padding: 10px 12px;
}

table thead tr {
    background-color: var(--b-color);
}

table tbody tr {
    box-shadow: 0 0 10px #00000010;
    transition: .25s;
}

table tbody tr:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 12px #00000015;
}

.contact .btn-circle-custom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--b-color);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6px;
}


/* LOGIN */

.login.sec-1 {
    min-height: calc(100vh - 65px);
    max-width: 400px;
}

.login .wrap {
    margin: 50px auto;
}

.login img {
    height: 45px;
    width: auto;
}


/* BLOG */

.blog.sec-1 span {
    color: rgba(0, 0, 0, .54);
    font-size: 15px;
}

.blog .circle {
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: rgba(0, 0, 0, .54);
    border-radius: 50%;
}


/* SHARED HOSTING */

.shared-hosting.sec-1 h5 {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-hosting.head {
    height: 100vh;
    position: relative;
}

.shared-hosting .position-absolute {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(247, 178, 20, 0.9)
}

.fixed-top {
    position: fixed;
}
