@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,300&display=swap");

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

:root {
  --primary-color: #260f82;

  --Gitta-color: rgb(216, 235, 223);
}

.global-width {
  margin: 0 auto;

  width: 95%;

  max-width: 1300px;
}

body {
  background-color: var(--Gitta-color);
}

header {
  padding: 20px;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 3;
}
ul {
  display: flex;
  list-style: none;
  margin: 0;
}

ul li {
  margin: 0 10px;
}

header .global-width {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

header .logo img {
  width: 50px;

  filter: invert(40%) sepia(11%) saturate(2180%) hue-rotate(212deg) brightness(94%) contrast(94%);
}

.links {
  position: relative;
}

.menu,
.close-menu {
  width: 40px;

  height: 40px;

  border-radius: 100%;

  background-color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;
}

.menu {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
}

.menu span {
  display: block;

  height: 2px;

  width: 25px;

  margin: 4px 0px;

  background-color: var(--primary-color);
}

.close-menu {
  position: absolute;

  top: 20px;

  right: 20px;

  font-size: 30px;

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

.main-menu {
  position: fixed;

  right: 0;

  top: 30px;

  padding: 55px;

  background-color: var(--primary-color);

  border-radius: 12px 0px 0px 12px;

  width: 100vw;

  height: 100vh;

  top: 0;

  max-width: 400px;

  z-index: 10;

  transform: translateX(500px);

  transition: 0.3s ease;
}

.main-menu.active {
  transform: translate(0);
}

.main-menu {
  display: flex;

  flex-direction: column;
}

.main-menu a {
  max-width: fit-content;

  display: inline-block;

  color: #fff;

  text-decoration: none;

  position: relative;

  margin: 12px 0px;
}

.main-menu a::before {
  content: "";

  position: absolute;

  bottom: -2px;

  width: 0%;

  height: 2px;

  background-color: #fff;

  transition: 0.3s ease-in-out;
}

.main-menu a:hover::before {
  width: 100%;
}

.button a {
  display: flex;
 height: 52px;
 justify-content: center;
 align-items: center;

}


.col:nth-of-type(1) {
  border: 2px solid #000;

  padding: 50px;
}

/* //CV */

.text,
.text+.button {
  position: relative;

  left: 0px;
}

.text {
  margin-top: 30px;
}

.text-one {
  font-size: 30px;

  color: black;
}

.text-two {
  font-size: 23px;

  font-weight: 800;

  color: black;

  margin-left: -3px;

  position: relative;
}

.text-two span {
  color: var(--primary-color);
}

.text-three {
  font-size: 40px;

  margin: 5px 0;

  color: #fff;
}

.text-four {
  font-size: 23px;

  margin: 5px 0;

  color: #fff;
}

.button {
  margin: 14px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.button a:not(.about_me) {
  display: inline-block;

  outline: none;

  padding: 7px 36px;

  border-radius: 6px;

  font-size: 14px !important;


  font-weight: 400;

  background: var(--primary-color);


  color: white !important;

  cursor: pointer;

  border: 2px solid transparent;

  border-radius: 4.5px;

  transition: all 0.4s ease;
}

.button button:hover {
  border-color: var(--primary-color);

  background-color: var(--white-color);

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

.button a {
  font-size: 25px;

  font-weight: 400;

  text-decoration: none;

}

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

.me {
  display: block;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about {
  background-color: #faf9fe;
}

h2 {
  color: var(--primary-color) !important;

  font-size: 30px;

  font-weight: 800;
}

.skillsContainer img {
  width: 75px;

  height: 75px;

  display: inline-block;

  margin-right: 20px;

  margin-top: 10px;

  transition: 00.3s ease-in-out;

  cursor: pointer;
}

.skillsContainer img:hover {
  transform: scale(1.1);
}

.w-auto-i {
  width: auto !important;
}

.top-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;

  
}

.top-text {



  margin: 40px auto 40px auto;
}

.aboutMe {
  padding: 60px 0px;
}

p,
h6 {
  font-size: 19px;
}

.portfolio-grid img {
  width: 100%;
  display: block;

  height: 100%;

  object-fit: cover;
}

.portfolio-grid a {
  display: block;
 height: 250px;

  overflow: hidden;

  position: relative;
  border: 2px solid var(--primary-color);

  margin-bottom: 20px;
}

.overlay {
  position: absolute;

  top: -350px;

  left: 0;

  height: 100%;

  width: 100%;

  transition: 0.3s ease;

  z-index: 1;

  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.5rem);

  display: flex;

  align-items: center;

  justify-content: center;
}
.overlay p span:nth-child(1) {
  font-weight: 700;
  font-size: 18px;
  color: var(--primary-color);
}
.overlay p span:not(.first) {
  display: block;
  width: fit-content;
  margin: 8px 0;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

.portfolio-grid a:hover .overlay {
  top: 0;
}

.experience {
  margin-bottom: 30px;

  display: flex;

  gap: 20px;

  min-height: 220px;

  cursor: pointer;
}

.line {
  width: 50px;

  display: flex;

  flex-direction: column;

  align-items: center;
}

.circle {
  display: inline-block;

  width: 25px;

  height: 25px;

  border-radius: 100%;

  border: 2px solid #000;

  margin-bottom: 7px;
}

.straight-line {
  height: 175px;

  width: 1px;

  background-color: #000;
}

.content h6 {
  font-weight: 600;

  font-size: 17px;

  margin-bottom: 14px;
}

.content h5 {
  color: var(--primary-color);
}

.aboutMe p {
  font-size: 16px;
}

.content p {
  font-size: 16px;

  color: #808080;
}

.experience * {
  transition: 0.3s ease;
}

.experience:hover p {
  color: #000;
}

.experience:hover .circle {
  border-color: var(--primary-color);
}

.experience:hover .straight-line {
  background-color: var(--primary-color);
}

form {
  padding: 50px 25px;

  border-radius: 10px;

  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.3);
}

form fieldset {
  display: flex;

  justify-content: space-between;
}

fieldset>input {
  width: 47%;

  border-radius: 25px;
}

form input,
form textarea {
  padding: 11px 19px;

  border: 1px solid #5d5d5d;
}

textarea {
  border-radius: 2px;

  min-height: 120px;

  width: 100%;

  margin-bottom: 22px;
}

button[type="submit"] {
  display: inline-block;

  padding: 7px 22px;

  color: #695aa6;

  font-weight: 600;

  font-size: 18px;

  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.2);

  border-radius: 25px;

  background-color: #fff;
}

form fieldset {
  margin-bottom: 22px;
}

main {
  max-width: 100vw;

  overflow: hidden;
}

.mz-dw {
  overflow: hidden;
  background-color: antiquewhite;
}

.mz-dw,
.mz-dw video {
  width: 100vw;

  height: 100%;

  top: 0;

  left: 0;
  object-fit: cover;

  z-index: 1;
}

.mz-dt {
  position: relative;

  z-index: 2;

  padding-top: 70px;
}

.mz-dw video {
  transform: scale(1.1);
}

.form-button {
  position: absolute;

  right: 30px;

  bottom: -15px;

  display: inline-block;

  border: 2px solid var(--primary-color);
}

footer {
  display: flex;

  justify-content: space-between;

  padding: 20px;

  background-color: var(--primary-color);
}

footer p {
  font-size: 13px;

  color: #fff;

  margin: 0;
}

footer img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(72deg) brightness(100%) contrast(106%);
}

.about .me {
  animation: animate 3s linear infinite;
}

@keyframes animate {
  0% {
    transform: translate(-11px, 0);
  }

  50% {
    transform: translate(-0px, -11px);
  }

  100% {
    transform: translate(-11px, 0);
  }
}

#education h4 {
  font-size: 19px;
  color: #000;
}

#education h6 {
  font-size: 15px;
  color: var(--primary-color);
  margin-top: 7px 0 14px 0;
  font-weight: 600;
}

#education p {
  font-size: 14px;
  color: #000;
}
@media(max-width: 768px) {
  .text, .text + .button {
    left: 0;
  }
  .straight-line {
    height: 100%;
  }
  header .logo img {
    width: 70px;
   
  }
  .text-one {
    font-size: 22px;
  }
  .text-two {
    font-size: 30px;
  }
  .text-three {
    font-size: 16px;
  }
}
@media(max-width: 568px) {
  form fieldset {
    display: block;
  }
  form input {
    display: block;
    margin-top: 15px;
    width: 100%;
  }
}
.about_me {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  font-size: 14px  !important;
  padding: 10px 35px !important;
  border-radius: 7px;
}

