* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: "Montserrat", sans-serif; */
    font-family: "Cinzel", serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/* ------------------ header ------------------- */
.header-sec {
    width: 100%;
    background-color: black;
    /* border: 1px solid red; */
    font-family: "Cinzel", serif;
}

.header-sec-1 {
    width: 85%;
    height: 50px;
    margin: auto;
    color: #fff;
    background-color: black;
    /* border: 1px solid red; */
}

.header-sec-1 .header-date {
    width: 38%;
    height: 50px;
    float: left;
    /* border: 1px solid red; */
}

.header-sec-1 .header-date ul {
    display: flex;
    justify-content: space-between;
    line-height: 48px;
}

.header-sec-1 .header-date ul li {
    display: flex;
    justify-content: space-between;

}

.header-sec-1 .header-date ul li i {
    padding-right: 8px;
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    font-size: 13px;
    color: rgba(255, 255, 255);
}

.header-sec-1 .header-date ul li sup {
    font-size: 19px;
    line-height: 20px;
}

.header-sec-1 .header-date ul li pre {
    font-weight: 500;
    font-size: 16px;
    color: #c8c8c8;
}

/* ------------------------header-social-contact--------------- */
.header-social-contact {
    width: 10%;
    height: 100%;
    float: right;
    /* border: 1px solid green; */
}

.header-social-contact ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    line-height: 50px;
}

.header-social-contact ul a {
    color: #fff;
    font-size: 13px;
}

/* ---------  header-sec-2  ---------- */
.header-sec-2 {
    width: 100%;
    height: 150px;
    background-color: #0d0d0d;
    position: relative;
}

.header-sec-2 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ----------------------------------  header-sec-3  ---------- */
.header-sec-3 {
    width: 100%;
    height: 80px;
    background-color: #9e0303;
    /* border: 1px solid blue; */

}

.header-sec3-content {
    width: 85%;
    height: 100%;
    padding: 10px 0px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid blue; */
}

.header-sec3-menu-icon,
.header-sec3-search-icon {
    width: 70px;
    color: #fff;
    font-size: 15px;
    text-align: center;
    transform: skewX(-15deg);
    background-color: #a81d1d;
    cursor: pointer;
}

.header-sec3-search-icon {
    width: 60px;
}

.header-sec3-menu-icon i,
.header-sec3-search-icon i {
    transform: skewX(15deg);
    line-height: 60px;
}

/* --------------- header navbar ------------ */
.header-navbar {
    width: 66%;
}

.header-navbar .nav-list {
    width: 100%;
    height: 100%;
    line-height: 60px;
    display: flex;
    justify-content: space-between;
}

.header-navbar .nav-list .nav-name {
    width: max-content;
    padding: 0px 10px;
    padding-left: 30px;
    /* line-height: 50px; */
    text-align: center;
    background-color: #a81d1d;
    transform: skewX(-15deg);
}

.header-navbar .nav-list .nav-name a p {
    color: rgba(255, 255, 255, 0.664);
    text-transform: uppercase;
    transform: skewX(15deg);
    transition: .5s;
    font-size: 15px;
    font-weight: bold;
}

.header-navbar .nav-list .nav-name a p i {
    margin-left: 6px;
}

/*.header-navbar .nav-home {
    background-color: #c20000;
} */

.header-navbar .nav-list .nav-name:hover {
    background-color: #c20000;
}

.header-navbar .nav-list .nav-name:hover p {
    color: #fff;
    font-weight: bold;
}

/* -------------------- dropdown-1 ---------------------- */

.header-sec3-dropdown-1 {
    width: 100%;
    height: 320px;
    position: absolute;
    left: 0%;
    margin-top: 10px;
    /* transform: scale(0); */
    visibility: hidden;
    opacity: 0;
    transition: .5s;
    z-index: 5;

    /* border: 1px solid rgb(0, 255, 238); */
}

.platform-dropdown:hover .header-sec3-dropdown-1 {
    /* transform: scale(1); */
    visibility: visible;
    opacity: 1;
    animation: animate-slider-up 1s 1;
}

@keyframes animate-slider-up {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.dropdown-1-content {
    width: 90%;
    height: 100%;
    margin: auto;
    background-color: black;
    /* border: 1px solid rgb(255, 251, 0); */
}

.shap-before-navbar {
    margin-top: 22px;
    width: 8px;
    height: 18px;
    margin-left: 5px;
    background-color: #c20000;
    transform: skewX(-15deg);
}

.dropdown-navbar .dropdown-navbar-list {
    width: 35%;
    display: flex;
    justify-content: space-between;
    margin-left: 25px;
    color: rgb(133, 118, 118);
    /* border: 1px solid rgb(0, 255, 238); */
}

.dropdown-navbar ul .drop-nav-name a {
    color: #c8c8c8;
    text-transform: uppercase;
    font-size: 14px;
    transition: .5s;
}

.dropdown-navbar ul .drop-nav-name a:hover {
    color: #9e0303;
}

.platform-content {
    width: 100%;
    height: 79%;
    display: flex;
    justify-content: space-evenly;
    /* border: 1px solid rgb(0, 255, 34); */
}

.platform-parent {
    width: 17.5%;
    height: 100%;
    line-height: 1.2;
    /* border: 1px solid rgb(0, 42, 255); */
}

.platform-parent .platform-info {
    padding-top: 10px;
    width: 90%;
}

.platform-parent .platform-info a {
    text-transform: uppercase;
    font-size: 14px;
    color: #c8c8c8;
}

.platform-parent .platform-date {
    width: 70%;
    display: flex;
    justify-content: space-between;
    color: gray;
    font-style: italic;
    padding-top: 10px;
    font-size: smaller;
}

/* --------------- dropdown 2 pages ---------*/
.header-sec3-dropdown-2 {
    width: 190px;
    padding: 25px;
    margin-top: 10px;
    position: absolute;
    background-color: #252525;
    visibility: hidden;
    transition: .3s;
    opacity: 0;
    transform: scaleX(0);
    z-index: 5;
}

.pages-dropdwon:hover .header-sec3-dropdown-2 {
    visibility: visible;
    transform: scaleX(1);
    opacity: 1;
    transition: .5s;
}


.header-sec3-dropdown-2 li {
    line-height: 1.8;
}

.header-sec3-dropdown-2 li a {
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.header-sec3-dropdown-2 li a:hover {
    color: #fff;
    font-size: 15px;
    transition: .5s;
}

/* ------------------------------- Main section----------------------- */
.main-sec {
    width: 100%;
    height: 1000px;
    background-image: url("../images/herobg-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-top: -50px; */
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-sec .main-content {
    width: 85%;
    height: 650px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border: 1px solid red; */
}

/* -------------------------------- main title --------------------- */

.main-sec .main-title {
    width: 45%;
    height: 40%;
    position: absolute;
    top: 25%;
    float: left;
    /* border: 1px solid rgb(0, 76, 255); */
}

.main-title .playstaion,
.news-reviews {
    width: max-content;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: smaller;
    color: rgba(255, 255, 255, 0.692);
    background-color: #9e030386;
    transform: skewX(-15deg);
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
}

.main-title .main-title-content,
.sec2-news-1 .news-1-info {
    text-transform: uppercase;
    color: #fff;
    font-size: 30px;
    line-height: 1.5;
}

.main-title .main-title-info {
    color: rgba(255, 255, 255, 0.701);
    display: flex;
    margin-top: 10px;
    /* border: 1px solid rgb(20, 194, 139); */
}

.main-title .main-title-info img {
    border-radius: 50%;
}

.main-title .main-title-info p {
    line-height: 50px;
    font-style: italic;
    padding-left: 12px;
    font-size: 18px;
}

/* -------------------- main-treding-posts ----------------- */
.main-treding-posts {
    width: 32%;
    height: 100%;
    float: right;
    background-color: black;
    /* border: 1px solid rgb(64, 255, 0); */
}

.treding-posts-content {
    width: 85%;
    height: 95%;
    margin-left: 11%;
    margin-top: 30px;
    /* border:1px solid rgb(0, 157, 255); */
}

.main-treding-posts .treding-title {
    height: 30px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid rgb(64, 255, 0); */
}

.main-treding-posts .treding-title h3,
.sec1-title-p1 h3 {
    text-transform: uppercase;
    font-style: italic;
    font-size: 21px;
    color: #fff;
    letter-spacing: 2px;
    float: left;
    margin-left: -20px;
}

.shap-before-treding-title,
.shap-before-title {
    width: 13px;
    height: 80%;
    display: block;
    margin-top: 2px;
    margin-left: 5px;
    background-color: #c20000;
    transform: skewX(-15deg);
}

.main-treding-posts .treding-title p {
    float: right;
    line-height: 30px;
}

.main-treding-posts .treding-title p a,
.sec1-title-p2 a,
.sec2-title-p2 a {
    color: #866d6d;
    font-size: 20px;
}

.main-treding-posts .treding-title p a:hover,
.sec1-title-p2 a:hover,
.sec2-title-p2 a:hover {
    color: #fff;
}

.main-treding-posts .treding-title p a i,
.sec1-title-p2 a i,
.sec2-title-p2 a i {
    padding: 3px;
}

.treding-post {
    width: 100%;
    height: 20%;
    margin: 15px 0px;
    display: flex;
    justify-content: space-between;
    /* border:1px solid red; */
}

.treding-post img {
    width: 30%;
    height: 80%;
}

.treding-post .treding-post-info {
    width: 62%;
}

.treding-post .treding-post-info a {
    color: #fff;
    text-transform: uppercase;
    font-size: smaller;
    transition: .5s;
}

.treding-post .treding-post-info a:hover {
    color: #c20000;
}

.treding-post .treding-post-info pre {
    margin-top: 15px;
    font-style: italic;
    color: #866d6d;
}

/* ---------------------------------------------------- section 1 ---------------------------- */
.sec-1 {
    width: 100%;
    height: 450px;
    background-color: black;
    position: relative;
}

.sec-1 .container {
    width: 85%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* border: 1px solid red; */
}

.sec1-title,
.sec2-title {
    display: flex;
    justify-content: space-between;
}

.sec1-title-p1,
.sec2-title-p1 {
    display: flex;
}

.sec-1 .shap-before-title, .sec-2 .shap-before-title {
    margin-top: 3px;
    height: 20px;
    width: 12px;
}

.sec1-title-p1 h3,
.sec2-title-p1 h3 {
    padding-left: 30px;
    color: #fff;
}

/* --------------------sec1-content----------------- */

.sec1-content {
    width: 100%;
    height: 85%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid rgb(0, 255, 204); */
}

/* ---------- precent circle ----------- */
.review-precent {
    width: fit-content;
    height: fit-content;
    position: absolute;
    right: 0;
    padding: 10px;
}

.precent-circle {
    width: 40px;
    height: 40px;
    border: 2px solid red;
    border-top: 2px solid transparent;
    border-radius: 50%;
    transform: rotate(-45deg);
    background-color: rgba(0, 0, 0, 0.617);
    cursor: default;
}

.precent {
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    transform: rotate(45deg);
}

.sec1-content .review-parent {
    width: 23.5%;
    height: 100%;
    /* border: 1px solid rgb(0, 34, 255); */
}

.sec1-content .review-parent .review-img {
    width: 100%;
    height: 60%;
    background-image: url("../images/lpp-1.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
}

.sec1-content .review-parent .review-img-2 {
    background-image: url("../images/lpp-2.jpg");
}

.sec1-content .review-parent .review-img-3 {
    background-image: url("../images/lpp-3.jpg");
}

.sec1-content .review-parent .review-img-3 {
    background-image: url("../images/lpp-3.jpg");
}

.sec1-content .review-parent a {
    text-transform: uppercase;
    color: #fff;
    font-size: 21px;
}

.sec1-content .review-parent pre {
    padding-top: 10px;
    color: #866d6d;
}

/* ------------------------------------------------------ section 2 ------------------------------- */
.sec-2 {
    width: 100%;
    background-color: #0d0d0d;
    position: relative;
}

.sec-2 .container {
    width: 85%;
    margin: auto;
    padding: 70px 0px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}

.sec-2 .news-update-content {
    width: 65%;
    /* border: 1px solid rgb(0, 255, 242); */
}

/*------------------ sec2 title-------------*/
.sec2-title-p2 {
    width: 50%;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid rgb(0, 255, 242); */
}

.sec2-title-p2 ul {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.sec2-title-p2 ul li a {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #c4c4c4;
    transition: .5s;
    line-height: 25px;
}

.sec2-title-p2 ul li a:hover {
    color: #c20000;
}

/* ------------------ se2-content------------ */
.sec2-news-1 {
    width: 100%;
    height: 550px;
    margin-top: 30px;
    position: relative;
    background: url("../images/newss-1.jpg") center no-repeat;
}

.sec2-news-1 .news-1-content {
    width: 90%;
    height: fit-content;
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%);
    /* border: 1px solid rgb(0, 55, 255); */
}

.news-reviews {
    margin-bottom: 15px;
}

.sec2-news-1 .news-1-content .news-1-info {
    font-size: 24px;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.sec2-news-1 .news-1-content pre {
    color: rgb(101, 90, 90);
    font-style: italic;
    padding-top: 10px;
}

.sec2-news-review-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    /* border: 1px solid rgb(208, 0, 255); */
}

.sec2-news-review-content .news-review-parent {
    width: 31%;
}

.news-review-parent .news-reviews {
    padding: 6px 10px;
    text-align: center;
    margin-top: -60px;
    margin-left: 10px;
    font-size: 11px;
}

.news-review-parent img {
    width: 100%;
    margin-bottom: 20px;
}

.review-parent-title a {
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
}

.review-parent-title pre {
    color: rgb(101, 90, 90);
    font-style: italic;
    padding-top: 10px;

}

.review-parent-title pre i {
    font-size: smaller;
}

/*---------------------  Social media -------------------------*/
.social-hardware-container {
    width: 30%;
    /* border: 1px solid green; */
}

.sec2-social-media-content {
    width: 100%;
    /* border: 1px solid red; */
}

.social-content {
    width: 100%;
    margin-top: 30px;
    /* border: 1px solid rgb(217, 255, 0); */
}

.social-content .social-parent {
    width: 100%;
    height: 50px;
    border: 1px solid #252525;
    color: rgba(255, 255, 255, 0.829);
    display: flex;
    justify-content: space-between;
    font-family: sans-serif;
    transform: skewX(-15deg);
    margin: 15px 0px;
    transition: .5s;
}

.social-content .social-parent i {
    width: 14%;
    height: 100%;
    line-height: 50px;
    text-align: center;
    background-color: #252525;
    transition: .5s;
}

.social-content .social-parent .social-info {
    width: 86%;
    line-height: 50px;
    padding: 0px 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    transform: skewX(15deg);
}

.social-content .social-parent:hover {
    border: 1px solid #40c4ff;
}

.social-content .social-parent:hover i {
    background-color: #40c4ff;
}

/* ------------------------- Hardware ------------------------ */
.sec2-hardware {
    width: 100%;
    margin-top: 50px;
    line-height: 1.3;
    /* border: 1px solid rgb(0, 255, 149); */
}

/* -------------------------------------------------------------------------------------------- section 3 ------------------------------------- */
.sec-3 {
    width: 100%;
    background-color: black;
}

.sec-3 .container {
    width: 85%;
    margin: auto;
    padding: 50px 0px;
    /* border: 1px solid red; */
}

.sec3-videos-title-p2 {
    width: 30%;
}

.sec3-videos-title-p2 ul {
    width: 83%;
}

.sec3-videos-content {
    width: 100%;
    margin-top: 30px;
    /* border: 1px solid rgb(21, 255, 0); */
}

.sec3-videos-part-1,
.sec3-videos-part-2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.sec3-videos-part-2 {
    padding-top: 20px;
}

.sec3-video-parent {
    width: 49.4%;
    height: 385px;
    position: relative;
    background: url("../images/videoss-1.jpg") center;
    transition: .3s;
}

.sec3-video-parent:hover {
    box-shadow: 1px 1px 1px #c20000, -1px -1px 1px #c20000;
}

.sec3-videos-part-1 .video-2 {
    background: url("../images/videoss-2.jpg") center;
}

.sec3-video-parent .sec3-video-icon i,
.sec3-videos-part-2 .sec3-video-icon i {
    color: #c2000088;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
}


.sec3-video-parent:hover .sec3-video-icon i,
.sec3-video-parent-p2:hover .sec3-video-icon i {
    color: #c20000;
    font-size: 30px;
}

.sec3-video-parent-info,
.sec3-video-parent-p2-info {
    padding-top: 50%;
    width: 90%;
    margin: auto;
    /* border: 1px solid rgb(0, 21, 255); */
}

.sec3-video-parent-p2-info {
    padding-top: 45%;
}

.sec3-video-parent-info h4,
.sec3-video-parent-p2-info h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
}

.sec3-video-parent-p2-info h4 {
    font-size: 18px;
}

.sec3-video-parent-info pre {
    color: #866d6d;
    padding-top: 15px;
    font-style: italic;
    font-size: smaller;
}

.sec3-video-parent-p2 {
    width: 32.6%;
    height: 230px;
    position: relative;
    background: url("../images/videoss-3.jpg") center;
    transition: .3s;
}

.video-p2-4 {
    background: url("../images/videoss-4.jpg") center;
}

.video-p2-5 {
    background: url("../images/videoss-5.jpg") center;
}


.sec3-video-parent-p2:hover {
    box-shadow: 1px 1px 1px #c20000, -1px -1px 1px #c20000;
}

/* ---------------------------------------------------------- Sections 4 ------------------------------ */
.sec-4 {
    width: 100%;
    background-color: #0d0d0d;
}

.sec-4 .container {
    width: 85%;
    margin: auto;
    padding: 50px 0px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}

.sec-4 .sec4-left-content {
    width: 68%;
    /* border: 1px solid rgb(0, 225, 255); */
}

.instagram-parent {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid rgb(17, 0, 255); */
}

.instagram-parent img {
    width: 49%;
}

.instagram-parent .insta-info {
    width: 49%;
    padding: 0px 20px;
    color: #c8c8c8;
    line-height: 1.5;
}

.instagram-parent .insta-info h3 {
    padding: 3px 8px;
    font-weight: 100;
}

.instagram-parent .insta-info a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.instagram-parent .insta-info pre {
    padding: 10px 0px;
    color: #866d6d;
    font-style: italic;
}

.instagram-parent .insta-info pre i {
    font-size: smaller;
}

.instagram-parent .insta-info p {
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.557);
}

/* --------- instagram navbar -------- */
.insta-navbar {
    width: 33%;
    height: 40px;
    margin: 50px 0px;
    font-family: "Montserrat", sans-serif;
    /* border: 1px solid rgb(187, 255, 0); */
}

.insta-navbar ul {
    display: flex;
    justify-content: space-between;
}

.insta-navbar ul li {
    height: 100%;
    text-align: center;
    transform: skewX(-15deg);
}

.insta-navbar ul li a {
    padding: 12px 20px;
    background-color: #252525;
    color: #fff;
    line-height: 40px;
    transition: .5s;
}

.insta-navbar ul li a p {
    transform: skewX(15deg);
    display: inline-block;
}

.insta-navbar li a:hover {
    background-color: #866d6d;
}

/*-------------------------Sec-4 Right part -------------------------*/

.sec4-right-content {
    width: 30%;
    /* border: 1px solid rebeccapurple; */
}

.insta-images-content {
    width: 100%;
}

.insta-images-content .insta-images {
    width: 100%;
    height: 360px;
    margin-top: 30px;
    /* border: 1px solid blue; */
}

.insta-images-content .insta-images img {
    float: left;
    margin-bottom: 10px;
}

.insta-images-content .insta-images .img-right {
    float: right;
    margin-bottom: 10px;

}

/* ---------- Best Of Games --------------- */

.best-of-games {
    width: 100%;
    /* border: 1px solid goldenrod; */
}

.best-games-content {
    margin-top: 20px;
    width: 100%;
    /* border: 1px solid rgb(246, 4, 246); */
}

.best-games-parent {
    height: 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.best-games-precent-content {
    width: 22%;
    position: relative;
}

.best-games-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #c20000;
    border-top: 2px solid transparent;
    border-radius: 50%;
    position: absolute;
    left: 15%;
    top: 15%;
    transform: translate(-50%, -50%);
    transform: rotate(-45deg);
    background-color: #01010153;
}

.best-games-precent-content .precent-2 {
    border: 3px solid #c20000;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}

.best-games-precent-content .precent-3 {
    border: 3px solid transparent;
    border-right: 2px solid #c20000;
}


.precent-num {
    color: #fff;
    text-align: center;
    line-height: 60px;
    transform: rotate(45deg);
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
}

.best-games-info {
    width: 75%;
    padding: 10px;
}

.best-games-info a {
    text-transform: uppercase;
    color: #fff;
}

.best-games-info pre {
    color: #866d6d;
    font-size: smaller;
    font-style: italic;
    padding-top: 15px;
}

.best-games-info pre i {
    font-size: smaller;
}

/* --------- subscribe ---------- */
.subscribe {
    width: 100%;
    margin-top: 30px;
    /* border: 1px solid rgb(18, 176, 97); */
}

.subscribe-content {
    margin-top: 20px;
    color: #c4c4c4;
    line-height: 2;
}

.subscribe-content input,
.subscribe-content button {
    width: 100%;
    height: 50px;
    color: #866d6d;
    padding: 15px;
    margin-top: 20px;
    transform: skewX(-15deg);
    background-color: transparent;
    border: 1px solid #866d6d;
}

.subscribe-content button {
    background-color: #680606;
    cursor: pointer;
    border: none;
}

.subscribe-content button p {
    transform: skewX(15deg);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 20px;
}

/* ------------------------------------------------------------------------ Footer section ---------------------------------- */
.footer-sec {
    width: 100%;
    background-color: black;
}

.footer-sec .container {
    width: 85%;
    margin: auto;
    padding: 50px 0px;
    color: #c4c4c4;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid red; */
}

.footer-logo {
    width: 32.5%;
    /* border: 1px solid rgb(0, 255, 251); */
}

.footer-logo p {
    padding: 15px 0px;
    line-height: 1.5;
    font-family: 'Arial Narrow', Arial, sans-serif;
}

.footer-logo .footer-navbar {
    width: 60%;
    margin: 20px 0px;
    /* border: 1px solid rgb(255, 145, 0); */
}

.footer-logo .footer-navbar ul {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: space-between;
}

.footer-logo .footer-navbar ul li {
    text-align: center;
    width: 22.3%;
    background-color: #252525;
    transform: skewX(-15deg);
    transition: .5s;
}

.footer-logo .footer-navbar li a {
    color: #fff;
    padding: 10px;
}

.footer-logo .footer-navbar li a p {
    transform: skewX(15deg);
    display: inline-flex;
}

.footer-logo .footer-navbar li:hover {
    background-color: #866d6d;
}

/* --------------- footer Editor section ------------- */

.footer-editor {
    width: 32.5%;
    /* border: 1px solid #680606; */
}

.footer-editor-parent {
    width: 100%;
    height: 100px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    /* border: 1px solid #11d3d7; */
}

.footer-editor-parent img {
    width: 35%;
}

.footer-editor-info {
    width: 58%;
}

.footer-editor-info a {
    text-transform: uppercase;
    color: #c8c8c8;
}

.footer-editor-info pre {
    padding-top: 15px;
    color: #866d6d;
    font-style: italic;
}

.footer-editor-info pre i {
    font-size: smaller;
}

/* --------------- footer Tags section ------------- */

.footer-tags {
    width: 30%;
    display: flexbox;
    /* border: 1px solid red; */
}

.footer-tags-content {
    width: 100%;
    margin-top: 30px;
    /* border: 1px solid rgb(0, 255, 191); */
}

.footer-tags p {
    display: inline-block;
    padding: 5px 10px;
    width: max-content;
    text-align: center;
    transform: skewX(-15deg);
    border: 1px solid #866d6d;
    margin-top: 15px;
    margin-right: 2.5%;
}

.footer-tags p a {
    color: #c4c4c4;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    font-size: smaller;
    transform: skewX(15deg);
    display: inline-flex;
}

.footer-bottom {
    width: 100%;
    height: 100px;
    position: relative;
}

.footer-bottom h3 {
    color: rgba(229, 221, 221, 0.536);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-bottom h3 span {
    color: #c20000;
    text-decoration: underline;
}