.container {
    display: grid;
    grid-template-columns: 250px 1fr;
    height: 100vh;
}

/*Browser scroll bar*/

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--button-hover);
}

/*End Browser scroll bar*/

/*Left Side*/

.left-side {
    background-color: #111418;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.left-side img {
    width: 150px;
    border: 3px solid var(--theme-color);
    border-radius: 100px;
}

.left-side p {
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding-top: 15px;
}

/*Menu*/

.menu .navbar .nav-menu .nav-item {
    padding: 10px;
    font-weight: 600;
}

.menu .navbar .nav-menu .nav-item a.nav-link {
    color: white;
}

.menu .navbar ul {
    list-style-type: none;
    padding-left: 0;
}

.menu .navbar .nav-menu .nav-item a {
    font-size: 15px;
    text-decoration: none;
}

.menu .navbar .nav-menu .nav-item a.nav-link:hover {
    color: var(--theme-color);
}

.menu .hamburger {
    display: none;
    cursor: pointer;
}

.menu .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: white;
}

.menu .navbar .nav-menu .nav-item a.nav-link.active {
    color: var(--theme-color);
}

/*End Menu*/

/*Social*/

.left-side .social a {
    text-decoration: none;
}

.left-side .social a i {
    color: white;
    padding: 10px;
    background-color: var(--theme-color);
    border-radius: 50px;
    margin: auto 5px;
}

/*End Social*/

/*End Left Side*/

/*Right Side*/

.right-side {
    overflow-y: auto;
}

/*Section 1*/

.section-1 {
    background-image: url(/assets/images/hero-image.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.section-1 p:first-child {
    color: white;
    font-size: 30px;
}

.section-1 p {
    color: white;
    font-size: 20px;
}

.section-1 h1 {
    color: white;
    font-size: 50px;
    text-align: center;
}

.section-1 .button {
    padding-top: 30px;
}

.section-1 .button a {
    width: 100%;
    display: block;
}

/*End Section 1*/

/*Section 2*/

.section-2 {
    padding: 7% 3%;
}

.section-2 .col-1 {
    text-align: center;
}

.section-2 .col-2 {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 60px;
    padding-top: 50px;
}

.section-2 .col-2 .row-1 p:first-child {
    font-size: 25px;
    font-weight: 600;
    color: black;
}

.section-2 .col-2 .row-2 table th {
    text-align: left;
}

.section-2 .col-2 .row-2 table tr {
    display: flex;
    border-bottom: 1px solid var(--grey-border);
    padding: 10px 0;
}

.section-2 .col-2 .row-2 table tr td {
    padding-left: 10px;
    color: var(--text-color);
}

.section-2 .col-2 .row-2 .button {
    margin-top: 40px;
}

/*Counter*/

.section-2 .col-3 {
    padding-top: 70px;
    width: 100%;
}

.section-2 .col-3 .counter-section {
    display: flex;
}

.section-2 .col-3 .counter-box {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.section-2 .col-3 .counter-box:not(:last-child) {
    border-right: 1px solid var(--grey-border);
}

.section-2 .col-3 .counter-section .counter-box .counter {
    font-size: 45px;
    color: var(--theme-color);
    font-weight: 700;
}

.section-2 .col-3 .counter-section .counter-box .counter-plus-icon {
    font-size: 45px;
    font-weight: 600;
    color: var(--theme-color);
}

/*End Counter*/

/*End Section 2*/

/*Section 3*/

.section-3 {
    background-color: var(--bg-grey);
    padding: 7% 3%;
}

.section-3 .col-2 .section-grid .services {
    background-color: white;
    padding: 30px;
    border: 1px solid #e5e5e5;
}

.section-3 .col-2 .section-grid .services:hover {
    border: 1px solid var(--theme-color);
}

.section-3 .col-2 .section-grid .services img {
    height: 60px;
    background-color: var(--theme-color);
    padding: 8px;
    border-radius: 10px;
}

.section-3 .col-2 .section-grid .services h3 {
    padding-top: 17px;
}

/*End Section 3*/

/*Section 4*/

.section-4 {
    padding: 7% 3% 6% 3%;
}

.section-4 .col-2 .image-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 2fr));
    gap: 20px;
    text-align: center;
}

.section-4 .col-2 .image-box-grid .image-box {
    border: 1px solid var(--theme-color);
    background-color: #bde5bd30;
    padding-top: 25px;
    padding-bottom: 17px;
}

.section-4 .col-2 .image-box-grid .image-box img {
    width: 40%;
}

.section-4 .col-3 {
    padding-top: 40px;
}

.section-4 .col-3 p {
    padding-top: 10px;
}

/*End Section 4*/

/*Section 5*/

.section-5 {
    border-top: 1px solid var(--grey-border);
    padding: 7% 3%;
}

.section-5 .col-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.section-5 .col-2 .job-history {
    background-color: white;
    padding: 15px 30px 25px 30px;
    border: 1px solid #e5e5e5;
}

.section-5 .col-2 .job-history:hover {
    border: 1px solid var(--theme-color);
}

.section-5 .col-2 .job-history .fa {
    font-weight: 600;
    padding-right: 10px;
}

.section-5 .col-2 .job-history p:first-child {
    color: var(--theme-color);
    font-weight: 700;
}

.section-5 .col-2 .job-history h3 {
    font-weight: 400;
    font-size: 15px;
}

/*End Section 5*/

/*Section 6*/

.section-6 {
    background-color: var(--bg-grey);
    padding: 7% 3%;
}

.section-6 .col-1 p:last-child {
    padding: 0;
}

.section-6 .col-2 .section-grid .project img {
    width: 100%;
    height: auto;
}

.section-6 .col-2 .section-grid .project p {
    font-weight: 500;
}

.section-6 .col-2 .section-grid .project {
    border: 1px solid var(--grey-border);
    text-align: center;
    background-color: white;
    padding-bottom: 45px;
}

.section-6 .col-2 .section-grid .project:hover {
    border: 1px solid var(--theme-color);
}

.section-6 .col-2 .section-grid .project .button {
    margin-top: 10%;
}

/*End Section 6*/

/*Section 7*/

.section-7 {
    background-color: var(--bg-grey);
    border-top: 1px solid var(--grey-border);
    padding: 7% 3% 5% 3%;
}

.section-7 .col-2 .form form {
    display: grid;
    gap: 20px;
    width: 40%;
    margin: 0 auto;
}

input#name,
input#email,
textarea#subject {
    color: black;
}

.section-7 .col-2 .form input,
textarea {
    padding: 15px;
    border: 1px solid var(--grey-border);
}

.section-7 .col-2 .form .button {
    background-color: var(--theme-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    cursor: pointer;
}

.section-7 .col-2 .form .button:hover {
    background-color: var(--button-hover);
}

.section-7 .col-2 .form input:focus,
.section-7 .col-2 .form textarea:focus {
    border-color: var(--theme-color);
    outline: none;
    color: white;
}

/*End Section 7*/

/*Footer*/

.footer footer p {
    padding: 0;
    color: var(--text-color);
}

.footer footer {
    padding-top: 20px;
    padding-bottom: 15px;
}

/*End Footer*/

/*End Right Side*/
