@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap);
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  box-sizing: border-box; }

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

ul, ol {
  padding: 0;
  margin: 0; }

li {
  list-style: none; }

a {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

p {
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

input:focus, input:active {
  box-shadow: none !important; }

img {
  max-width: 100%; }

section {
  padding: 3.125rem 0;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 575.98px) {
    section {
      padding: 1.25rem 0; } }
  @media (min-width: 576px) and (max-width: 767.98px) {
    section {
      padding: 1.875rem 0; } }

.no-background {
  background: none;
  }

.container {
  max-width: 1170px; }
  @media screen and (max-width: 575px) {
    .container {
      padding: 0px 15px;
      max-width: 100%;
      width: 100%; } }

::selection {
  color: #fff;
  background-color: #E31C25; }

  .project-cards {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 8px 0;
      }

      .project-card {
      background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
      border-radius: 5px;
      border: 1px solid #333;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .project-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
      }

      .card-header {
      background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
      padding: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      }

      .card-header h4 {
      color: white;
      margin: 0;
      font-size: 1.04em;
      font-weight: 600;
      }

      .project-type {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 2px 5px;
      border-radius: 8px;
      font-size: 0.68em;
      font-weight: 500;
      }

      .card-body {
      padding: 8px;
      }

      .card-body p {
      color: #e0e0e0;
      line-height: 1.6;
      margin-bottom: 2px;
      }

      .project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      margin-bottom: 0;
      }

      .tech-tag {
      background: #333;
      color: #fff;
      padding: 1.5px 4px;
      border-radius: 6px;
      font-size: 0.64em;
      border: 1px solid #444;
      }

      .project-authors {
      display: flex;
      flex-wrap: wrap;
      gap: 3px;
      margin-bottom: 0;
      }

      .author-tag {
      background: #333;
      color: #fff;
      padding: 1.5px 4px;
      border-radius: 6px;
      font-size: 0.64em;
      border: 1px solid #444;
      }

      .author-tag a{
      color: #fff;
      }

      .project-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0px;
      }

      .project-link {
      display: inline-block;
      background: #d32f2f;
      color: white;
      padding: 2px 5px;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.8em;
      font-weight: 500;
      transition: background 0.3s ease;
      }

      .project-link:hover {
      background: #b71c1c;
      color: white;
      text-decoration: none;
      }

      .abstract-toggle {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 2px 20px;
      border-radius: 8px;
      font-size: 0.68em;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 2px;
      outline: none;
      }

      .abstract-toggle:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-0.5px);
      }

      .abstract-toggle:focus {
      outline: 1px solid rgba(255, 255, 255, 0.5);
      outline-offset: 1px;
      }

      .abstract-toggle .toggle-arrow {
      transition: transform 0.3s ease;
      font-size: 0.64em;
      }

      .abstract-toggle.expanded .toggle-arrow {
      transform: rotate(90deg);
      }

      .abstract-content {
      display: none;
      background: #2a2a2a;
      padding: 6px;
      border-radius: 3px;
      margin-bottom: 6px;
      border-left: 1.5px solid #d32f2f;
      transition: all 0.3s ease;
      width: 100%;
      box-sizing: border-box;
      }

      .abstract-content.show {
      display: block;
      animation: fadeIn 0.3s ease-in-out;
      }

      @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
      }

      .abstract-content p {
      color: #e0e0e0;
      line-height: 1.6;
      margin: 0;
      text-align: justify;
      }

      @media (max-width: 768px) {
      .card-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 4px;
      }
      
      .project-type {
          align-self: flex-start;
      }
      
      .abstract-toggle {
          align-self: flex-start;
      }
  }

  #home-subpage header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all ease .5s;
    height: 3.1875rem; }
    #home-subpage header .main-nav {
      display: flex;
      flex: 1 1 100%;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      max-width: 100%;
      padding: .625rem 0;
      position: relative; }
      #home-subpage header .main-nav .logo {
        width: 20%;
        max-width: 20%;
        display: block;
        position: relative;
        color: #fff; }
        @media screen and (max-width: 575.98px) {
          #home-subpage header .main-nav .logo {
            width: 100%;
            max-width: 100%; } }
        #home-subpage header .main-nav .logo h2 {
          font-size: 1.25rem;
          text-transform: uppercase;
          display: block;
          letter-spacing: .3px; }
      #home-subpage header .main-nav .social-media {
        width: 50%;
        max-width: 50%;
        float: right;
        display: block;
        position: relative; }
        @media screen and (max-width: 575.98px) {
          #home-subpage header .main-nav .social-media {
            display: none; } }
        #home-subpage header .main-nav .social-media ul li {
          display: inline-block;
          margin: 0 .9375rem; }
          #home-subpage header .main-nav .social-media ul li a i {
            color: #fff; }
      #home-subpage header .main-nav .my-toogle {
        position: absolute;
        right: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        cursor: pointer; }
        #home-subpage header .main-nav .my-toogle span i {
          color: #fff;
          font-size: 1.5625rem; }

    #home-subpage::before {
      position: absolute;
      content: "";
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0; }
    #home-subpage::after {
      position: absolute;
      content: "";
      left: 0;
      top: 0;
      height: 3.1875rem;
      width: 100%;
      background: rgba(0, 0, 0, 0.5); }
    #home-subpage .copy-right {
      position: fixed;
      bottom: 2.5rem;
      z-index: 2;
      left: 5%; }
      #home-subpage .my-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1 1 100%;
        flex-wrap: wrap;
        padding: 8.75rem 0;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 1;
        transition: all ease .5s; }
        @media screen and (max-width: 575.98px) {
          #home-subpage .my-wrapper {
            padding: 3.125rem 0; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          #home-subpage .my-wrapper {
            padding: 4rem 0; } }
        @media (min-width: 768px) and (max-width: 1199.98px) {
          #home-subpage .my-wrapper {
            padding: 5rem 0; } }
        #home-subpage .my-wrapper .inter {
          position: absolute;
          left: -15%;
          top: 33%;
          transform: rotate(-90deg); }
          @media screen and (max-width: 575.98px) {
            #home-subpage .my-wrapper .inter {
              display: none; } }
          #home-subpage .my-wrapper .inter h6 {
            font-size: 1rem;
            letter-spacing: .0625rem;
            color: #fff;
            text-transform: uppercase; }
            @media screen and (max-width: 575.98px) {
              #home-subpage .my-wrapper .inter h6 {
                font-size: .8125rem; } }
        #home-subpage .my-wrapper .line {
          position: relative;
          display: inline-block;
          width: 10%;
          height: .25rem;
          background: #fff;
          margin: 2.5rem 0; }
          @media screen and (max-width: 575.98px) {
            #home-subpage .my-wrapper .line {
              display: block;
              width: 20%;
              margin: .9375rem; } }
          @media (min-width: 576px) and (max-width: 1199.98px) {
            #home-subpage .my-wrapper .line {
              margin: .9375rem; } }
        #home-subpage .my-wrapper .welcome-box {
          display: inline-block;
          margin: 1.875rem 0; }
          @media screen and (max-width: 575.98px) {
            #home-subpage .my-wrapper .welcome-box {
              margin: .625rem 0;
              padding: .9375rem; } }
          @media (min-width: 576px) and (max-width: 1199.98px) {
            #home-subpage .my-wrapper .welcome-box {
              padding: .9375rem; } }
          #home-subpage .my-wrapper .welcome-box h3 {
            display: inline-block;
            font-size: 1rem;
            text-transform: capitalize;
            color: #fff;
            line-height: 1.5rem;
            letter-spacing: .5px; }
            #home-subpage .my-wrapper .welcome-box h3 span {
              display: block; }
        #home-subpage .my-wrapper .name-box {
          display: inline-block;
          margin: 1.25rem 0;
          width: 50%;
          max-width: 50%; }
          @media screen and (max-width: 575.98px) {
            #home-subpage .my-wrapper .name-box {
              width: 100%;
              max-width: 100%;
              padding: 0 .9375rem;
              margin: 0 0 .625rem; } }
          @media (min-width: 576px) and (max-width: 767.98px) {
            #home-subpage .my-wrapper .name-box {
              width: 75%;
              max-width: 75%;
              padding: 0 .9375rem; } }
          @media (min-width: 768px) and (max-width: 991.98px) {
            #home-subpage .my-wrapper .name-box {
              width: 60%;
              max-width: 60%;
              padding: 0 .9375rem; } }
          @media (min-width: 992px) and (max-width: 1199.98px) {
            #home-subpage .my-wrapper .name-box {
              padding: 0 .9375rem; } }
          #home-subpage .my-wrapper .name-box h1 {
            font-size: 4.375rem;
            text-transform: uppercase;
            letter-spacing: .0625rem;
            color: #fff;
            font-weight: 600; }
            @media screen and (max-width: 575.98px) {
              #home-subpage .my-wrapper .name-box h1 {
                font-size: 2.5rem; } }
            @media (min-width: 576px) and (max-width: 767.98px) {
              #home-subpage .my-wrapper .name-box h1 {
                font-size: 3.125rem; } }
            @media (min-width: 768px) and (max-width: 991.98px) {
              #home-subpage .my-wrapper .name-box h1 {
                font-size: 4rem; } }
            #home-subpage .my-wrapper .name-box h1 span {
              color: #E31C25; }

#home header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all ease .5s;
  height: 3.1875rem; }
  #home header .main-nav {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: .625rem 0;
    position: relative; }
    #home header .main-nav .logo {
      width: 20%;
      max-width: 20%;
      display: block;
      position: relative;
      color: #fff; }
      @media screen and (max-width: 575.98px) {
        #home header .main-nav .logo {
          width: 100%;
          max-width: 100%; } }
      #home header .main-nav .logo h2 {
        font-size: 1.25rem;
        text-transform: uppercase;
        display: block;
        letter-spacing: .3px; }
    #home header .main-nav .social-media {
      width: 50%;
      max-width: 50%;
      float: right;
      display: block;
      position: relative; }
      @media screen and (max-width: 575.98px) {
        #home header .main-nav .social-media {
          display: none; } }
      #home header .main-nav .social-media ul li {
        display: inline-block;
        margin: 0 .9375rem; }
        #home header .main-nav .social-media ul li a i {
          color: #fff; }
    #home header .main-nav .my-toogle {
      position: absolute;
      right: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      cursor: pointer; }
      #home header .main-nav .my-toogle span i {
        color: #fff;
        font-size: 1.5625rem; }

.my-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  background: rgba(255, 0, 0, 0.3);
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transition: all ease-in-out .5s;
  -webkit-transition: all ease-in-out .5s;
  will-change: transform;
  z-index: 1030;
  opacity: 0;
  visibility: hidden; }
  .my-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    -webkit-transform: translateX(0); }
  .my-menu .menu-box {
    position: absolute;
    height: 100%;
    width: 30%;
    right: 0;
    top: 0;
    background: #000000;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
    padding: 1.875rem 2.5rem;
    z-index: 999; }
    @media screen and (max-width: 575.98px) {
      .my-menu .menu-box {
        width: 100%; } }
    @media (min-width: 576px) and (max-width: 767.98px) {
      .my-menu .menu-box {
        width: 60%; } }
    @media (min-width: 768px) and (max-width: 1199.98px) {
      .my-menu .menu-box {
        width: 40%; } }
    .my-menu .menu-box span {
      display: block;
      margin: 1.25rem 0;
      position: relative;
      float: right;
      top: -1.5rem;
      cursor: pointer; }
      .my-menu .menu-box span i {
        color: #fff;
        font-size: 1.5625rem; }
    .my-menu .menu-box ul {
      margin: 2.5rem 0; }
      .my-menu .menu-box ul li {
        display: block;
        margin: .625rem 0;
        padding: .625rem;
        font-size: 1.125rem;
        text-transform: uppercase;
        font-weight: 600; }
        .my-menu .menu-box ul li a {
          color: #fff;
          display: inline-block;
          transition: all ease .4s; }
          .my-menu .menu-box ul li a:hover {
            color: #E31C25; }

#home {
  background: url(../images/APAM2022/APAM2022_3_1.jpg) no-repeat center;
  background-size: cover; }
  #home::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0; }
  #home::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 3.1875rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); }
  #home .copy-right {
    position: fixed;
    bottom: 2.5rem;
    z-index: 2;
    left: 5%; }
    #home .copy-right h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .5px; }
  #home .my-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    flex-wrap: wrap;
    padding: 8.75rem 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    transition: all ease .5s; }
    @media screen and (max-width: 575.98px) {
      #home .my-wrapper {
        padding: 3.125rem 0; } }
    @media (min-width: 576px) and (max-width: 767.98px) {
      #home .my-wrapper {
        padding: 4rem 0; } }
    @media (min-width: 768px) and (max-width: 1199.98px) {
      #home .my-wrapper {
        padding: 5rem 0; } }
    #home .my-wrapper .inter {
      position: absolute;
      left: -15%;
      top: 33%;
      transform: rotate(-90deg); }
      @media screen and (max-width: 575.98px) {
        #home .my-wrapper .inter {
          display: none; } }
      #home .my-wrapper .inter h6 {
        font-size: 1rem;
        letter-spacing: .0625rem;
        color: #fff;
        text-transform: uppercase; }
        @media screen and (max-width: 575.98px) {
          #home .my-wrapper .inter h6 {
            font-size: .8125rem; } }
    #home .my-wrapper .line {
      position: relative;
      display: inline-block;
      width: 10%;
      height: .25rem;
      background: #fff;
      margin: 2.5rem 0; }
      @media screen and (max-width: 575.98px) {
        #home .my-wrapper .line {
          display: block;
          width: 20%;
          margin: .9375rem; } }
      @media (min-width: 576px) and (max-width: 1199.98px) {
        #home .my-wrapper .line {
          margin: .9375rem; } }
    #home .my-wrapper .welcome-box {
      display: inline-block;
      margin: 1.875rem 0; }
      @media screen and (max-width: 575.98px) {
        #home .my-wrapper .welcome-box {
          margin: .625rem 0;
          padding: .9375rem; } }
      @media (min-width: 576px) and (max-width: 1199.98px) {
        #home .my-wrapper .welcome-box {
          padding: .9375rem; } }
      #home .my-wrapper .welcome-box h3 {
        display: inline-block;
        font-size: 1rem;
        text-transform: capitalize;
        color: #fff;
        line-height: 1.5rem;
        letter-spacing: .5px; }
        #home .my-wrapper .welcome-box h3 span {
          display: block; }
    #home .my-wrapper .name-box {
      display: inline-block;
      margin: 1.25rem 0;
      width: 50%;
      max-width: 50%; }
      @media screen and (max-width: 575.98px) {
        #home .my-wrapper .name-box {
          width: 100%;
          max-width: 100%;
          padding: 0 .9375rem;
          margin: 0 0 .625rem; } }
      @media (min-width: 576px) and (max-width: 767.98px) {
        #home .my-wrapper .name-box {
          width: 75%;
          max-width: 75%;
          padding: 0 .9375rem; } }
      @media (min-width: 768px) and (max-width: 991.98px) {
        #home .my-wrapper .name-box {
          width: 60%;
          max-width: 60%;
          padding: 0 .9375rem; } }
      @media (min-width: 992px) and (max-width: 1199.98px) {
        #home .my-wrapper .name-box {
          padding: 0 .9375rem; } }
      #home .my-wrapper .name-box h1 {
        font-size: 4.375rem;
        text-transform: uppercase;
        letter-spacing: .0625rem;
        color: #fff;
        font-weight: 600; }
        @media screen and (max-width: 575.98px) {
          #home .my-wrapper .name-box h1 {
            font-size: 2.5rem; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          #home .my-wrapper .name-box h1 {
            font-size: 3.125rem; } }
        @media (min-width: 768px) and (max-width: 991.98px) {
          #home .my-wrapper .name-box h1 {
            font-size: 4rem; } }
        #home .my-wrapper .name-box h1 span {
          color: #E31C25; }

          #about {
            padding: 0rem 0;
            background-color: #000;
            position: relative;
            overflow: hidden; 
          }
          
          @media screen and (max-width: 575.98px) {
            #about {
              height: auto; 
            }
          }
          
          #about .copy-right {
            position: absolute;
            bottom: 2.5rem;
            z-index: 2;
            left: 5%; 
          }
          
          #about .copy-right h6 {
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: .5px; 
          }
          
          #about .wrapper {
            display: flex;
            flex-wrap: wrap;
            flex: 1 1 100%;
            max-width: 100%;
            width: 100%;
            position: relative;
            margin: 1.25rem 0;
            padding: .9375rem;
            transition: ease .5s; 
          }
          
          @media screen and (max-width: 575.98px) {
            #about .wrapper {
              margin: 0; 
            }
          }
          
          @media (min-width: 767px) and (max-width: 991.98px) {
            #about .wrapper {
              padding: 0; 
            }
          }
          
          #about .wrapper .inter {
            position: absolute;
            left: -15%;
            top: 25%;
            z-index: 2;
            transform: rotate(-90deg); 
          }
          
          @media screen and (max-width: 575.98px) {
            #about .wrapper .inter {
              display: none; 
            }
          }
          
          #about .wrapper .inter h6 {
            color: #fff;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: .5px; 
          }
          
          #about .wrapper .left-wrapper,
          #about .wrapper .right-wrapper {
            display: flex;
            flex-direction: column;
            flex-flow: column nowrap;
            flex: 1 1 50%;
            width: calc(50%);
            max-width: calc(50%);
            padding: .9375rem;
            position: relative; 
          }
          
          @media screen and (max-width: 767.98px) {
            #about .wrapper .left-wrapper,
            #about .wrapper .right-wrapper {
              flex: 1 1 100%;
              width: 100%;
              max-width: 100%;
            }
          }
          
          #about .wrapper .left-wrapper .content,
          #about .wrapper .right-wrapper .content {
            display: block;
            position: relative;
            padding: .9375rem;
            margin: 1.25rem 0;
            transition: all ease .3s; 
          }
          
          @media screen and (max-width: 767.98px) {
            #about .wrapper .left-wrapper .content,
            #about .wrapper .right-wrapper .content {
              margin: 0; 
            }
          }
          
          #about .wrapper .left-wrapper .content .title,
          #about .wrapper .right-wrapper .content .title {
            display: inline-block;
            margin: 1.25rem 0;
            position: relative;
          }
          
          @media screen and (max-width: 767.98px) {
            #about .wrapper .left-wrapper .content .title,
            #about .wrapper .right-wrapper .content .title {
              margin: 0; 
            }
          }
          
          #about .wrapper .left-wrapper .content .title h4,
          #about .wrapper .right-wrapper .content .title h4 {
            color: #fff;
            font-size: 1rem;
            display: block;
            margin: .3125rem 0 3.125rem 0; 
          }
          
          @media screen and (max-width: 575.98px) {
            #about .wrapper .left-wrapper .content .title h4,
            #about .wrapper .right-wrapper .content .title h4 {
              margin: 0; 
            }
          }
          
          @media (min-width: 576px) and (max-width: 767.98px) {
            #about .wrapper .left-wrapper .content .title h4,
            #about .wrapper .right-wrapper .content .title h4 {
              margin: .3125rem 0 .625rem 0; 
            }
          }
          
          #about .wrapper .left-wrapper .content .title h2,
          #about .wrapper .right-wrapper .content .title h2 {
            display: block;
            font-size: 2.5rem;
            color: #fff;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 3.125rem;
            letter-spacing: .0625rem;
            margin: .3125rem 0 1.875rem 0; 
          }
          
          @media screen and (max-width: 575.98px) {
            #about .wrapper .left-wrapper .content .title h2,
            #about .wrapper .right-wrapper .content .title h2 {
              font-size: 1.5625rem;
              line-height: 2.1875rem;
              margin: .625rem 0; 
            }
          }
          
          @media (min-width: 576px) and (max-width: 767.98px) {
            #about .wrapper .left-wrapper .content .title h2,
            #about .wrapper .right-wrapper .content .title h2 {
              font-size: 1.875rem;
              line-height: 2.5rem;
              margin-bottom: .625rem; 
            }
          }
          
          @media (min-width: 768px) and (max-width: 991.98px) {
            #about .wrapper .left-wrapper .content .title h2,
            #about .wrapper .right-wrapper .content .title h2 {
              font-size: 2rem;
              line-height: 2.375rem;
              margin-bottom: .625rem; 
            }
          }
          
          #about .wrapper .left-wrapper .content .title h2 span,
          #about .wrapper .right-wrapper .content .title h2 span {
            color: #E31C25; 
          }
          
          #about .wrapper .left-wrapper .content .title p,
          #about .wrapper .right-wrapper .content .title p {
            color: #9e9e9e;
            font-size: .9375rem;
            line-height: 1.6875rem;
            display: inline-block;
            margin: 1.25rem 0;
            text-align: justify; 
          }
          
          @media screen and (max-width: 575.98px) {
            #about .wrapper .left-wrapper .content .title p,
            #about .wrapper .right-wrapper .content .title p {
              font-size: .875rem;
              margin: .3125rem 0; 
            }
          }
          
          @media (min-width: 576px) and (max-width: 767.98px) {
            #about .wrapper .left-wrapper .content .title p,
            #about .wrapper .right-wrapper .content .title p {
              margin: .3125rem 0; 
            }
          }
    #about .wrapper .right-wrapper {
      display: flex;
      flex-direction: column;
      flex-flow: column nowrap;
      width: calc(50%);
      max-width: calc(50%);
      float: right;
      padding: .9375rem;
      position: relative; }
      @media screen and (max-width: 767.98px) {
        #about .wrapper .right-wrapper {
          width: calc(100%);
          max-width: calc(100%);
          padding-top: 0; } }
      #about .wrapper .right-wrapper .content {
        display: block;
        position: relative;
        padding: .9375rem;
        margin: 1.25rem 0;
        transition: all ease .3s; }
        @media screen and (max-width: 575.98px) {
          #about .wrapper .right-wrapper .content {
            margin: 0; } }
        @media (min-width: 576px) and (max-width: 767.98px) {
          #about .wrapper .right-wrapper .content {
            margin: .625rem 0; } }
        #about .wrapper .right-wrapper .content ._re_uy_iu {
          display: inline-block;
          margin: 1.25rem 0;
          width: 100%;
          color:whitesmoke; }
        #about .wrapper .right-wrapper .content ._re_uy_iu ol,
        #about .wrapper .right-wrapper .content ._re_uy_iu ol li {
          display: inline-block;
          margin: 0.25rem 0;
          width: 100%;
          color:whitesmoke; }
          @media screen and (max-width: 575.98px) {
            #about .wrapper .right-wrapper .content ._re_uy_iu,
            #about .wrapper .right-wrapper .content ._re_uy_iu ol,
            #about .wrapper .right-wrapper .content ._re_uy_iu ol li {
              margin: 0;
              color:whitesmoke; } }
          @media (min-width: 576px) and (max-width: 767.98px) {
            #about .wrapper .right-wrapper .content ._re_uy_iu,
            #about .wrapper .right-wrapper .content ._re_uy_iu ol,
            #about .wrapper .right-wrapper .content ._re_uy_iu ol li  {
              margin: .625rem 0;
              color:whitesmoke; } }
          #about .wrapper .right-wrapper .content ._re_uy_iu h5 {
            display: flex;
            flex: 1 1 100%;
            align-items: center;
            color: #ff0000;;
            justify-content: space-between; }
            
          #about .wrapper .right-wrapper .content ._re_uy_iu ._ol_ew_xs {
            display: flex;
            flex: 1 1 100%;
            align-items: center;
            color: #ffffff;
            justify-content: space-between; }
            #about .wrapper .right-wrapper .content ._re_uy_iu ._ol_ew_xs span {
              font-size: 1rem;
              color: #9e9e9e;
              margin: .3125rem 0 .625rem 0; }
          #about .wrapper .right-wrapper .content ._re_uy_iu .progress {
            height: .4375rem;
            background: #fff;
            position: relative;
            margin-bottom: 1.875rem; }
            #about .wrapper .right-wrapper .content ._re_uy_iu .progress .my-bars {
              background: #E31C25;
              max-width: 100%;
              width: 100%; }
      #about .wrapper .right-wrapper ._yt_er_ol {
        display: flex;
        flex-flow: column nowrap;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 0rem;
        padding-left: 0rem;
        padding-right: 0rem; }
        @media screen and (max-width: 991.98px) {
          #about .wrapper .right-wrapper ._yt_er_ol {
            padding: 0 .9375rem; } }
            #about .wrapper {
              display: flex;
              flex-direction: row;
              flex-wrap: nowrap;
              justify-content: space-between;
            }
            
            #about .wrapper .left-three-wrapper,
            #about .wrapper .center-three-wrapper,
            #about .wrapper .right-three-wrapper {
              display: flex;
              flex-direction: column;
              flex-flow: column nowrap;
              width: calc(33.33%);
              max-width: calc(33.33%);
              padding: .9375rem;
              position: relative;
            }
            
            @media screen and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper,
              #about .wrapper .center-three-wrapper,
              #about .wrapper .right-three-wrapper {
                width: calc(100%);
                max-width: calc(100%);
              }
            }
            
            #about .wrapper .left-three-wrapper .content,
            #about .wrapper .center-three-wrapper .content,
            #about .wrapper .right-three-wrapper .content {
              display: block;
              position: relative;
              padding: .9375rem;
              margin: 1.25rem 0;
              transition: all ease .3s;
            }
            
            @media screen and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content,
              #about .wrapper .center-three-wrapper .content,
              #about .wrapper .right-three-wrapper .content {
                margin: 0;
              }
            }
            
            #about .wrapper .left-three-wrapper .content .title,
            #about .wrapper .center-three-wrapper .content .title,
            #about .wrapper .right-three-wrapper .content .title {
              display: inline-block;
              margin: 1.25rem 0;
              position: relative;
            }
            
            @media screen and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content .title,
              #about .wrapper .center-three-wrapper .content .title,
              #about .wrapper .right-three-wrapper .content .title {
                margin: 0;
              }
            }
            
            #about .wrapper .left-three-wrapper .content .title h4,
            #about .wrapper .center-three-wrapper .content .title h4,
            #about .wrapper .right-three-wrapper .content .title h4 {
              color: #fff;
              font-size: 1rem;
              display: block;
              margin: .3125rem 0 3.125rem 0;
            }
            
            @media screen and (max-width: 575.98px) {
              #about .wrapper .left-three-wrapper .content .title h4,
              #about .wrapper .center-three-wrapper .content .title h4,
              #about .wrapper .right-three-wrapper .content .title h4 {
                margin: 0;
              }
            }
            
            @media (min-width: 576px) and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content .title h4,
              #about .wrapper .center-three-wrapper .content .title h4,
              #about .wrapper .right-three-wrapper .content .title h4 {
                margin: .3125rem 0 .625rem 0;
              }
            }
            
            #about .wrapper .left-three-wrapper .content .title h2,
            #about .wrapper .center-three-wrapper .content .title h2,
            #about .wrapper .right-three-wrapper .content .title h2 {
              display: block;
              font-size: 2.5rem;
              color: #fff;
              text-transform: uppercase;
              font-weight: 600;
              line-height: 3.125rem;
              letter-spacing: .0625rem;
              margin: .3125rem 0 1.875rem 0;
            }
            
            @media screen and (max-width: 575.98px) {
              #about .wrapper .left-three-wrapper .content .title h2,
              #about .wrapper .center-three-wrapper .content .title h2,
              #about .wrapper .right-three-wrapper .content .title h2 {
                font-size: 1.5625rem;
                line-height: 2.1875rem;
                margin: .625rem 0;
              }
            }
            
            @media (min-width: 576px) and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content .title h2,
              #about .wrapper .center-three-wrapper .content .title h2,
              #about .wrapper .right-three-wrapper .content .title h2 {
                font-size: 1.875rem;
                line-height: 2.5rem;
                margin-bottom: .625rem;
              }
            }
            
            @media (min-width: 768px) and (max-width: 991.98px) {
              #about .wrapper .left-three-wrapper .content .title h3,
              #about .wrapper .center-three-wrapper .content .title h3,
              #about .wrapper .right-three-wrapper .content .title h3 {
                font-size: 2rem;
                line-height: 2.375rem;
                margin-bottom: .625rem;
              }
            }
            
            #about .wrapper .left-three-wrapper .content .title h3 span,
            #about .wrapper .center-three-wrapper .content .title h3 span,
            #about .wrapper .right-three-wrapper .content .title h3 span {
              color: #E31C25;
            }
            
            #about .wrapper .left-three-wrapper .content .title p,
            #about .wrapper .center-three-wrapper .content .title p,
            #about .wrapper .right-three-wrapper .content .title p {
              color: #9e9e9e;
              font-size: .9375rem;
              line-height: 1.6875rem;
              display: inline-block;
              margin: 1.25rem 0;
              text-align: justify;
            }
            
            @media screen and (max-width: 575.98px) {
              #about .wrapper .left-three-wrapper .content .title p,
              #about .wrapper .center-three-wrapper .content .title p,
              #about .wrapper .right-three-wrapper .content .title p {
                font-size: .875rem;
                margin: .3125rem 0;
              }
            }
            
            @media (min-width: 576px) and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content .title p,
              #about .wrapper .center-three-wrapper .content .title p,
              #about .wrapper .right-three-wrapper .content .title p {
                margin: .3125rem 0;
              }
            }
            
            #about .wrapper .left-three-wrapper .content ._re_uy_iu,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu {
              display: block;
              margin: 1.25rem 0;
              width: 100%;
              font-size: 1rem;
              color: #9e9e9e;
            }
            
            @media screen and (max-width: 575.98px) {
              #about .wrapper .left-three-wrapper .content ._re_uy_iu,
              #about .wrapper .center-three-wrapper .content ._re_uy_iu,
              #about .wrapper .right-three-wrapper .content ._re_uy_iu {
                margin: 0;
                font-size: 1rem;
                color: #9e9e9e;
              }
            }
            
            @media (min-width: 576px) and (max-width: 767.98px) {
              #about .wrapper .left-three-wrapper .content ._re_uy_iu,
              #about .wrapper .center-three-wrapper .content ._re_uy_iu,
              #about .wrapper .right-three-wrapper .content ._re_uy_iu {
                margin: .625rem 0;
                font-size: 1rem;
                color: #ffffff;
              }
            }
            #about .wrapper .left-three-wrapper .content ._re_uy_iu ul,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu ul,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu ul {
              list-style-type: disc;
              padding-left: 20px;
              color: #ffffff; /* Adjust color as needed */
              font-size: 1rem; /* Adjust font size as needed */
              margin: 0; /* Adjust margin as needed */
            }

            #about .wrapper .left-three-wrapper .content ._re_uy_iu span,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu span,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu span {
              list-style-type: disc;
              color: #ff0000; /* Adjust color as needed */
              font-size: 1rem; /* Adjust font size as needed */
              margin: 0; /* Adjust margin as needed */
              font-weight: bold; /* Make text bold */
            }

            #about .wrapper .left-three-wrapper .content ._re_uy_iu ul li,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu ul li,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu ul li {
              list-style-type: disc;
              margin: 0.5rem 0; /* Adjust margin between list items as needed */
              line-height: 1.5rem; /* Adjust line height as needed */
              color: #ffffff
            }

            #about .wrapper .left-three-wrapper .content ._re_uy_iu ul li::marker,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu ul li::marker,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu ul li::marker {
              color: white; /* Change bullet color to white */
            }

            #about .wrapper .left-three-wrapper .content ._re_uy_iu ul li p,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu ul li p,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu ul li p {
              list-style-type: disc;
              color: #9e9e9e; /* Adjust color as needed */
              font-size: 1rem; /* Adjust font size as needed */
              margin: 0; /* Adjust margin as needed */
              font-weight: lighter;
            }
            
            #about .wrapper .left-three-wrapper .content ._re_uy_iu ._ol_ew_xs,
            #about .wrapper .center-three-wrapper .content ._ol_ew_xs,
            #about .wrapper .right-three-wrapper .content ._ol_ew_xs {
              display: flex;
              flex: 1 1 100%;
              align-items: center;
              justify-content: space-between;
            }
            
            #about .wrapper .left-three-wrapper .content ._re_uy_iu ._ol_ew_xs span,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu ._ol_ew_xs span,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu ._ol_ew_xs span {
              font-size: 1rem;
              color: #9e9e9e;
              margin: .3125rem 0 .625rem 0;
            }
            
            #about .wrapper .left-three-wrapper .content ._re_uy_iu .progress,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu .progress,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu .progress {
              height: .4375rem;
              background: #fff;
              position: relative;
              margin-bottom: 1.875rem;
            }
            
            #about .wrapper .left-three-wrapper .content ._re_uy_iu .progress .my-bars,
            #about .wrapper .center-three-wrapper .content ._re_uy_iu .progress .my-bars,
            #about .wrapper .right-three-wrapper .content ._re_uy_iu .progress .my-bars {
              background: #E31C25;
              max-width: 100%;
              width: 100%;
            }
            

#resume {
  background: url(../images/background/slide-02.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 575.98px) {
    #resume {
      height: auto; } }
  #resume::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); }
  #resume .copy-right {
    position: absolute;
    bottom: 2.5rem;
    z-index: 2;
    left: 5%; }
    #resume .copy-right h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .5px; }
  #resume .my-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: 1.25rem 0;
    padding: .9375rem;
    transition: ease .5s; }
    @media screen and (max-width: 575.98px) {
      #resume .my-wrapper {
        margin: 0; } }
    #resume .my-wrapper .inter {
      position: absolute;
      left: -15%;
      top: 14%;
      z-index: 2;
      transform: rotate(-90deg); }
      @media screen and (max-width: 575.98px) {
        #resume .my-wrapper .inter {
          display: none; } }
      #resume .my-wrapper .inter h6 {
        color: #fff;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: .5px;
        text-transform: uppercase; }
    #resume .my-wrapper .left-wrapper,
    #resume .my-wrapper .right-wrapper {
      display: flex;
      flex-direction: column;
      flex-flow: column nowrap;
      flex: 1 1 50%;
      width: calc(50%);
      max-width: calc(50%);
      padding: .9375rem;
      position: relative; }
      @media screen and (max-width: 767.98px) {
        #resume .my-wrapper .left-wrapper, 
        #resume .my-wrapper .right-wrapper {
          flex: 1 1 100%;
          width: calc(100%);
          max-width: calc(100%); } }
      #resume .my-wrapper .left-wrapper .content, 
      #resume .my-wrapper .right-wrapper .content {
        display: block;
        position: relative;
        padding: .9375rem;
        margin: 1.25rem 0;
        transition: all ease .3s; }
        @media screen and (max-width: 575.98px) {
          #resume .my-wrapper .left-wrapper .content, 
          #resume .my-wrapper .right-wrapper .content {
            padding: 0;
            margin: .625rem 0; } }
        #resume .my-wrapper .left-wrapper .content .head, 
        #resume .my-wrapper .right-wrapper .content .head {
          position: relative;
          text-align: center;
          display: inline-block;
          width: 100%;
          background: rgba(227, 28, 37, 0.7);
          padding: .9375rem; }
          @media screen and (max-width: 575.98px) {
            #resume .my-wrapper .left-wrapper .content .head, #resume .my-wrapper .right-wrapper .content .head {
              padding: .625rem; } }
          #resume .my-wrapper .left-wrapper .content .head h2, #resume .my-wrapper .right-wrapper .content .head h2 {
            font-size: 1.25rem;
            color: #fff;
            text-transform: capitalize;
            display: block; }
            @media screen and (max-width: 575.98px) {
              #resume .my-wrapper .left-wrapper .content .head h2, #resume .my-wrapper .right-wrapper .content .head h2 {
                font-size: 1rem; } }
        #resume .my-wrapper .left-wrapper .content .list-inner, #resume .my-wrapper .right-wrapper .content .list-inner {
          display: block;
          padding: 1.25rem 1.875rem;
          background: rgba(0, 0, 0, 0.5);
          position: relative;
          height: 100%; }
          @media screen and (max-width: 575.98px) {
            #resume .my-wrapper .left-wrapper .content .list-inner, #resume .my-wrapper .right-wrapper .content .list-inner {
              padding: .625rem 1.25rem; } }
          #resume .my-wrapper .left-wrapper .content .list-inner ol li, #resume .my-wrapper .right-wrapper .content .list-inner ol li {
            display: block;
            padding: 0.25rem 0 0.25rem 1.25rem;
            position: relative;
            transition: all ease-in-out .5s; }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li:nth-child(10), #resume .my-wrapper .right-wrapper .content .list-inner ol li:nth-child(10) {
              padding-bottom: .3125rem; }
              #resume .my-wrapper .left-wrapper .content .list-inner ol li:nth-child(10)::before, #resume .my-wrapper .right-wrapper .content .list-inner ol li:nth-child(10)::before {
                top: 0; }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li::after, #resume .my-wrapper .right-wrapper .content .list-inner ol li::after {
              position: absolute;
              content: "";
              width: .9375rem;
              height: .9375rem;
              background: #E31C25;
              border-radius: 50%;
              left: -7.5px;
              top: 1.375rem;
              border: .125rem solid #ddd; }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li::before, #resume .my-wrapper .right-wrapper .content .list-inner ol li::before {
              position: absolute;
              content: "";
              left: 0;
              top: 1.375rem;
              height: 100%;
              width: .0625rem;
              background: #ddd; }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li h4, #resume .my-wrapper .right-wrapper .content .list-inner ol li h4 {
              display: block;
              color: #fff;
              font-size: 1.125rem;
              text-transform: capitalize; }
              @media screen and (max-width: 575.98px) {
                #resume .my-wrapper .left-wrapper .content .list-inner ol li h4, #resume .my-wrapper .right-wrapper .content .list-inner ol li h4 {
                  font-size: 1rem; } }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li h6, #resume .my-wrapper .right-wrapper .content .list-inner ol li h6 {
              font-size: 1rem;
              display: inline-block;
              margin: .625rem 0;
              color: #9e9e9e; }
              @media screen and (max-width: 575.98px) {
                #resume .my-wrapper .left-wrapper .content .list-inner ol li h6, #resume .my-wrapper .right-wrapper .content .list-inner ol li h6 {
                  font-size: .9375rem; } }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li span, #resume .my-wrapper .right-wrapper .content .list-inner ol li span {
              display: block;
              color: #E31C25;
              font-size: 1rem;
              margin: .3125rem 0; }
              @media screen and (max-width: 575.98px) {
                #resume .my-wrapper .left-wrapper .content .list-inner ol li span, #resume .my-wrapper .right-wrapper .content .list-inner ol li span {
                  font-size: .9375rem; } }
            #resume .my-wrapper .left-wrapper .content .list-inner ol li p, #resume .my-wrapper .right-wrapper .content .list-inner ol li p {
              font-size: 1rem;
              text-align: justify;
              line-height: 1.5625rem;
              color: #9e9e9e;
              display: inline-block;
              margin: .3125rem 0; }
              @media screen and (max-width: 575.98px) {
                #resume .my-wrapper .left-wrapper .content .list-inner ol li p, #resume .my-wrapper .right-wrapper .content .list-inner ol li p {
                  font-size: .9375rem;
                  line-height: 1.375rem; } }

#portfolio {
  padding: 0rem 0;
  background: #000000;
  overflow: hidden; }
  #portfolio .copy-right {
    position: absolute;
    bottom: 2.5rem;
    z-index: 2;
    left: 5%; }
    #portfolio .copy-right h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .5px; }
  #portfolio .my-wrapper {
    /* border-top: 5px solid red; */
    /* border */
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    position: relative; }
    @media screen and (max-width: 767.98px) {
      #portfolio .my-wrapper {
        margin: .625rem 0; } }
    #portfolio .my-wrapper .inter {
      position: absolute;
      left: -15%;
      top: 23%;
      z-index: 2;
      transform: rotate(-90deg); }
      @media screen and (max-width: 575.98px) {
        #portfolio .my-wrapper .inter {
          display: none; } }
      #portfolio .my-wrapper .inter h6 {
        color: #fff;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: .5px;
        text-transform: uppercase; }
    #portfolio .my-wrapper .wrapper-box {
      position: relative;
      display: block;
      width: 100%;
      max-width: 100%;
      margin: 1.25rem 0;
      transform: translate(0);
      z-index: 99; }
      @media screen and (max-width: 575.98px) {
        #portfolio .my-wrapper .wrapper-box {
          margin: 0; } }
      #portfolio .my-wrapper .wrapper-box .content {
        padding: .9375rem;
        position: relative;
        display: inline-block;
        width: 100%;
      }
        #portfolio .my-wrapper .wrapper-box .content .nav-tabs {
          display: flex;
          flex: 1 1 100%;
          flex-wrap: wrap;
          max-width: 100%;
          width: 100%;
          align-items: center;
          justify-content: center;
          border: 0; }
          @media screen and (max-width: 575.98px) {
            #portfolio .my-wrapper .wrapper-box .content .nav-tabs {
              justify-content: flex-start; } }
          #portfolio .my-wrapper .wrapper-box .content .nav-tabs .nav-item {
            background: #E31C25;
            color: #fff;
            border-radius: 0;
            margin: .625rem;
            transition: all ease-in-out .5s; }
            #portfolio .my-wrapper .wrapper-box .content .nav-tabs .nav-item:hover a, #portfolio .my-wrapper .wrapper-box .content .nav-tabs .nav-item:active a {
              border: 0; }
            #portfolio .my-wrapper .wrapper-box .content .nav-tabs .nav-item a {
              color: #fff;
              font-size: 1rem;
              text-transform: capitalize;
              transition: all ease-in-out .5s;
              border: 0;
              border-radius: 0;
              background: #E31C25; }
              #portfolio .my-wrapper .wrapper-box .content .nav-tabs .nav-item a.active {
                background: #fff;
                color: #E31C25; }
        #portfolio .my-wrapper .wrapper-box .content .tab-content {
          display: inline-block;
          width: 100%;
          margin: 1.25rem 0;
          position: relative;
          transition: all ease-in-out .5s; }
          #portfolio .my-wrapper .wrapper-box .content .tab-content .active {
            transition: all ease-in-out .5s; }
          #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list {
            display: block;
            position: relative; }
            #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol {
              display: flex;
              flex: 1 1 100%;
              flex-wrap: wrap;
              max-width: 100%;
              width: 100%;
              align-items: center; }
              #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li {
                display: inline-block;
                width: 25%;
                max-width: 25%;
                position: relative;
                padding: .9375rem;
                transition: all ease .5s;
                transform: translateY(0);
                z-index: 9; }
                @media screen and (max-width: 575.98px) {
                  #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li {
                    width: 100%;
                    max-width: 100%; } }
                @media (min-width: 576px) and (max-width: 767.98px) {
                  #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li {
                    width: 50%;
                    max-width: 50%; } }
                @media (min-width: 768px) and (max-width: 991.98px) {
                  #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li {
                    width: 33.3%;
                    max-width: 33.3%; } }
                #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs {
                  display: block;
                  width: 100%;
                  height: 100%;
                  border-radius: .3125rem;
                  overflow: hidden; }
                  #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs:hover figure {
                    transform: scale(1.2); }
                    #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs:hover figure .inner-content {
                      transform: translateY(0); }
                      #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs:hover figure .inner-content a {
                        opacity: 1;
                        visibility: visible; }
                  #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure {
                    position: relative;
                    margin: 0;
                    transition: all ease-in-out .5s;
                    overflow: hidden; }
                    #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content {
                      position: absolute;
                      left: 0;
                      top: 0;
                      height: 100%;
                      width: 100%;
                      background: rgba(0, 0, 0, 0.5);
                      display: flex;
                      flex-wrap: wrap;
                      flex-flow: column;
                      align-items: center;
                      justify-content: center;
                      transition: all ease-in-out .5s;
                      overflow: hidden;
                      transform: translateX(-100%); }
                      #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content span {
                        color: #fff;
                        font-size: .875rem;
                        text-transform: uppercase;
                        display: inline-block;
                        margin: .3125rem 0 .625rem 0;
                        font-weight: 400;
                        transition: all ease-in-out .7s; }
                      #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content a {
                        padding: .3125rem 1.125rem;
                        background: #E31C25;
                        color: #fff;
                        font-size: .8125rem;
                        letter-spacing: .5px;
                        font-weight: 400;
                        text-transform: capitalize;
                        display: block;
                        position: relative;
                        transition: all ease-in-out .5s;
                        opacity: 0;
                        visibility: hidden;
                        z-index: 1;
                        border-radius: .1875rem;
                        border: 0;
                        overflow: hidden; }
                        #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content a:hover {
                          color: #E31C25; }
                          #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content a:hover::before {
                            width: 100%; }
                        #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list ol li ._ok-vd_zs figure .inner-content a::before {
                          position: absolute;
                          content: "";
                          left: 0;
                          top: 0;
                          height: 100%;
                          width: 0;
                          background: #fff;
                          transition: all ease-in-out .6s;
                          z-index: -1;
                          bottom: 0;
                          right: 0; }
            #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all {
              display: block;
              margin: 1.25rem 0;
              position: relative;
              text-align: center; }
              #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all ul li {
                display: inline-block;
                position: relative;
                padding: .5rem 1.5625rem;
                border-radius: 1.25rem;
                background: #E31C25;
                z-index: 2;
                transition: all ease-in-out .5s;
                margin: .625rem 0;
                overflow: hidden; }
                #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all ul li:hover::before {
                  width: 100%; }
                #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all ul li:hover a {
                  color: #E31C25; }
                #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all ul li::before {
                  position: absolute;
                  content: "";
                  top: 0;
                  right: 0;
                  height: 100%;
                  width: 0;
                  background: #fff;
                  z-index: -1;
                  transition: all ease-in-out .5s; }
                #portfolio .my-wrapper .wrapper-box .content .tab-content .content-list .link-all ul li a {
                  display: block;
                  width: 100%;
                  color: #fff;
                  font-size: .8125rem;
                  letter-spacing: .5px;
                  position: relative;
                  z-index: 1;
                  transition: all ease-in-out .5s; }

#contact {
  background: #000; }
  #contact .copy-right {
    position: absolute;
    bottom: 2.5rem;
    z-index: 2;
    left: 5%; }
    #contact .copy-right h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .5px; }
  #contact .inter {
    position: absolute;
    left: -15%;
    top: 14%;
    z-index: 2;
    transform: rotate(-90deg); }
    @media screen and (max-width: 575.98px) {
      #contact .inter {
        display: none; } }
    #contact .inter h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 400;
      letter-spacing: .5px;
      text-transform: uppercase; }
  #contact .heading {
    display: block;
    margin: 1.25rem 0;
    position: relative; }
    #contact .heading h2 {
      font-size: 1.875rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #fff;
      position: relative;
      margin: .625rem 0;
      display: inline-block;
      padding-bottom: .625rem; }
      #contact .heading h2::before {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 50%;
        height: .3125rem;
        background: #fff; }
  #contact form {
    display: block;
    margin: 1.25rem 0;
    position: relative; }
    #contact form .send {
      display: inline-block;
      margin: 1.25rem 0;
      position: relative; }
      #contact form .send a {
        padding: .625rem 1.125rem;
        background: #E31C25;
        color: #fff;
        font-size: .9375rem;
        text-transform: capitalize; }
    #contact form .form-group {
      display: inline-block;
      margin: 1.25rem 0;
      width: 100%; }
      #contact form .form-group .form-control {
        display: inline-block;
        width: 100%;
        background: #131313;
        border-radius: 0;
        min-height: 3.125rem;
        height: 3.125rem;
        border: 0;
        color: #9e9e9e;
        font-size: .9375rem;
        appearance: none; }
        #contact form .form-group .form-control:active, #contact form .form-group .form-control:focus {
          background: #131313; }
      #contact form .form-group textarea {
        display: inline-block;
        width: 100%;
        background: #131313;
        border-radius: 0;
        border: 0;
        color: #9e9e9e;
        font-size: .9375rem;
        transform-origin: all 5s;
        appearance: none;
        padding: .375rem .75rem; }
        #contact form .form-group textarea:focus, #contact form .form-group textarea:active {
          outline: none;
          box-shadow: none; }