@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    box-sizing: border-box;
}
del {
    text-decoration: line-through;
}

.container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;
}

.main-header {
	background: #44340c;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 10;
	border-bottom: 1px solid #6e5e0e;
	box-shadow: 0 -3px 4px #919191;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-menu input,
.main-menu label {
    display: none;
}

.main-menu ul li {
    display: inline-block;
    padding: 20px 10px;
    cursor: pointer;
    position: relative;
}

.main-menu ul li a {
    transition: .3s;
}

.main-menu ul li:hover > a {
    color: #ecc817;
}

.main-menu ul li ul {
	position: absolute;
	background-color: #44340c;
	width: 225px;
	top: 50px;
	border: 1px solid #614e15;
    display: none;
}

.main-menu ul li:hover ul {
    display: block;
}

.main-menu ul ul li {
    display: block;
    padding: 10px 20px;
}

.main-menu ul ul li a {
    transition: .3s;
}

.main-menu ul ul li:hover a {
    color: #ecc817;
}

.main-menu ul li a {
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.main-menu .domain {
	position: absolute;
	padding: 30px;
	text-align: center;
	width: 800px;
	border: 1px solid #5c4a13;
	top: 35px;
	left: 15px;
	background: #f6f6f6;
	border-radius: 10px;
	box-shadow: 0 0 5px #000;
    color: #293a45;
    z-index: 8888;
    display: none;
}

.main-menu ul ul li:hover .domain {
    display: block;
}

.main-menu .domain form {
    width: 100%;
}

.main-menu .domain input,
.main-menu .domain select {
	display: inline-block;
	padding: 7px 12px;
	outline: none;
	border: 1px solid #564411;
}

.main-menu .domain input[type="submit"] {
	background: #ecc817;
	color: #333708;
	font-weight: 500;
    cursor: pointer;
}

.main-menu .domain h4 {
	font-size: 20px;
	margin-bottom: 7px;
	font-weight: 600;
}

.main-menu .domain h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 9px;
}

.main-menu .domain p {
	font-weight: 500;
	margin-bottom: 10px;
}


.header-search form input {
    padding: 8px;
    font-size: 16px;
    outline: none;
}

.header-search form input[type="submit"] {
    color: #293a45;
    background-color: #ecc817;
    border: 1px solid #ecc817;
}

.currency {
    color: #fff;
    font-weight: 600;
}

.currency li {
    cursor: pointer;
    padding: 20px 10px;
}

.user i {
    color: #ddd;
    font-size: 25px;
    cursor: pointer;
    padding: 10px 0px;
}

.currency ul li {
    position: relative;
    transition: .3s;
}

.currency ul li a {
    transition: .3s;
}

.currency ul li:hover > a {
    color: #ecc817;
}

.currency ul li ul {
	position: absolute;
	background-color: #44340c;
	border: 1px solid #614e15;
	width: 60px;
	text-align: center;
	top: 50px;
	left: -50%;
	transform: translateX(50%);
    display: none;
}

.currency ul li:hover ul {
    display: block;
}

.currency ul li ul li {
    padding: 10px;
    transition: .3s;
}

.currency ul li ul li:hover {
    color: #ecc817;
}

.user > li {
    position: relative;
}

.user li ul {
	position: absolute;
	background-color: #44340c;
	color: #fff;
	font-weight: 600;
	width: 150px;
	left: -80px;
	text-align: left;
	border: 1px solid #614e15;
    display: none;
}
.user > li:hover ul {
    display: block;
}

.user li ul li {
    padding: 10px 30px;
    transition: .3s;
    cursor: pointer;
}

.user li ul li:hover {
    color: #ecc817;
}

main {
    background: linear-gradient(259deg, #5e5015 7.09%, #44340c 71.14%);
}

.hero-area {
    position: relative;
    background: url(images/banner-bg-element.svg) 0 65% / cover;
    padding: 60px 0;

}

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-flex .left-side {
    width: 100%;
    color: #fff;
}

.hero-flex .right-side {
    width: 100%;
    text-align: center;
}

.hero-flex .right-side img {
    width: 70%;
}

.hero-flex .left-side h1 {
	font-size: 50px;
	margin-bottom: 10px;
	font-family: "Pacifico", cursive;
	font-weight: 500;
}

.hero-flex .left-side p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-flex .left-side input {
    padding: 10px 15px;
    outline: none;
}

.hero-flex .left-side input[type="search"] {
    max-width: 400px;
    border-radius: 7px 0 0 7px;
}

.hero-flex .left-side input[type="submit"] {
    background-color: #ecc817;
    border: 1px solid #ecc817;
    font-weight: 600;
    color: #293a45;
    cursor: pointer;
    border-radius: 0 7px 7px 0;
}

.hero-flex .left-side form {
    margin-bottom: 20px;
}

.hero-flex .hero-features ul {
    margin-bottom: 20px;
}

.hero-flex .hero-features li{
    font-weight: 500;
    margin-bottom: 5px;
}

.hero-flex .hero-features li span {
    margin-right: 5px;
}

.hero-flex .left-side button {
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    color: #293a45;
    background-color: #fff;
    border: 1px solid #fff;
}

.hero-flex .left-side .mark-btn {
    background-color: #ecc817;
    border: 1px solid #ecc817;
    margin-right: 10px;
}

.product_area {
    padding: 50px 0;
    text-align: center;
    background: #f6f6f6;
}

.section-title {
    margin-bottom: 10px;
}

.section-title h1 {
    color: #293a45;
    font-size: 40px;
    font-weight: 600;
    padding-bottom: 20px;
}

.package {
    padding: 25px;
    background: #fff;
    border: 1px solid #d0ccc2;
    border-radius: 5px;
    color: #293a45;
    transition: .3s;
    position: relative;
}

.package::after {
    content: "Cheapest";
    display: block;
    position: absolute;
    top: 50%;
    right: -31px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    background: #ea8042;
    border-radius: 5px 5px 0 0;
    color: #fff;
    transform: rotate(-90deg);
}

.package:hover {
    border: 1px solid #000;
}

.web-host-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ea8042;
}

.web-host-grid .package h2 {
	font-weight: 600;
	font-size: 28px;
	margin-bottom: 5px;
}

.web-host-grid .package h4 {
    font-weight: 600;
    color: #a1891d;
    margin-bottom: 8px;
}

.package .price p {
    font-weight: 600;
    font-size: 25px;
    color: #665217;
    margin-bottom: 12px;
}

.package button {
    padding: 8px 10px;
    width: 90%;
    font-size: 18px;
    color: #fff;
    background: #665217;
    border: 1px solid #44340c;
    border-radius: 6px;
    transition: .3s;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.package button:hover {
    background-color: #ffc107;
    color: #000;
    border: 1px solid #ffc107;
}

.package ul {
    text-align: left;
    padding-left: 20px;
}

.package ul li {
    margin-bottom: 4px;
    color: #000;
    font-size: 15px;
}

.package ul li span {
    padding-right: 6px;
}

.server-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-top: 30px;
}

.server-grid .package h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #293a45;
}

.server-grid .package p {
    font-size: 14px;
    font-weight: 500; 
}

.server-grid .package p del {
    color: #ff3535;
    font-size: 17px;
    margin-left: 4px;
}

.server-grid .package .price p {
    font-size: 25px;
    font-weight: 600;
}

.server-grid .package ul {
    margin-bottom: 25px;
}

.feature_area {
    padding: 50px 0;
    background-color: #f6f6f6;
    text-align: center;
}

.section-title p {
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap: 50px;
    padding: 0 50px;
}

.feature-card {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #d0ccc2;
    padding: 20px;
    border-radius: 10px;
    transition: .3s;
    color: #293a45;
}

.feature-card:hover {
   box-shadow: 10px 10px 10px #5b4d14;
}

.feature-card .card-img {
    margin-right: 20px;
}

.feature-card .card-img img {
    width: 70px;
}

.feature-card .card-text h4 {
    margin-bottom: 6px;
}


.operating-area {
    background: #f6f6f6;
    padding: 10px 0 50px;
    text-align: center;
}

.system-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 50px;
}

.system-card {
    padding: 30px;
    border: 1px solid #d0ccc2;
    border-radius: 10px;
    transition: .3s;
    color: #293a45;
}

.system-card:hover {
    box-shadow: 10px 10px 10px #5b4d14;
}

.system-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.server-location {
    padding: 0 50px;
    background-color: #f6f6f6;
    text-align: center;
}

.location-flex {
    display: grid;
    grid-template-columns: 1fr 1.5fr ;
    align-items: center;
    gap: 30px;
}

.location-flex .text-area {
	width: 100%;
	padding: 30px;
	color: #293a45;
	text-align: left;
	border: 1px solid #b5b3ae;
	border-radius: 10px;
}
.location-flex .text-area h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.location-flex .server-map {
    width: 100%;
    position: relative;
}

.location-flex .server-map > img {
    width: 100%;
    display: block;
}

.location-flex .server-map .flag {
    position: absolute;
}

.location-flex .server-map .flag::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #00b67a;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.location-flex .server-map .flag img {
    display: block;
    padding-top: 20px;
}

.one {
	top: 16%;
	left: 16%;
}
.two {
	top: 25%;
	left: 47%;
}
.three {
	top: 19%;
	right: 19%;
}
.four {
	left: 17%;
	top: 36%;
}
.five {
	right: 45%;
	top: 44%;
}
.six {
	right: 31%;
	top: 47%;
}
.seven {
	right: 23%;
	top: 34%;
}
.eight {
	bottom: 28%;
	left: 28%;
}
.nine {
	left: 50%;
	bottom: 13%;
}
.ten {
	bottom: 16%;
	right: 16%;
}

.f_a_q {
    padding: 50px 0;
    background-color: #f6f6f6;
}

.faq-grid {
	padding: 20px 100px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: center;
	border-radius: 10px;
	box-shadow: 0 0 7px black;
}

.faq-title h2 {
    font-weight: 600;
    margin-bottom: 5px;
}

.faq-title p span {
	font-size: 25px;
}

.faq-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 5px #ddd;
}

.faq-box details {
    padding: 15px;
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #F4F9FF 100%)
;
    color: #293a45;
    position: relative;
}

.faq-box details::before {
	content: "➕";
	display: block;
	position: absolute;
	top: 15px;
	right: 10px;
}

.faq-box details[open]::before {
    content: '➖';
}

.faq-box summary {
    font-weight: 700;
    cursor: pointer;
}

.faq-box p {
	padding-top: 15px;
	font-size: 15px;
	font-weight: 500;
}

.support-banner {
	padding: 50px 0;
}

.support-banner .container {
	width: 80%;
	border-radius: 15px;
	box-shadow: 0 10px 30px #00000036;
	display: flex;
	align-items: center;
	padding: 0 50px;
	position: relative;
}


.support-banner .container::before {
	content: "";
	position: absolute;
	max-width: 400px;
	height: 400px;
	background: #007bff17;
	border-radius: 50%;
	right: 50%;
	z-index: 0;
	transform: translateX(50%);
}


.content-area {
	flex: 1;
	z-index: 1;
}

.content-area h1 {
	font-size: 32px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.content-area p {
	color: #7f8c8d;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
}


.features {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.features li {
	margin-bottom: 10px;
	color: #555;
	display: flex;
	align-items: center;
}

.features li::before {
	content: '✔';
	color: #7a6e15; 
	font-weight: bold;
	margin-right: 10px;
	background: #f1f1f1;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 12px;
}


.btn-group {
	display: flex;
	gap: 15px;
}

.btn {
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	transition: 0.3s;
}

.btn-live {
	background-color: #6b5a1a; 
	color: white;
}

.btn-ticket {
	background-color: #5d4e12;
	color: white;
}

.btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}


.image-area {
	flex: 1;
	text-align: right;
	z-index: 1;
}

.image-area img {
	max-width: 100%;
	height: auto;
}


footer {
    position: relative;
    background-color: #6c500c;
    z-index: 0;
}

footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(images/footer__four__bg.svg) no-repeat center;
    position: absolute;
    z-index: -1;
}

.footer-top {
    color: #fff;
    padding: 60px 0px;
    padding-bottom: 30px;
}

.link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-around;
    padding: 0 70px;
    gap: 30px;
}

.company-details img {
    width: 80%;
    margin-bottom: 12px;
}

.company-details ul li {
    color: #faf7f7;
    font-weight: 500;
    margin-bottom: 10px;
}

.company-details ul li span {
    margin-right: 10px;
    color: #a78dff;
}

.social-links a {
    display: inline-block;
    padding: 8px;
    border: 1px solid #fff;
    color: #fff;
    margin-right: 10px;
    border-radius: 5px;
    transition: .3s;
    margin-top: 5px;
}

.social-links a:hover {
    /* color: #000; */
    border-color: #646901;
}



.social-links i {
    display: block;
    font-size: 18px;
}

.usefull-links {
    padding: 20px ;
}

.usefull-links h4 {
    font-size: 20px;
    font-style: italic;
    font-family: monospace;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px dashed #000;
}

.usefull-links li {
    padding: 8px 0;
    border-bottom: 2px dashed #293a45;
}

.usefull-links a{
    color: #c7bebe;
    font-weight: 600;
    margin-left: 5px;
    transition: .3s;
}

.usefull-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.quick-form {
    padding: 20px;
}

.quick-form h4 {
    font-size: 20px;
    font-style: italic;
    font-family: monospace;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px dashed #000;
}

.quick-form input ,
.quick-form textarea {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    background: transparent;
    outline: none;
    border: 1px solid #ddd;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.quick-form input[type="submit"] {
    font-size: 14px;
    width: 150px;
    padding: 7px;
    cursor: pointer;
}

.footer-bottom {
	padding: 10px 0;
	border-top: 1px dashed #000;
	background: #000000a6;
}

.copy-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    align-items: center;
    justify-content: space-between;
}

.copyright p {
    font-weight: 600;
}

.ftr-btm-img {
    text-align: right;
}

.ftr-btm-img img {
    width: 60%;
}


@media (max-width: 1260px) {
    .header-search {
        display: none;
    }
}

@media (max-width: 1230px) {
    .web-host-grid,
    .server-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
}

@media (max-width: 1200px) {
    .location-flex {
        display: block;
    }
    .location-flex .text-area {
        margin-bottom: 40px;
    }
    
    .link-grid {
        grid-template-columns: 1fr 1fr;
    }
    .faq-grid {
        display: block;
    }
    .faq-title {
        display: none;
    }
}

@media (max-width: 1000px) {
    .main-menu label {
        display: block;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .logo {
        order: 1;
    }
    .currency {
        order: 2;
    }
    .user {
        order: 3;
    }
    .main-menu {
        order: 4;
        position: relative;
    }
    .main-menu nav {
        position: absolute;
        right: -1000px;
        width: 250px;
        background: #3c3b3b;
        transition: .4s ease-in;
        visibility: hidden;
        display: none;
    }
    .main-menu #check:checked ~ nav {
        right: -20px;
        visibility: visible;
        display: block;
    }

    .main-menu nav li {
        display: block;
    }
    .main-menu ul li ul{
        position: relative;
        top: 20px;
    }
    .main-menu ul ul li:hover .domain {
        display: none;
    }
    .main-menu ul li ul {
        background-color: #24211a;
    }

    .hero-flex {
        display: block;
    }
    .hero-flex .right-side img {
        width: 60%;
    }
    .hero-flex .left-side {
        margin-bottom: 20px;
    }
    .web-host-grid, .server-grid {
	    grid-template-columns: 1fr 1fr;
    }
    .faq-grid {
        padding: 20px 40px;
    }
    .support-banner .container{
        padding: 20px 50px;
        display: flex;
        flex-direction: column;
    }
    .image-area{
        text-align: center;
    }
}

@media (max-width: 800px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .system-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .web-host-grid, .server-grid {
        grid-template-columns: 1fr;
    }
    .system-grid {
        grid-template-columns: 1fr;
    }
    .link-grid {
        grid-template-columns: 1fr;
    }
    .copy-flex{
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }
    .ftr-btm-img {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px){
    .logo img {
        max-width: 90%;
    }
    .hero-flex .left-side input[type="search"] {
        width: 90%;
        border-radius: 20px;
        margin: auto;
        display: block;
        margin-bottom: 10px;
    }
    .hero-flex .left-side input[type="submit"] {
        border-radius: 20px;
        width: 70%;
        display: block;
        margin: auto;
    }
    .btn-group {
        display: block;
    }
    .btn-live {
        margin-bottom: 15px;
    }
    .link-grid {
        padding: 0 10px;
    }
}