/* Default CSS  */
:root {
    --white-color: #ffffff;
    --black-color: #000000;

    --nav-color: #ffffff;
    --nav-active: #ff3131;
    --nav-hover: #ff3131;
    --fixed-nav-color: #396a3d;
    --nav-hover-color: #342df3;
    --nav-active-color: #342df3;
    --button-hover-bg: #086703;
    --button-hover-color: #ffffff;
    --fixed-button-color: #086703;
    --button-color: #086703;
    --fixed-button-hover-color: #ffffff;
    --main-name-shape: #ff4500;
    --border-1: #ffffff;
    --border-2: #086703;
    --border-3: #313131;
    --border-4: #89715b;
    --me-bg: #001d23;

    --rating-color: #008000;

    --about-banner-bg: #222222;

    --link-color-1: #ffffff;
    --link-color-2: #1891c8;

    --title-color-1: #ffffff;
    --title-color-2: #086703;
    --title-color-3: #000000;
    --title-color-4: #2C5F5D;
    --title-color-5: #ff4500;
    --section-name: #4CAF50;

    --color-1: #008000;
    --color-2: #11410e;
    --color-3: #ffffff;
    --color-4: #000000;

    --bg-1: #ffffff;
    --bg-2: #f5f7fa;
    --bg-3: #edf7ed;
    --bg-4: #0b1012;

    --skill-progress-bg: #89715b;
    --skill-progress-run-bg: #ff4500;
    --skill-text-color: #fea541;

    --item-bg-1: #000000;
    --item-bg-2: #89715b;
    --item-bg-3: #1e1f1c;
    --item-bg-4: #001d23;

    --item-title-color-1: #ffffff;
    --item-title-color-2: #89715b;

    --item-title-color-4: #1891c8;
    --item-title-color-5: #ff4500;
    --item-icon-color-1: #89715b;
    --item-icon-color-2: #ffffff;
    --item-border-1: #ffffff;
    --item-border-2: #313131;
    --item-border-3: #89715b;

    --paragraph-color-1: #ffffff;
    --paragraph-color-2: #444444;
    --paragraph-color-3: #000000;
    --paragraph-color-4: #272822;

    --form-border: #89715b;
    --input-color: #999999;
    --label-color: #999999;
    --input-bg: #001d23;
    --input-required: #ff4500;


    --roboto-font: "Roboto", sans-serif;

    --footer-bg: #2d3e2d;
    --footer-color-1: #ffffff;
    --footer-color-2: #b0b0b0;
    --footer-color-3: #ffc107;
    --footer-color-4: #4CAF50;
    --footer-hover: #4CAF50;
    --footer-border-1: #666;
    --footer-border-2: #4CAF50;
    --footer-border-3: #444;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.myContainer {
    width: 100%;
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

p {
    font-size: 18px;
    color: var(--paragraph-color-2);
    margin-bottom: 15px;
}

.main-name {
    font-size: 60px;
    font-weight: 700;
    color: var(--title-color-2);
    margin-bottom: 15px;
}

.section-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--section-name);
    margin-bottom: 15px;
}

.main-title {
    font-size: 60px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 0;
    color: var(--title-color-2);
    text-align: center;
}

.main-title span {
    color: var(--title-color-3);
}

.button-container {
    padding-top: 20px;
}

.button-container a,
.button-container button {
    font-size: 17px;
    font-weight: 700;
    color: var(--button-color);
    border: 2px solid var(--border-2);
    width: 150px;
    text-align: center;
    padding: 10px;
    transition: all 0.4s ease-in-out;
    text-transform: capitalize;
}

.button-container a:hover,
.button-container button:hover {
    background: var(--button-hover-bg);
    color: var(--button-hover-color);
    /* transform: translateX(10px); */
}

.desktopShow {
    display: block;
}

.mobileShow {
    display: none;
}

/* Column Design */
.column-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.column-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.column-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.column-item img {
    width: 100%;
}

/* Default Responsive  */
@media screen and (max-width: 992px) {
    .column-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-name {
        font-size: 42px;
    }

    .main-title {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .column-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .column-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .column-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .main-title {
        font-size: 35px;
    }

    .desktopShow {
        display: none;
    }

    .mobileShow {
        display: block;
    }
}

@media screen and (max-width: 400px) {
    .main-title {
        font-size: 40px;
    }

    .main-name {
        font-size: 30px;
    }
}

@media screen and (max-width: 368px) {
    .main-title {
        font-size: 35px;
    }
}