@import url("https://fonts.googleapis.com/css2?family=Akaya+Telivigala&family=RocknRoll+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Stick&display=swap");
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Ubuntu", sans-serif;
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

::-moz-selection {
  background: #bdc3c7;
}

::selection {
  background: #bdc3c7;
}

/* width */
::-webkit-scrollbar {
  width: 20px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #0984e3;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0984e3, #3023ae);
  border-radius: 50px;
}

.container {
  width: 1440px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 2rem;
}

#iti-logo {
  width: 200px;
}
@media (max-width: 1100px) {
  #iti-logo {
    width: 150px;
  }
}
@media (max-width: 600px) {
  #iti-logo {
    width: 100px;
  }
}

.nav {
  position: fixed;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: rgba(17, 17, 17, 0.548);
}
.nav .burger-menu {
  display: none;
}
.nav .burger-menu .menu {
  display: none;
  width: 35px;
  height: 35px;
}
@media only screen and (max-width: 400px) {
  .nav .burger-menu .menu {
    width: 30px;
  }
}
.nav .burger-menu .close {
  display: none;
}
.nav .my-name {
  transition: all 0.3s;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
}
.nav .my-name img {
  width: 50px;
  margin-right: 0.5rem;
}
.nav .my-name a {
  color: #fff;
  font-family: "Akaya Telivigala", cursive;
  transition: all 0.3s;
}
.nav .my-name a:hover {
  color: #0984e3;
}
.nav__items {
  display: flex;
  flex-direction: row;
}
.nav__items li:not(:last-child) {
  margin-right: 1.3rem;
}
.nav__items li a {
  color: #fff;
  display: inline-block;
  transition: all 0.3s;
  font-size: 1.35rem;
}
.nav__items li a:hover {
  color: #0984e3;
}

.header {
  position: relative;
  background-image: linear-gradient(to right, rgba(29, 30, 38, 0.8), rgba(29, 30, 38, 0.6), rgba(29, 30, 38, 0.4)), url(../img/hero1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.header .header-img {
  position: absolute;
  width: 550px;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  animation-name: zoomInDown; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 3s; /* don't forget to set a duration! */
}
@media only screen and (max-width: 1350px) {
  .header .header-img {
    width: 300px;
    top: 70%;
  }
}
@media only screen and (max-width: 650px) {
  .header .header-img {
    width: 230px;
    top: 70%;
  }
}
@media only screen and (max-width: 600px) {
  .header .header-img {
    width: 200px;
    top: 70%;
  }
}
@media only screen and (max-height: 600px) {
  .header .header-img {
    width: 250px;
  }
}
@media only screen and (max-width: 450px) {
  .header .header-img {
    width: 150px;
    top: 75%;
    left: 60%;
  }
}
@media only screen and (max-width: 400px) {
  .header .header-img {
    width: 130px;
    top: 75%;
    left: 50%;
  }
}
.header .down__arrow {
  position: absolute;
  width: 75px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: MoveUpDown 1s linear infinite;
}
@media only screen and (max-width: 768px) {
  .header .down__arrow {
    width: 50px;
  }
}
@media only screen and (max-height: 600px) {
  .header .down__arrow {
    width: 60px;
  }
}
@media only screen and (max-width: 400px) {
  .header .down__arrow {
    width: 40px;
  }
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 35px;
  }
  50% {
    bottom: 10px;
  }
}
.header .container {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  height: 100%;
  width: 1660px;
}
.header .lotto-wrapper {
  position: absolute;
  right: 0;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .header .lotto-wrapper {
    right: unset;
    justify-content: center;
    bottom: 1.5rem;
  }
}
.header .lotto-wrapper .lotto {
  width: 50%;
  align-self: flex-end;
}
@media only screen and (max-width: 1200px) {
  .header .lotto-wrapper .lotto {
    align-self: center;
    width: 70%;
  }
}
.header .main__title {
  color: #fff;
  font-size: 1.5rem;
}
@media only screen and (max-height: 600px) {
  .header .main__title {
    font-size: 1rem;
  }
}
.header .main__title .main__headings h1,
.header .main__title .main__headings h2 {
  text-shadow: 1px 1px 4px #0984e3;
  backface-visibility: hidden;
}
.header .main__title .main__headings h1 {
  font-family: "RocknRoll One", sans-serif;
  font-size: 2.7rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}
@media only screen and (max-height: 600px) {
  .header .main__title .main__headings h1 {
    font-size: 2rem;
  }
}
.header .main__title .main__headings h2 {
  font-size: 2.3rem;
  animation: moveInRight 1s ease-out;
}
@media only screen and (max-height: 600px) {
  .header .main__title .main__headings h2 {
    font-size: 1.7rem;
  }
}
.header .main__buttons {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.75rem;
}
.header .main__buttons > * {
  border: 3px solid #0984e3;
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border-radius: 5px;
  color: #fff;
  text-shadow: 1px 1px 4px #0984e3;
  transition: all 0.3s;
  animation: moveInBottom 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}
@media only screen and (max-height: 600px) {
  .header .main__buttons > * {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 600px) {
  .header .main__buttons > * {
    font-size: 1.1rem;
    padding: 0.6rem 0.8rem;
  }
}
@media only screen and (max-width: 400px) {
  .header .main__buttons > * {
    font-size: 1rem;
    padding: 0.4rem 0.6rem;
  }
}
.header .main__buttons > *:not(:last-child) {
  margin-right: 0.5rem;
}
.header .main__buttons > *:hover {
  background-color: #0984e3;
  text-shadow: 1px 1px 4px white;
  border-color: #fff;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  padding: 3rem 0;
}
.about .container .about__me {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  .about .container .about__me {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.about .container .about__me-left {
  background-color: #0984e3;
  padding: 3rem;
  border-radius: 10px;
  width: 60%;
}
@media only screen and (max-width: 1100px) {
  .about .container .about__me-left {
    width: 100%;
  }
}
.about .container .about__me-left p {
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.593);
  line-height: 1.5;
  font-weight: 300;
}
.about .container .about__me-left p span {
  background-color: #065591;
  letter-spacing: 1px;
  padding: 0.25rem 0.5rem;
}
.about .container .about__me-left .my-resume {
  border: 3px solid #fff;
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  color: #fff;
  transition: all 0.3s;
  margin-top: 1rem;
}
@media only screen and (max-width: 600px) {
  .about .container .about__me-left .my-resume {
    font-size: 1rem;
    padding: 0.65rem 0.9rem;
  }
}
@media only screen and (max-width: 400px) {
  .about .container .about__me-left .my-resume {
    font-size: 0.75rem;
    padding: 0.55rem 0.8rem;
  }
}
.about .container .about__me-left .my-resume:hover {
  background-color: #fff;
  color: #0984e3;
}
.about .container .about__me .my-photo {
  display: flex;
  flex-direction: column-reverse;
}
.about .container .about__me .my-photo img.web {
  margin: 0 auto;
  margin-left: -2rem;
  height: 350px;
  border-radius: 10px;
  border: 5px solid #022f52;
  box-shadow: 6px 6px 13px rgba(0, 0, 0, 0.314);
  background-color: #fff;
  padding: 1rem;
}
.about .container .about__me .my-photo .bg {
  position: absolute;
  right: -2rem;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  height: 400px;
  width: 400px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}

.skills {
  padding: 3rem 0;
  background-color: #ecf0f1;
}
.skills .container .skills__heading {
  color: #0984e3;
}
.skills .container .skills__type {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 3px solid #0984e3;
  border-top: 3px solid #0984e3;
  padding: 0.5rem 0;
  width: -moz-fit-content;
  width: fit-content;
  display: table;
  margin: 1rem auto;
  color: #022f52;
}
.skills .container .skills__type span.familiar {
  font-size: 1rem;
  color: rgba(5, 86, 148, 0.7333333333);
}
.skills .container .skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  row-gap: 1.5rem;
}
.skills .container .skills__grid .image-wrapper {
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
  font-size: 1.2rem;
  background-color: #f6fcfe;
  box-shadow: 3px 3px 10px rgba(59, 135, 202, 0.5647058824);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 180px;
  width: 200px;
  border: 1px solid transparent;
}
.skills .container .skills__grid .image-wrapper:hover {
  background-color: rgb(216, 233, 245);
  border-color: #0984e3;
}
.skills .container .skills__grid .image-wrapper img {
  height: 130px;
}
.skills .container .skills__grid .image-wrapper p {
  letter-spacing: 1px;
  font-weight: lighter;
  text-shadow: 1px 1px 4px rgba(59, 135, 202, 0.5647058824);
  display: flex;
  flex-direction: column;
}
.skills .container .skills__grid .image-wrapper p span.figma {
  font-size: 0.5rem;
}

.my-work {
  padding: 3rem 0;
}
.my-work .container {
  position: relative;
}
.my-work .container #clickme {
  width: 150px;
  position: absolute;
  top: 2rem;
  right: 13rem;
}
.my-work .container .featured-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  margin: 2rem 0 50px;
}
@media (max-width: 1100px) {
  .my-work .container .featured-projects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .my-work .container .featured-projects {
    grid-template-columns: 1fr;
  }
}
.my-work .container .featured-projects .project-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 600px;
}
.my-work .container .featured-projects .project-card.featured {
  border: 3px solid transparent;
  border-radius: 16px;
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: pulseBorder 3s infinite;
}
.my-work .container .featured-projects .project-card.featured:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #0984e3;
  transition: 0.3s ease;
}
.my-work .container .featured-projects .project-card.featured .ribbon {
  position: absolute;
  top: 55px;
  left: -55px;
  background: #e74c3c;
  color: white;
  padding: 5px 40px;
  transform: rotate(-45deg);
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 10px rgba(9, 132, 227, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(9, 132, 227, 0.9);
  }
  100% {
    box-shadow: 0 0 10px rgba(9, 132, 227, 0.6);
  }
}
.my-work .container .featured-projects .project-card:hover {
  transform: translateY(-5px);
}
.my-work .container .featured-projects .project-card .project-image-link {
  display: block;
  height: 250px;
  border-bottom: 1px solid #007acc;
}
.my-work .container .featured-projects .project-card .project-image-link .project-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.my-work .container .featured-projects .project-card .project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  padding: 1rem;
}
.my-work .container .featured-projects .project-card .project-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.my-work .container .featured-projects .project-card .project-info p {
  font-size: 0.95rem;
  margin: 0.5rem 0 1rem;
  flex-grow: 1;
}
.my-work .container .featured-projects .project-card .project-info .project-links {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}
.my-work .container .featured-projects .project-card .project-info .project-links a {
  text-decoration: none;
  color: #007acc;
  font-weight: 500;
}
.my-work .container .featured-projects .project-card .project-info .project-links a:hover {
  text-decoration: underline;
}
.my-work .container .more-projects {
  position: relative;
}
.my-work .container .more-projects #clickme {
  width: 100px;
  opacity: 0.75;
  position: absolute;
  top: -2rem;
  left: 8rem;
}
.my-work .container .more-projects .view-gallery-p {
  margin-bottom: 20px;
  font-size: 18px;
  font-style: italic;
}
.my-work .container .more-projects .gallery__link {
  font-family: "Stick", sans-serif;
  display: inline-block;
  font-size: 2rem;
  background: #f09;
  background-image: linear-gradient(45deg, #3023ae 0%, #f09 100%);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  color: #fff;
  transition: all 0.3s;
}
.my-work .container .more-projects .gallery__link:hover {
  transform: translateX(13px);
}
.my-work .container .more-projects .gallery__paragraph {
  border-bottom: 5px solid #0984e3;
  display: table;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.5rem;
}
.my-work .container .more-projects .gallery__paragraph a {
  color: #0984e3;
}
.my-work .container .more-projects .gallery__paragraph a:hover {
  text-decoration: underline;
}

.contact {
  padding: 3rem 0;
  background-color: #ecf0f1;
}
.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact__form {
  width: 50%;
}
.contact__form p {
  font-size: 1.5rem;
  color: #0984e3;
}
.contact__form .form {
  width: 100%;
}
.contact__form .form .field {
  width: 100%;
  outline: none;
}
.contact__form .form .field:not(:last-child) {
  margin-bottom: 1rem;
}
.contact__form .form .field label {
  display: block;
}
.contact__form .form .field label:not(:last-child) {
  margin-bottom: 0.25rem;
}
.contact__form .form .field input,
.contact__form .form .field textarea {
  width: 100%;
  padding: 0.5rem;
  border: rgba(15, 12, 41, 0.6823529412) 1px solid;
  border-radius: 3px;
  outline: none;
}
.contact__form .form .field input:focus,
.contact__form .form .field textarea:focus {
  border-color: #0984e3;
  border-width: 2px;
}
.contact__form .form .field input::-moz-placeholder, .contact__form .form .field textarea::-moz-placeholder {
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.5px;
}
.contact__form .form .field input::placeholder,
.contact__form .form .field textarea::placeholder {
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.5px;
}
.contact__form .form .field textarea {
  resize: vertical;
  height: 150px;
  max-height: 250px;
}
.contact__form .form .btn {
  cursor: pointer;
  background-image: linear-gradient(to right, #0984e3, #ec008c, #3023ae);
  background-size: 300% 100%;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  display: inline-block;
  font-size: 1rem;
  opacity: 1;
  padding: 16px 32px;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 2px;
  outline: none;
  border: none;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 600px) {
  .contact__form .form .btn {
    font-size: 0.9rem !important;
    padding: 12px 10px;
  }
}
.contact__form .form .btn:hover {
  background-position: -100%;
}
.contact__form #status {
  font-size: 0.9rem;
  width: 100%;
  color: #fff;
  margin-top: 1rem;
  border-radius: 7px;
  padding: 10px;
  text-shadow: 1px 1px 4px #000;
  letter-spacing: 1px;
  display: none;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 660px) {
  .contact__form #status {
    font-size: 0.8rem;
  }
}
.contact__form #status.success {
  display: block;
  animation: status 40s ease forwards;
  background-color: #0984e3;
}
.contact__form #status.error {
  background-color: red;
  animation: status 40s ease forwards;
}
.contact__form .or {
  border-top: #0984e3 solid 3px;
  margin-top: 1.5rem;
  font-size: 2rem;
  padding-bottom: 0;
  padding: 0.25rem 0;
}
@media only screen and (max-width: 660px) {
  .contact__form .or {
    font-size: 1.1rem !important;
  }
}
.contact__form .my-email {
  font-size: 2rem;
}
@media only screen and (max-width: 660px) {
  .contact__form .my-email {
    font-size: 1.1rem !important;
  }
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.contact__picture {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.contact__picture img {
  width: 80%;
  align-self: flex-end;
}

.footer {
  padding: 3rem 0;
  background-color: #2c3e50;
  border-top: 5px solid #0984e3;
  text-align: center;
  color: #fff;
}
.footer p.copyright {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer p.copyright span.created {
  display: block;
}
.footer p.copyright a.citation {
  color: #0984e3;
  text-decoration: underline;
  transition: all 0.3s;
}
.footer p.copyright a.citation:hover {
  color: #999;
}
.footer p.copyright + p {
  font-size: 0.75rem;
}

.skills .container .skills__heading, .my-work .container .mywork__heading, .contact__form h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #000;
  text-shadow: 1px 1px 4px rgba(59, 135, 202, 0.5647058824);
  border-bottom: 5px solid #0984e3;
  border-bottom-style: dotted;
  padding-bottom: 0.5rem;
  display: table;
  width: -moz-fit-content;
  width: fit-content;
}

.footer .main__links,
.header .main__links {
  margin-top: 1rem;
}
.footer .main__links a:not(:last-child),
.header .main__links a:not(:last-child) {
  margin-right: 0.5rem;
}
.footer .main__links a .fm_logo,
.header .main__links a .fm_logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 3px solid #bdc3c7;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
  overflow: hidden;
  animation: moveInRight 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}
.footer .main__links a .fm_logo:hover,
.header .main__links a .fm_logo:hover {
  border-color: #0984e3;
}
.footer .main__links a svg,
.header .main__links a svg {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  color: #fff;
  animation: moveInRight 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: backwards;
}
.footer .main__links a svg:hover,
.header .main__links a svg:hover {
  color: #0984e3;
}

@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1.7rem !important;
  }
  .footer .main__links a .fm_logo,
  .footer .main__links a svg,
  .header .main__links a .fm_logo,
  .header .main__links a svg {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 420px) {
  .header .main__links a .fm_logo,
  .header .main__links a svg {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }
  .nav .burger-menu {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .nav .burger-menu .menu {
    display: flex;
  }
  .nav .my-name {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 400px) {
  .nav .my-name {
    font-size: 1.3rem;
  }
  .nav .my-name img {
    width: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .nav__items {
    position: absolute;
    transform: translateY(-1000px);
    flex-direction: column;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    width: 70%;
    margin: 0 auto !important;
    text-align: center;
    padding: 5rem 3rem;
    justify-content: center;
    align-items: center;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgb(2, 0, 36) 0%, rgb(9, 9, 121) 35%, rgb(0, 212, 255) 100%);
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .nav__items {
    padding: 2rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .nav__items.show {
    transform: translateY(0);
  }
  .nav__items li:not(:last-child) {
    margin-right: unset;
    margin-bottom: 1rem;
  }
  .nav__items a {
    color: #fff !important;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.35rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 600px) {
  .nav__items a {
    font-size: 0.9rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .nav__items a:hover {
    text-decoration: underline;
  }
  .header .container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: stretch;
  }
  .header .main__title {
    font-size: 1.1rem;
    width: 100%;
  }
  .header .main__title .main__headings h2 {
    font-size: 1.2rem !important;
  }
}
@media only screen and (max-width: 768px) and (max-width: 420px) {
  .header .main__title .main__headings h2 {
    font-size: 1.3rem !important;
  }
}
@media only screen and (max-width: 768px) and (max-width: 320px) {
  .header .main__title .main__headings h2 {
    font-size: 1.15rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .header .main__title .main__headings h1 {
    font-size: 1.75rem !important;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 420px) {
  .header .main__title .main__headings h1 {
    font-size: 1.5rem !important;
  }
}
@media only screen and (max-width: 768px) and (max-width: 320px) {
  .header .main__title .main__headings h1 {
    font-size: 1.2rem !important;
  }
}
@media only screen and (max-width: 768px) {
  .header .main__title .main__headings span.salam {
    display: block;
  }
  .about {
    padding: 3rem 0;
  }
  .about .container .about__me {
    position: relative;
    flex-direction: column-reverse;
  }
  .about .container .about__me-left {
    background-color: #0984e3;
    padding: 2rem;
  }
  .about .container .about__me-left p {
    font-size: 0.8rem;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.593);
    line-height: 1.5;
    font-weight: 300;
    max-width: 100%;
  }
  .about .container .about__me-left p span {
    background-color: #065591;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
  }
  .about .container .about__me .my-photo {
    position: relative;
    right: 0;
    top: 0;
    transform: unset;
    text-align: center;
  }
  .about .container .about__me .my-photo img.web {
    width: 70%;
    margin: 0 auto;
    height: 250px;
    border-radius: 10px;
    border: 5px solid #022f52;
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.75);
    background-color: #fff;
    padding: 1rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 500px) {
  .about .container .about__me .my-photo img.web {
    height: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .about .container .about__me .my-photo .bg {
    position: absolute;
    right: -1rem;
    z-index: -1;
    height: 290px;
    top: 50%;
    transform: translateY(-50%);
  }
  .my-work .container {
    position: relative;
  }
  .my-work .container .mywork__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 1px 1px 4px rgba(59, 135, 202, 0.5647058824);
    border-bottom: 5px solid #0984e3;
    border-bottom-style: dotted;
    padding-bottom: 0.5rem;
    display: table;
    width: -moz-fit-content;
    width: fit-content;
  }
  .my-work .container .sub-work-heading {
    font-size: 1.2rem !important;
  }
  .my-work .container .gallery__link {
    font-size: 1.1rem;
    padding: 0.9rem;
  }
  .my-work .container .gallery__paragraph {
    font-size: 0.75rem;
    border-bottom: 5px solid #0984e3;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
  }
  .contact .container {
    flex-direction: column;
  }
  .contact__form {
    width: 100%;
    margin-bottom: 3rem;
  }
  .contact__form p {
    font-size: 1.1rem;
  }
  .contact__form h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000;
    text-shadow: 1px 1px 4px rgba(59, 135, 202, 0.5647058824);
    border-bottom: 5px solid #0984e3;
    border-bottom-style: dotted;
    padding-bottom: 0.5rem;
    display: table;
    width: -moz-fit-content;
    width: fit-content;
  }
  .contact__form .form .btn {
    font-size: 1rem;
  }
  .contact__picture {
    width: 100%;
  }
  .contact__picture img {
    margin: 0 auto;
    width: 90%;
  }
  .footer p.copyright {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.6rem;
    line-height: 1.75;
  }
  .footer p.copyright a.citation {
    color: #0984e3;
    text-decoration: underline;
    transition: all 0.3s;
  }
  .footer p.copyright a.citation:hover {
    color: #999;
  }
  .footer p.copyright + p {
    font-size: 0.65rem;
  }
}/*# sourceMappingURL=style.css.map */