@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
* {
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#home {
  background: url("../img/onpc.webp") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
}
#home .home-overlay-color {
  background-color: rgba(255, 255, 255, 0.8);
  height: 100vh;
}
#home .row {
  padding-top: 150px;
}
#home .row .left {
  padding-left: 40px;
}
#home .row .left .speech-bubble {
  background-color: #0bceaf;
  color: white;
  width: 30%;
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  margin-bottom: 35px;
  visibility: hidden;
}
#home .row .left h1 {
  font-size: 3rem;
  font-weight: 500;
  padding-bottom: 20px;
  visibility: hidden;
}
#home .row .left h1 span.secondary-title {
  font-size: 2.2rem;
  font-weight: 300;
  padding-bottom: 30px;
}
#home .row .left ul.info {
  visibility: hidden;
}
#home .row .left ul.info li .fas {
  margin-right: 10px;
}
#home .row .left ul.info li .fas:hover {
  color: #0bceaf;
}
#home .row .left ul.info li:not(:last-child) {
  padding-bottom: 25px;
}
#home .row .left ul.info a {
  text-decoration: none;
  color: #000;
  font-size: 1.1rem;
  font-weight: 400;
}
#home .row .left ul.info a:hover {
  color: #0bceaf !important;
}
#home .row .left ul.info a:visited {
  color: #000;
}
#home .row .left ul.info span {
  font-size: 1.1rem;
}
#home .row .left ul.social-links {
  margin-top: 30px;
  display: flex;
  visibility: hidden;
}
#home .row .left ul.social-links li {
  padding: 15px;
  margin-right: 20px;
  cursor: pointer;
  border-radius: 5px;
}
#home .row .left ul.social-links li .fab {
  font-size: 25px;
  color: #0bceaf;
}
#home .row .left ul.social-links li:hover {
  color: #0bceaf;
  background-color: #000;
}
#home .row .left ul.social-links a:visited {
  color: #0bceaf;
}
#home .row .left button.add-button {
  margin-top: 15px;
  visibility: hidden;
}
#home .row .right .outer-circle {
  background-color: #0bceaf;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}
#home .row .right .outer-circle .circle-frame {
  width: 400px;
  height: 400px;
  background: url("../img/angel-pfp6.webp") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
    height: 800px;
  }
  #home .home-overlay-color {
    background-color: rgba(255, 255, 255, 0.8);
    height: 800px;
  }
  #home .row {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #home .row .left {
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  #home .row .left .speech-bubble {
    width: 50%;
    margin: 0 auto;
    margin-top: 35px;
    font-size: 1rem;
  }
  #home .row .left h1 {
    font-size: 2rem;
    padding-top: 20px;
  }
  #home .row .left h1 span.secondary-title {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  #home .row .left ul.info li .fas {
    margin-right: 10px;
  }
  #home .row .left ul.info li .fas:hover {
    color: #0bceaf;
  }
  #home .row .left ul.info li:not(:last-child) {
    padding-bottom: 25px;
  }
  #home .row .left ul.info a {
    text-decoration: none;
    color: #000;
  }
  #home .row .left ul.info a:visited {
    color: #000;
  }
  #home .row .left ul.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home .row .left ul.social-links li {
    margin-right: 0;
  }
  #home .row .left ul.social-links li:not(:last-child) {
    margin-right: 10px;
  }
  #home .row .left button.add-button {
    margin: 0 auto;
  }
  #home .row .right {
    margin: 0 auto;
    text-align: center;
  }
  #home .row .right .outer-circle {
    width: 300px;
    height: 300px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
    height: 800px;
  }
  #home .home-overlay-color {
    background-color: rgba(255, 255, 255, 0.8);
    height: 800px;
  }
  #home .row {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #home .row .left {
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  #home .row .left .speech-bubble {
    width: 50%;
    margin: 0 auto;
    margin-top: 35px;
    font-size: 1rem;
  }
  #home .row .left h1 {
    font-size: 2rem;
    padding-top: 20px;
  }
  #home .row .left h2 {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  #home .row .left ul.info li .fas {
    margin-right: 10px;
  }
  #home .row .left ul.info li .fas:hover {
    color: #0bceaf;
  }
  #home .row .left ul.info li:not(:last-child) {
    padding-bottom: 25px;
  }
  #home .row .left ul.info a {
    text-decoration: none;
    color: #000;
  }
  #home .row .left ul.info a:visited {
    color: #000;
  }
  #home .row .left ul.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home .row .left ul.social-links li {
    margin-right: 0;
  }
  #home .row .left ul.social-links li:not(:last-child) {
    margin-right: 10px;
  }
  #home .row .left button.add-button {
    margin: 0 auto;
  }
  #home .row .right {
    margin: 0 auto;
    text-align: center;
  }
  #home .row .right .outer-circle {
    width: 300px;
    height: 300px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
    height: 800px;
  }
  #home .home-overlay-color {
    background-color: rgba(255, 255, 255, 0.8);
    height: 800px;
  }
  #home .row {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #home .row .left {
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  #home .row .left .speech-bubble {
    width: 50%;
    margin: 0 auto;
    margin-top: 35px;
    font-size: 1rem;
  }
  #home .row .left h1 {
    font-size: 2rem;
    padding-top: 20px;
  }
  #home .row .left h2 {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  #home .row .left ul.info li .fas {
    margin-right: 10px;
  }
  #home .row .left ul.info li .fas:hover {
    color: #0bceaf;
  }
  #home .row .left ul.info li:not(:last-child) {
    padding-bottom: 25px;
  }
  #home .row .left ul.info a {
    text-decoration: none;
    color: #000;
  }
  #home .row .left ul.info a:visited {
    color: #000;
  }
  #home .row .left ul.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home .row .left ul.social-links li {
    margin-right: 0;
  }
  #home .row .left ul.social-links li:not(:last-child) {
    margin-right: 10px;
  }
  #home .row .left button.add-button {
    margin: 0 auto;
  }
  #home .row .right {
    margin: 0 auto;
    text-align: center;
  }
  #home .row .right .outer-circle {
    width: 300px;
    height: 300px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
    height: 750px;
  }
  #home .home-overlay-color {
    background-color: rgba(255, 255, 255, 0.8);
    height: 750px;
  }
  #home .row {
    padding-top: 100px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #home .row .left {
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  #home .row .left .speech-bubble {
    width: 50%;
    margin: 0 auto;
    margin-top: 35px;
    font-size: 1rem;
  }
  #home .row .left h1 {
    font-size: 2rem;
    padding-top: 20px;
  }
  #home .row .left h2 {
    font-size: 1.5rem;
    padding-bottom: 30px;
  }
  #home .row .left ul.info li .fas {
    margin-right: 10px;
  }
  #home .row .left ul.info li .fas:hover {
    color: #0bceaf;
  }
  #home .row .left ul.info li:not(:last-child) {
    padding-bottom: 25px;
  }
  #home .row .left ul.info a {
    text-decoration: none;
    color: #000;
  }
  #home .row .left ul.info a:visited {
    color: #000;
  }
  #home .row .left ul.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #home .row .left ul.social-links li {
    margin-right: 0;
  }
  #home .row .left ul.social-links li:not(:last-child) {
    margin-right: 10px;
  }
  #home .row .left button.add-button {
    margin: 0 auto;
  }
  #home .row .right {
    margin: 0 auto;
    text-align: center;
  }
  #home .row .right .outer-circle {
    width: 260px;
    height: 260px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 230px;
    height: 230px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
    height: 700px;
  }
  #home .home-overlay-color {
    height: 700px;
  }
  #home .row .left h1 {
    font-size: 2.7rem;
  }
  #home .row .left h2 {
    font-size: 1.7rem;
  }
  #home .row .left ul.info li {
    font-size: 1rem;
  }
  #home .row .right .outer-circle {
    width: 320px;
    height: 320px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 280px;
    height: 280px;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #home {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
    height: 700px;
  }
  #home .home-overlay-color {
    height: 700px;
  }
  #home .row .left {
    padding-left: 60px;
  }
  #home .row .left h2 {
    font-size: 1.7rem;
  }
  #home .row .left ul.info li {
    font-size: 1rem;
  }
  #home .row .right .outer-circle {
    width: 450px;
    height: 450px;
  }
  #home .row .right .outer-circle .circle-frame {
    width: 400px;
    height: 400px;
  }
}
.skills-section {
  padding: 6rem 0;
  background-color: white;
}
.skills-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: #333;
  font-weight: 300;
}
.skills-section .skills-grid {
  max-width: 1200px;
  margin: 0 auto;
}
.skills-section .skills-grid .skills-row {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.skills-section .skills-grid .skills-row.skills-row-visible {
  opacity: 1;
  transform: translateY(0);
}
.skills-section .skills-grid .skills-row:last-child {
  margin-bottom: 0;
}
.skills-section .skills-grid .skill-item.mix {
  display: inline-block;
}
.skills-section .skill-item {
  flex: 0 1 calc(25% - 2rem);
  min-width: 250px;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skills-section .skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.15);
}
.skills-section .skill-item .skill-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.skills-section .skill-item .skill-content img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.skills-section .skill-item .skill-content h3 {
  font-size: 1.25rem;
  color: #333;
  margin: 0;
}
.skills-section .skills-filter {
  text-align: center;
  margin-bottom: 3rem;
}
.skills-section .skills-filter .filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  font-size: 1rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 500;
}
.skills-section .skills-filter .filter-btn:hover {
  color: #0bceaf;
}
.skills-section .skills-filter .filter-btn.active {
  background: #0bceaf;
  color: #fff;
  box-shadow: 0 2px 4px rgba(11, 206, 175, 0.2);
}

@media (max-width: 768px) {
  .skills-section .skill-item {
    flex: 0 1 calc(50% - 2rem);
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .skills-section .skill-item {
    flex: 0 1 100%;
  }
}
.about-section {
  padding: 6rem 0;
  background-color: #fff;
}
.about-section .right {
  padding-left: 3rem;
}
.about-section .subtitle {
  display: block;
  color: #0bceaf;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.3;
  font-weight: 700;
  max-width: 90%;
}
.about-section .about-content {
  margin-bottom: 2.5rem;
}
.about-section .about-content p {
  color: #666;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-section .about-content p:last-child {
  margin-bottom: 0;
}
.about-section .cta-button {
  display: inline-block;
  background-color: #0bceaf;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(11, 206, 175, 0.2);
}
.about-section .cta-button:hover {
  background-color: #089e86;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(11, 206, 175, 0.3);
}
.about-section .cta-button:active {
  transform: translateY(0);
}
.about-section .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}
.about-section .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(11, 206, 175, 0.1), rgba(11, 206, 175, 0.05));
  pointer-events: none;
}
.about-section .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.about-section .image-wrapper img:hover {
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .about-section {
    padding: 4rem 0;
  }
  .about-section h2 {
    font-size: 2rem;
    max-width: 100%;
  }
  .about-section .left {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .about-section .image-wrapper {
    margin-top: 2rem;
  }
  .about-section h2 {
    font-size: 1.75rem;
  }
  .about-section .about-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0;
  }
  .about-section .subtitle {
    font-size: 1rem;
  }
  .about-section h2 {
    font-size: 1.5rem;
  }
}
.work-process-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}
.work-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.work-process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 4rem;
  font-weight: 300;
}
.work-process-section .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.work-process-section .process-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}
.work-process-section .process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}
.work-process-section .process-item:hover .process-number {
  background: #0bceaf;
  color: #fff;
}
.work-process-section .process-icon {
  margin-bottom: 1.5rem;
}
.work-process-section .process-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.work-process-section .process-content h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}
.work-process-section .process-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.work-process-section .process-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #0bceaf;
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: all 0.3s ease;
}
.work-process-section .process-cta {
  text-align: center;
  margin-top: 3rem;
}
.work-process-section .process-cta h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.work-process-section .process-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.work-process-section .process-cta .cta-button {
  display: inline-block;
  background-color: #0bceaf;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(11, 206, 175, 0.2);
}
.work-process-section .process-cta .cta-button:hover {
  background-color: #089e86;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(11, 206, 175, 0.3);
}
.work-process-section .process-cta .cta-button:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .work-process-section {
    padding: 4rem 0;
  }
  .work-process-section .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .work-process-section {
    padding: 3rem 0;
  }
  .work-process-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  .work-process-section .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .work-process-section .process-cta h3 {
    font-size: 1.25rem;
  }
  .work-process-section .process-cta .cta-button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }
}
#featured {
  background: url("../img/onpc.webp") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
#featured .featured-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 100px 0px;
}
#featured .title {
  font-size: 2.5rem;
  font-weight: 300;
  padding: 0px 0px 50px 0px;
  text-align: center;
}
#featured .owl-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#featured .owl-wrapper .owl-carousel .item {
  background-color: transparent;
  width: 1110px;
  position: relative;
}
#featured .owl-wrapper .owl-carousel .item .left .image-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#featured .owl-wrapper .owl-carousel .item .left .image-container img {
  max-width: 100%;
  max-height: 100%;
}
#featured .owl-wrapper .owl-carousel .item .right h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 30px 0;
}
#featured .owl-wrapper .owl-carousel .item .right h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}
#featured .owl-wrapper .owl-carousel .item .right p {
  line-height: 25px;
}
#featured .owl-wrapper .owl-carousel .item .right .proj-btn {
  cursor: pointer;
}
#featured .owl-wrapper .owl-carousel .item .right .proj-btn .proj-link {
  background: #0bceaf;
  border-radius: 20px;
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  transition: all 0.8s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-top: 25px;
  border: none;
}
#featured .owl-wrapper .owl-carousel .item .right .proj-btn .proj-link span {
  margin-right: 7px;
}
#featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
  font-size: 70px;
  position: absolute;
  left: -50px;
  top: 50%;
  outline: none;
}
#featured .owl-wrapper .owl-carousel .owl-nav .owl-prev:hover {
  background-color: transparent;
  color: #0bceaf;
}
#featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
  font-size: 70px;
  position: absolute;
  right: -50px;
  top: 50%;
  outline: none;
}
#featured .owl-wrapper .owl-carousel .owl-nav .owl-next:hover {
  background-color: transparent;
  color: #0bceaf;
}

@media screen and (max-width: 600px) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
  }
  #featured .title {
    padding: 0px 0px 40px 0px;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
    display: none;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
  }
  #featured .title {
    padding: 0px 0px 40px 0px;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
    display: none;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
  }
  #featured .title {
    padding: 0px 0px 40px 0px;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
    display: none;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
  }
  #featured .title {
    font-size: 2rem;
    padding: 0px 0px 20px 0px;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right h2 {
    font-size: 1.8rem;
  }
  #featured .owl-wrapper .owl-carousel .item .right p {
    line-height: 22px;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
    display: none;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center scroll;
    background-attachment: scroll;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
    height: auto;
  }
  #featured .owl-wrapper .owl-carousel .item .left {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left .image-container {
    height: auto;
  }
  #featured .owl-wrapper .owl-carousel .item .right {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .right p {
    line-height: 25px;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  #featured .owl-wrapper .owl-carousel .owl-nav .owl-next {
    display: none;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #featured {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
  }
  #featured .owl-wrapper .owl-carousel .item {
    width: 100%;
  }
  #featured .owl-wrapper .owl-carousel .item .left .image-container {
    max-width: 900px;
    height: auto;
  }
  #featured .owl-wrapper .owl-carousel .item .right p {
    line-height: 25px;
  }
}
#experience {
  background: url("../img/onpc.webp") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#experience .experience-overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px 0;
}
#experience .right {
  padding-top: 40px;
}
#experience .right .education h2 {
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 40px;
  text-align: center;
}
#experience .right .education .box {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 4px rgba(0, 0, 0, 0.0823529412);
  border-radius: 4px;
  margin-bottom: 30px;
  min-height: 200px;
}
#experience .right .education .box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 10px;
}
#experience .right .education .box h3 span {
  color: #0bceaf;
  font-weight: 300;
  font-style: italic;
}
#experience .right .education .box h5 {
  color: #0bceaf;
  padding-bottom: 10px;
}
#experience .right .education .box p {
  line-height: 20px;
}
#experience .left {
  padding-top: 40px;
}
#experience .left .experience h2 {
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 40px;
  text-align: center;
}
#experience .left .experience .box {
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 4px rgba(0, 0, 0, 0.0823529412);
  border-radius: 4px;
  margin-bottom: 30px;
  min-height: 200px;
}
#experience .left .experience .box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 10px;
}
#experience .left .experience .box h3 span {
  color: #0bceaf;
  font-weight: 300;
  font-style: italic;
}
#experience .left .experience .box h5 {
  color: #0bceaf;
  padding-bottom: 10px;
}
#experience .left .experience .box p {
  line-height: 20px;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #experience {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
  }
  #experience .experience-overlay {
    padding: 20px 0;
  }
  #experience .right {
    padding-top: 20px;
  }
  #experience .right .education .box h3 {
    line-height: 30px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  #experience {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
  }
  #experience .experience-overlay {
    padding: 20px 0;
  }
  #experience .right {
    padding-top: 20px;
  }
  #experience .right .education .box h3 {
    line-height: 30px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  #experience {
    background: url("../img/onpc.webp") no-repeat center center cover scroll;
    background-attachment: scroll;
  }
  #experience .experience-overlay {
    padding: 20px 0;
  }
  #experience .right {
    padding-top: 20px;
  }
  #experience .right .education .box h3 {
    line-height: 30px;
  }
}
#portfolio {
  padding-top: 8rem;
  height: auto;
  overflow: hidden;
}
#portfolio h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  padding-bottom: 10px;
}
#portfolio nav {
  padding: 20px 20px 40px 20px;
}
#portfolio nav ul {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
}
#portfolio nav ul li span {
  padding: 15px;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
  line-height: 30px;
  margin-right: 20px;
}
#portfolio nav ul li span:visited {
  color: #000;
}
#portfolio nav ul li span:hover {
  color: #0bceaf;
}
#portfolio nav ul li.active span {
  border-bottom: 2px solid #0bceaf;
}
#portfolio .projects {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: start;
  justify-content: space-around;
}
#portfolio .projects .grid-item {
  width: 325px;
  height: 325px;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  margin-bottom: 1.5rem;
}
#portfolio .projects .grid-item .inside {
  position: relative;
  width: 325px;
  height: 325px;
  display: inline-block;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#portfolio .projects .grid-item .inside img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
}
#portfolio .projects .grid-item .inside .overlay {
  background: rgba(11, 206, 175, 0.7);
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  width: 325px;
  height: 325px;
  border-radius: 5px;
  text-align: center;
}
#portfolio .projects .grid-item .inside .overlay .fas {
  opacity: 1;
  color: #fff;
  font-size: 30px;
  padding-top: 80px;
  margin-bottom: 15px;
}
#portfolio .projects .grid-item .inside .overlay h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: 20px;
  margin-right: -250px;
  visibility: hidden;
}
#portfolio .projects .grid-item .inside .overlay h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-left: -250px;
  visibility: hidden;
}
#portfolio .projects .grid-item .inside .overlay:hover {
  opacity: 1;
}
#portfolio .projects .grid-item .inside .overlay:hover h2 {
  margin-right: 0;
  transition: all 0.8s ease-in-out;
  visibility: visible;
}
#portfolio .projects .grid-item .inside .overlay:hover h3 {
  margin-left: 0;
  transition: all 0.8s ease-in-out;
  visibility: visible;
}
#portfolio .projects .grid-item .inside .overlay-fade {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 600px) {
  #portfolio {
    padding-top: 80px;
  }
  #portfolio nav ul {
    flex-wrap: wrap;
  }
  #portfolio nav ul li span {
    padding: 5px 0;
  }
  #portfolio nav ul li {
    padding-bottom: 10px;
  }
  #portfolio .projects .grid-item {
    margin: 0;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #portfolio {
    padding-top: 80px;
  }
  #portfolio nav ul {
    flex-wrap: wrap;
  }
  #portfolio nav ul li span {
    padding: 5px 0;
  }
  #portfolio nav ul li {
    padding-bottom: 10px;
  }
  #portfolio .projects .grid-item {
    margin: 0;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  #portfolio {
    padding-top: 80px;
  }
  #portfolio nav ul {
    flex-wrap: wrap;
  }
  #portfolio nav ul li span {
    padding: 5px 0;
  }
  #portfolio nav ul li {
    padding-bottom: 10px;
  }
  #portfolio .projects .grid-item {
    margin: 0;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  #portfolio {
    padding-top: 80px;
  }
  #portfolio nav ul {
    flex-wrap: wrap;
  }
  #portfolio nav ul li span {
    padding: 5px 0;
  }
  #portfolio nav ul li {
    padding-bottom: 10px;
  }
  #portfolio .projects .grid-item {
    margin: 0;
    margin-bottom: 1.5rem;
  }
  #portfolio .projects .grid-item .inside {
    width: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #portfolio {
    padding-top: 100px;
  }
  #portfolio .projects .grid-item {
    width: 300px;
  }
}
.fancybox-content {
  display: inline-block;
  max-width: 1200px !important;
  width: 100% !important;
  margin-top: 0px !important;
  margin-left: auto !important;
  height: 550px !important;
  margin-right: auto !important;
  top: 80px !important;
  overflow-y: scroll;
}
.fancybox-content .info h2 {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 25px;
}
.fancybox-content .info p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 30px;
}
.fancybox-content .info .code-boxes {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  flex-wrap: wrap;
}
.fancybox-content .info .code-boxes .box {
  border: 2px solid #0bceaf;
  margin-right: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 7px;
}
.fancybox-content .info .code-boxes .box1 {
  border: 2px solid #0bceaf;
  margin-right: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 7px;
}
.fancybox-content .info .code-boxes .box2 {
  border: 2px solid #0bceaf;
  margin-right: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 7px;
}
.fancybox-content .info .code-boxes .box3 {
  border: 2px solid #0bceaf;
  margin-right: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 7px;
}
.fancybox-content .info .code-boxes .box4 {
  border: 2px solid #0bceaf;
  margin-right: 15px;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 7px;
}
.fancybox-content .info .code-boxes .box-hidden {
  display: none;
}
.fancybox-content .info .code-boxes li:last-child {
  margin-right: 0;
}
.fancybox-content .info .proj-btn {
  margin-top: 40px;
}
.fancybox-content .info .proj-btn .proj-link {
  background-color: #0bceaf;
  border-radius: 5px;
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  transition: all 0.8s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.fancybox-content .info .proj-btn .proj-link span {
  margin-right: 7px;
}
.fancybox-content .info .proj-btn .proj-link:active {
  text-decoration: none;
  color: #fff;
}
.fancybox-content .info .proj-btn .proj-link:visited {
  text-decoration: none;
  color: #fff;
}
.fancybox-content .info .proj-btn .proj-link:hover {
  text-decoration: none;
  color: #fff;
}
.fancybox-content .info .proj-btn .proj-link:focus {
  outline: #0bceaf !important;
}
.fancybox-content .info .proj-btn .proj-link .box-hidden {
  display: none;
}
.fancybox-content .info .proj-btn .git-link {
  background-color: #505050;
  border-radius: 5px;
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  transition: all 0.8s ease-in-out;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  outline: none;
  margin-right: 10px;
}
.fancybox-content .info .proj-btn .git-link:active {
  text-decoration: none;
  color: #fff;
  outline: none;
}
.fancybox-content .info .proj-btn .git-link:visited {
  text-decoration: none;
  color: #fff;
  outline: none;
}
.fancybox-content .info .proj-btn .git-link:hover {
  text-decoration: none;
  color: #fff;
  outline: none;
}
.fancybox-content .info .proj-btn .git-link:focus {
  outline: #0bceaf !important;
}
.fancybox-content .info .proj-btn .box-hidden {
  display: none;
}
.fancybox-content .gallery .img-container {
  margin: 0 auto;
  padding-bottom: 20px;
  display: block;
  width: 600px;
}
.fancybox-content .gallery .img-container .img-fluid {
  max-width: 100%;
  height: auto;
}
.fancybox-content .gallery .img-hidden {
  display: none;
}

@media screen and (max-width: 600px) {
  .fancybox-content {
    padding: 0;
  }
  .fancybox-content .info h1 {
    font-size: 1.7rem;
    padding: 20px 0;
  }
  .fancybox-content .info .code-boxes .box {
    padding: 5px 15px;
  }
  .fancybox-content .info .proj-btn {
    margin-bottom: 20px;
    text-align: center;
  }
  .fancybox-content .info .proj-btn .proj-link {
    padding: 10px 15px;
  }
  .fancybox-content .info .proj-btn .git-link {
    padding: 10px 15px;
  }
  .fancybox-content .gallery .img-container {
    width: 100%;
  }
  .fancybox-content .gallery .img-container .img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .fancybox-content {
    padding: 0;
  }
  .fancybox-content .info h1 {
    font-size: 1.7rem;
    padding: 20px 0;
  }
  .fancybox-content .info .code-boxes .box {
    padding: 5px 15px;
  }
  .fancybox-content .info .proj-btn {
    margin-bottom: 20px;
    text-align: center;
  }
  .fancybox-content .info .proj-btn .proj-link {
    padding: 10px 15px;
  }
  .fancybox-content .info .proj-btn .git-link {
    padding: 10px 15px;
  }
  .fancybox-content .gallery .img-container {
    width: 100%;
  }
  .fancybox-content .gallery .img-container .img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  .fancybox-content {
    padding: 0;
  }
  .fancybox-content .info h1 {
    font-size: 1.7rem;
    padding: 20px 0;
  }
  .fancybox-content .info .code-boxes .box {
    padding: 5px 15px;
  }
  .fancybox-content .info .proj-btn {
    margin-bottom: 20px;
    text-align: center;
  }
  .fancybox-content .info .proj-btn .proj-link {
    padding: 10px 15px;
  }
  .fancybox-content .info .proj-btn .git-link {
    padding: 10px 15px;
  }
  .fancybox-content .gallery .img-container {
    width: 100%;
  }
  .fancybox-content .gallery .img-container .img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  .fancybox-content {
    padding: 0;
  }
  .fancybox-content .info h1 {
    font-size: 1.7rem;
    padding: 20px 0;
  }
  .fancybox-content .info .code-boxes .box {
    padding: 5px 15px;
  }
  .fancybox-content .info .proj-btn {
    margin-bottom: 20px;
    text-align: center;
  }
  .fancybox-content .info .proj-btn .proj-link {
    padding: 10px 15px;
  }
  .fancybox-content .info .proj-btn .git-link {
    padding: 10px 15px;
  }
  .fancybox-content .gallery .img-container {
    width: 100%;
  }
  .fancybox-content .gallery .img-container .img-fluid {
    max-width: 100%;
    height: auto;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .fancybox-content {
    padding: 0;
  }
  .fancybox-content .info h1 {
    font-size: 1.7rem;
    padding: 20px 0;
  }
  .fancybox-content .info .code-boxes .box {
    padding: 5px 15px;
  }
  .fancybox-content .info .proj-btn {
    margin-bottom: 20px;
    text-align: center;
  }
  .fancybox-content .info .proj-btn .proj-link {
    padding: 10px 15px;
  }
  .fancybox-content .info .proj-btn .git-link {
    padding: 10px 15px;
  }
  .fancybox-content .gallery .img-container {
    width: 100%;
  }
  .fancybox-content .gallery .img-container .img-fluid {
    max-width: 100%;
    height: auto;
  }
}
#contact-me {
  background: url("../img/map-color-overlay.webp") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 150px 0;
  height: 800px;
  width: 100%;
  overflow: hidden;
}
#contact-me h2 {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 30px;
}
#contact-me .form-section {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 100%;
}
#contact-me .form-section form {
  display: inline-block;
  margin: 0 auto;
  width: 75%;
}
#contact-me .form-section form .form-control {
  border: 2px solid #cbd0d3;
  border-radius: 0;
  line-height: 40px;
  background: transparent;
}
#contact-me .form-section form .form-control:focus {
  border-color: #0bceaf !important;
  box-shadow: rgba(11, 206, 175, 0.7) !important;
}
#contact-me .form-section form .contact-btn {
  text-align: center;
}
#contact-me .form-section form .contact-btn .btn {
  background: #0bceaf;
  color: #fff;
  border-radius: 5px;
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  transition: all 0.8s ease-in-out;
  text-align: center;
  text-transform: uppercase;
}
#contact-me .form-section form .contact-btn .btn span {
  margin-right: 7px;
}
#contact-me .form-section form .contact-btn .btn:visited {
  color: #0bceaf;
}
#contact-me .footer {
  padding: 40px 0;
}
#contact-me .footer .left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
#contact-me .footer .left .copy-right {
  font-size: 1rem;
  font-weight: 300;
}
#contact-me .footer .right .social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#contact-me .footer .right .social-links .fab {
  font-size: 1rem;
  margin-right: 50px;
  color: #000;
}
#contact-me .footer .right .social-links .fab:hover {
  transition: all 0.4s ease-in-out;
  color: #0bceaf;
}

input[type=text], textarea {
  padding: 25px !important;
  border-radius: 10px !important;
  color: #0bceaf !important;
  font-size: 1.2rem !important;
}

input[type=email] {
  padding: 25px !important;
  border-radius: 10px !important;
  color: #0bceaf !important;
  font-size: 1.2rem !important;
}

@media screen and (max-width: 600px) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding: 100px 0 20px 0;
    height: auto;
  }
  #contact-me .form-section form {
    width: 100%;
  }
  #contact-me .form-section form .contact-btn {
    padding-top: 20px;
  }
  #contact-me .footer {
    padding: 60px 0 150px 0;
  }
  #contact-me .footer .left {
    justify-content: center;
  }
  #contact-me .footer .right {
    padding-top: 20px;
  }
  #contact-me .footer .right .social-links .fab {
    margin-right: 20px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding: 100px 0 20px 0;
    height: auto;
  }
  #contact-me .form-section form {
    width: 100%;
  }
  #contact-me .form-section form .contact-btn {
    padding-top: 20px;
  }
  #contact-me .footer {
    padding: 60px 0 150px 0;
  }
  #contact-me .footer .left {
    justify-content: center;
  }
  #contact-me .footer .right {
    padding-top: 20px;
  }
  #contact-me .footer .right .social-links .fab {
    margin-right: 20px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding: 100px 0 20px 0;
    height: auto;
  }
  #contact-me .form-section form {
    width: 100%;
  }
  #contact-me .form-section form .contact-btn {
    padding-top: 20px;
  }
  #contact-me .footer {
    padding: 60px 0 150px 0;
  }
  #contact-me .footer .left {
    justify-content: center;
  }
  #contact-me .footer .right {
    padding-top: 20px;
  }
  #contact-me .footer .right .social-links .fab {
    margin-right: 20px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding: 100px 0 20px 0;
    height: auto;
  }
  #contact-me .form-section form {
    width: 100%;
  }
  #contact-me .form-section form .contact-btn {
    padding-top: 20px;
  }
  #contact-me .footer {
    padding: 60px 0 150px 0;
  }
  #contact-me .footer .left {
    justify-content: center;
  }
  #contact-me .footer .right {
    padding-top: 20px;
  }
  #contact-me .footer .right .social-links .fab {
    margin-right: 20px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding-top: 220px;
    height: 1100px;
  }
  #contact-me .footer .left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
  }
  #contact-me .footer .right .social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #contact-me .footer .right .social-links .fab {
    font-size: 1.3rem;
    margin-right: 20px;
    margin-left: 20px;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  #contact-me {
    background: url("../img/map-color-overlay.webp") no-repeat center center scroll;
    padding: 150px 0 0 0;
    height: auto;
  }
  #contact-me .footer .left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
  }
  #contact-me .footer .right .social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #contact-me .footer .right .social-links .fab {
    font-size: 1.3rem;
    margin-right: 20px;
    margin-left: 20px;
  }
}
.error-404 {
  padding-top: 150px;
}
.error-404__inside {
  background-color: white;
  padding: 60px;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.5);
}
.error-404 h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-template {
  padding: 80px 0px;
}
.page-template .container {
  padding: 0 15px;
}

#single-project {
  height: 100vh;
}
#single-project .row {
  padding-top: 150px !important;
}
#single-project .row h1 {
  font-size: 3.5rem;
  font-weight: 500;
  padding-bottom: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  line-height: 1;
  background: white;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  margin: 0 2%;
  padding: 0 20px;
}

header {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  z-index: 99;
}
header nav {
  padding: 20px;
}
header nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
}
header nav ul li a {
  padding: 15px 25px;
  cursor: pointer;
  text-decoration: none !important;
  line-height: 30px;
  color: #000 !important;
  transition: all 0.4s ease-in-out;
}
header nav ul li a:hover, header nav ul li a:active {
  color: #0bceaf !important;
}
header nav ul li.active {
  border: 2px solid #0bceaf;
  color: #0bceaf;
  border-radius: 4px;
  padding: 5px 10px;
}

@media screen and (max-width: 600px) {
  header nav {
    padding: 0;
    overflow-y: hidden;
  }
  header nav ul {
    font-size: 15px;
    padding-top: 5px;
  }
  header nav ul li a {
    padding: 5px 15px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  header nav {
    padding: 0;
    overflow-y: hidden;
  }
  header nav ul {
    font-size: 12px;
    font-weight: 400;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li a {
    padding: 5px 15px 5px 15px;
  }
  header nav ul li.active a {
    padding: 5px 10px;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation: portrait) {
  header nav {
    padding: 0;
    overflow-y: hidden;
  }
  header nav ul {
    font-size: 12px;
    font-weight: 400;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li a {
    padding: 5px 15px 5px 15px;
  }
  header nav ul li.active a {
    padding: 5px 10px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (orientation: portrait) {
  header nav {
    padding: 0;
    overflow-y: hidden;
  }
  header nav ul {
    font-size: 12px;
    font-weight: 400;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  header nav ul li a {
    padding: 5px 10px 5px 10px;
  }
  header nav ul li.active a {
    padding: 5px 10px;
  }
}
.navbar {
  margin-bottom: 0 !important;
}

.navbar-default {
  background-color: transparent !important;
  border-color: transparent !important;
}

.navbar-fixed-top {
  position: relative !important;
}

#navbar-collapse-main {
  overflow: hidden;
}

/*# sourceMappingURL=styles.css.map */
