        * {
            padding: 0;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: url(bg/bg-skin.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            color: #fff;
        }

        .container {
            width: 100%;
            padding: 10px 10%;
            margin: 3% 0;
        }

        .back {
            margin-bottom: 60px;
        }

        .back a {
            text-decoration: none;
            color: #fff;
            padding: 10px 20px;
            background: #ff5e00;
            border-radius: 25px;
        }

        .about-col-4 p {
            font-size: 16px;
            margin: 50px 0;
            color: #ababab;
        }

        h2 {
            font-size: 20px;
            color: #ababab;
            margin-top: 50px;
        }

        .contact-left h1 {
            font-size: 50px;
            padding-bottom: 5%;
        }

        .both {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5%;
            background: url(bg/bg-2.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            transition: all 1s ease;
        }

        .both:hover {
            box-shadow: 1px 1px 25px 1px #ffc09b;
            transform: translateY(-18px);
        }

        .banner img {
            width: 400px;
            height: auto;
            padding-right: 30px;
        }

        .text-lg {
            padding: 40px;
            color: #ababab;
        }

        .text-lg span {
            color: #ffffff;
        }

        .name-server {
            color: #ffc09b;
            font-weight: bold;
            font-size: 25px;
        }

        .ip {
            color: #fff;
        }

        .ip span {
            color: #fff;
            padding: 5px 12px;
            background-color: #ff5e00;
            border-radius: 25px;
            margin-left: 5px;
        }



        .btn {

            margin-top: 50px;
        }

        .btn i {
            margin-right: 5px;
        }

        .btn a {
            text-decoration: none;
            padding: 15px 25px;
            border-radius: 25px;
            font-size: 16px;
            color: #fff;
            background-color: #ff5e00;
        }

        .btn a:hover {
            background-color: #e74900;
            color: #fff;
            transition: .55s all ease;
        }

        .copyright {
            width: 100%;
            text-align: center;
            padding-top: 25px;
            font-weight: 300;
            font-size: 12px;
            margin-top: 60px;
        }

        /*----------- media queries -----------*/

        nav .fa-solid {
            display: none;
        }

        @media only screen and (max-width: 1070px) {
            .both {
                display: inline-block;
                justify-content: center;
                padding: 5px;
                margin-right: 10px;
                background: url(bg/bg-2.jpg);
                background-repeat: no-repeat;
                background-size: cover;
            }

            .banner img {
                width: 220px;
                height: auto;
                margin-top: 20px;
                margin-left: 55px;
            }

            .text-lg {
                font-size: 12px;
            }

            .name-server {
                font-size: 12px;
                width: 220px;
                height: 50px;
            }

            .btn a {
                display: none;
            }

            .copyright {
                padding-bottom: 5px;
            }
        }

        @media only screen and (max-width: 1000px) {

            .container {
                width: 100%;
                padding: 10px 5%;
                margin: 3% 0;
            }

            .back {
                margin-bottom: 60px;
                margin-top: 10px;
            }

            .warning p {
                font-size: 14px;
            }

            .both {
                display: inline-block;
                justify-content: center;
                padding: 10px;
                margin-bottom: 10%;
                background: url(bg/bg-2.jpg);
                background-repeat: no-repeat;
                background-size: cover;
            }

            .banner img {
                width: 240px;
                height: auto;
                margin-top: 0;
                margin-left: 25px;
            }

            .name-server {
                font-size: 12px;
                width: 220px;
            }

            .text-lg {
                padding: 20px;
                font-size: 12px;
            }

            .btn a {
                display: none;
            }

            .copyright {
                padding-bottom: 5px;
            }
        }