@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --highlight-color: #DCEBF4;
    --primary-color: #1e7cbb;
    --secondary-color: #315268;
    --accent-color: #D3DFBE;
    --dark-color: #373737;
    --mid-color: #616161;
    --light-color: #d1d1d1;
    --off-white: #F5F5F5;
}


body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300px;
  font-style: normal;
  font-size: 11pt;
  line-height: 25pt;
  color: var(--dark-color);
}


section {
    /*margin: 0px 10px;*/
}

h1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

h2 {
    padding-bottom: 20px;
    font-size: 18pt;
    font-weight: 700;
}

h3 {
    font-size: 15pt;
    line-height: 25pt;
    /* color: var(--secondary-color); */
}

hr {
    margin-top: 20px;
    padding-top: 10px;
}

p {
    font-size: 11pt;
}

.statistic {
    font-size: 12pt;
    color: var(--primary-color);
}

ul li {
    font-size: 10pt;
    padding-left: 15px;
}

ol li {
    font-size: 10pt;
    padding-left: 15px;
}

table {
    margin-bottom: 50px;
    font-size: 11pt;
}

table, th, td {
    border: 1px solid var(--light-color);
    border-collapse: collapse;
    font-size: 11pt;
}

th, td {
    padding: 10px;
}

a {
    color: var(--primary-color);
}

.img-thumbnail {
    margin-bottom: 35px;
    border-radius: 5px;
}


.subheader {
    color: var(--mid-color);
}

.home-icons {
    z-index: 100;
    height: 22px;
    width: auto;
}

.hero img {
  width: 100%;
  height: 50vh;
  object-fit: cover; /* Ensures the image covers the entire space */
  object-position: center center; /* Ensures the image is centered */
}

.row {
    overflow: hidden;
}

.highlight {
    background-color: var(--off-white);
}

.container {
    z-index: 1;
}

.home-section {
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 100px;
    /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,.2); */
}
/*
.home-section img {
    height: 450px;
    width: 450px;
    object-fit: cover;
    position: relative;
    z-index: -2;
}
*/
.parallax {
    height: auto;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.header-img {
    width: 100%;
    height: 300px;
}

/* Header */
.main-header {
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    background: transparent;
    transition: 0.3s;
}


.main-header .navbar {
    padding: 15px 0;
    border-bottom: solid 1px #c0c0c0;
}

.main-header .navbar-nav > li {
    padding: 0 10px;
}

.main-header .navbar-nav > li > .nav-link {
    padding: 0 30px;
    line-height: 35px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--secondary-color);
    letter-spacing: 3px;
    /* position: relative; */
}

.main-header .navbar-nav > li > .nav-link:after {
    content: "";
    /* position: absolute; */
    bottom: 0;
    right: 0;
    left: auto;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: ease all 0.3s;
}

.main-header .navbar-nav > li > .nav-link:hover {
    color: var(--primary-color);
}

.main-header .navbar-nav > li > nav-link:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
}

.logo-img {
    margin-top: -5px;
}

@media (max-width: 991px) {

    .main-header .navbar-collapse {
        /*border-bottom: 2px solid var(--dark-color);*/
        /*border-top: 2px solid var(--dark-color);*/
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
    }

    .main-header .navbar-nav > li > nav.link::after {
        display: none;
    }

    .main-header .navbar-toggler {
        display: flex;
        flex-direction: column;
        border: none;
        padding: 4px 9px;
        outline: none;
        box-shadow: none;
    }

    .main-header .navbar-toggler span {
        width: 25px;
        height: 2px;
        /*background: var(--dark-color);*/
        border-radius: 99px;
        margin: 4px 0;
        transition: 0.3s;
    }

}

/*

.fixed-header .main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 0.125rem 0.25rem rgba(55, 55, 55, 0.07);
}

.fixed-header .navbar-nav > li > .nav-link {
    color: var(--dark-color);
}*/

/* Gallery View */

    .modal-img {
      max-width: 100%;
      max-height: 80vh;
      margin: auto;
      display: block;
      transition: transform 0.25s ease;
    }
    .modal-body {
      position: relative;
    }
    .zoom-controls {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }
    .zoom-controls button {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      margin: 0 10px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 20px;
    }
    .modal-nav-arrows {
      position: absolute;
      top: 50%;
      display: flex;
      justify-content: space-between;
      width: 100%;
      z-index: 5;
    }
    .modal-nav-arrows button {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      font-size: 20px;
      cursor: pointer;
    }
    .modal-label {
      color: white;
      margin-top: 15px;
      font-size: 1.2rem;
      font-weight: 500;
    }

/* Cards */
img {
    border-radius: 1px;
}

.resume-box .resume-img {
    position: relative;
    /*box-shadow: 5px 5px 2px rgba(55, 55, 55, 0.3);*/
    transition: 0.3s;
}

.resume-box .resume-img:hover {
    transform: scale(0.95);
    box-shadow: 5px 5px 2px rgba(55, 55, 55, 0);
}

.resume-text {
    margin-bottom: 5px;
    padding-bottom: 20px;
}

.resume-box .resume-text span {
    display: inline-block;
    padding: 8px 0px;
    /*background: ;*/
    color: var(--dark-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    border-radius: 30px;
    margin-bottom: 5px;
}

.resume-box .resume-text .span-2 {
    /* background: ; */
}

.resume-box .resume-text h4 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 20pt;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .resume-box .resume-text h4 {
        font-size: 20pt;
        margin-bottom: 10px;
    }
}

.resume-box .resume-text .colored-btn {
    font-size: 12px;
}

.card-row {
    border-bottom: rgba(203 203 203) solid 1px;
    margin-bottom: 20px;
}

.colored-btn {
    background-color: var(--highlight-color);
    /*border: solid 1px var(--secondary-color);*/
    color: var(--secondary-color);
    font-weight: 400;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
}

.colored-btn:hover {
    background-color: var(--secondary-color);
    /*border: solid 1px var(--secondary-color);*/
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 20px;
    text-decoration: none;
}

/* Sidebar Navbar */
  @media (min-width: 1180px) {
    .sidebar {
      height: 100vh;
      position: fixed;
      top: 10%;
      left: 0;
      width: 235px;
      padding: 1rem;
      overflow-y: auto;
      font-size: 10pt;
    }

    .sidebar a {
        color: var(--primary-color);
    }

    .sidebar a:active {
        color: #c5034d;
    }
}
    .content {
      margin-left: 220px; /* width of sidebar + padding */
      padding: 2rem;
    }
    section {

    }
    .nav-link.active {
      font-weight: bold;
      color: #0d6efd;
    }