@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Arimo", sans-serif;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 24px;
  font-weight: 700;
}

h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  line-height: 175%;
  font-size: 22px;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: #151516;
}

* {
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

main {
  padding-left: 102px;
}
main > section {
  display: block;
  padding-right: 32px;
  padding-left: 32px;
  min-height: 30vh;
}
main > section:not(#home) {
  padding-top: 64px;
}
main > section.active {
  display: block;
}

.btn-custom-blue {
  display: inline-block;
  position: relative;
  background: #262f48;
  padding: 10px 52px;
  text-decoration: none;
  color: #658df2;
  border-radius: 16px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s;
}
.btn-custom-blue:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: #658df2;
  opacity: 0.3;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  transition: all 0.3s;
}
.btn-custom-blue:hover {
  color: #fff;
}
.btn-custom-blue:hover:before {
  transform: translate(-50%, -50%) scale(2);
}

#sidebar {
  position: fixed;
  height: 100vh;
  padding-right: 39px;
  padding-left: 39px;
  display: flex;
  flex-direction: column;
  background-color: #020202;
}
#sidebar .toggle-sidebar {
  position: absolute;
  font-size: 30px;
  width: 45px;
  height: 45px;
  background: black;
  display: none;
  justify-content: center;
  align-items: center;
  right: -45px;
}
#sidebar .logo {
  height: 20%;
  padding-top: 62px;
  text-align: center;
}
#sidebar nav {
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sidebar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#sidebar nav ul li {
  position: relative;
  margin-bottom: 35px;
}
#sidebar nav ul li a {
  position: relative;
}
#sidebar nav ul li a:hover i {
  color: #fff;
}
#sidebar nav ul li a:hover + span {
  opacity: 1;
  left: 30px;
}
#sidebar nav ul li a .la-home:before {
  font-size: 30px;
}
#sidebar nav ul li a .la-address-card:before {
  font-size: 30px;
}
#sidebar nav ul li a .la-project-diagram:before {
  font-size: 30px;
}
#sidebar nav ul li a .la-briefcase:before {
  font-size: 30px;
}
#sidebar nav ul li a .la-phone:before {
  font-size: 30px;
}
#sidebar nav ul li a span {
  display: none;
}
#sidebar nav ul li a i {
  font-size: 18px;
  color: #b6b7ba;
  transition: all 0.3s;
}
#sidebar nav ul li > span {
  position: absolute;
  white-space: nowrap;
  top: -8px;
  left: 20px;
  padding: 7px 13px;
  background: rgba(30, 30, 32, 0.75);
  border-radius: 6px;
  opacity: 0;
  transition: all 0.3s;
}

#home .btn-custom-blue {
  background-color: rgba(255, 196, 0, 0.9921568627);
  color: rgba(0, 0, 0, 0.9921568627);
}
#home .info {
  padding-top: 281px;
}
#home .info img.second-logo {
  margin-bottom: 24px;
}
#home .info h1 {
  margin-bottom: 24px;
}
#home .info h1 span {
  color: #b6b7ba;
}
#home .info h3 {
  color: #b6b7ba;
  margin-bottom: 10px;
}
#home .info .typefield {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
#home .info .typefield h2 {
  color: #b6b7ba;
  margin: 0;
}
#home .info .typefield span {
  font-size: 21px;
  margin-left: 2px;
}
#home .info p {
  max-width: 430px;
  margin-bottom: 74px;
}
#home .info .socials {
  margin-top: 121px;
}
#home .info .socials ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
#home .info .socials ul li {
  margin-right: 8px;
}
#home .info .socials ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 9px 11px;
  transition: all 0.3s;
}
#home .info .socials ul li a:hover {
  background: #1e1e20;
  border-radius: 6px;
}
#home .info .socials ul li a:hover span,
#home .info .socials ul li a:hover i {
  color: #fff;
}
#home .info .socials ul li a i {
  font-size: 22px;
  margin-right: 8px;
  color: #b6b7ba;
  transition: all 0.3s;
}
#home .info .socials ul li a span {
  color: #808185;
  transition: all 0.3s;
}
#home .my-img {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#home .my-img img {
  border-radius: 16px;
  max-width: 100%;
}

#about {
  min-height: 80vh;
}
#about .hero .webskills header.custom {
  margin-top: 0;
  position: relative;
  text-align: center;
}
#about .hero .webskills header.custom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1e1e20;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}
#about .hero .webskills header.custom h2 {
  margin-top: 9px;
  display: inline-block;
  padding: 0 24px;
  background: #151516;
}
#about .hero .webskills .items {
  margin-left: -20px;
  margin-right: -20px;
}
#about .hero .webskills .items .item-wrapper {
  position: relative;
}
#about .hero .webskills .items .item-wrapper:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
#about .hero .webskills .items .item-wrapper .tooltip {
  position: absolute;
  bottom: 75%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background-color: #fff;
  color: #1e1e20;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 200;
  margin-bottom: 8px;
}
#about .hero .webskills .items .item-wrapper .tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}
#about .hero .webskills .items .item {
  position: relative;
  margin-top: 10px;
  background-color: rgba(101, 141, 242, 0.368627451);
  text-align: center;
  padding: 22px 8px;
  border-radius: 8%;
  z-index: 1;
  overflow: hidden;
}
#about .hero .webskills .items .item:hover:before, #about .hero .webskills .items .item:hover:after {
  transform: translate(0, 0);
}
#about .hero .webskills .items .item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #658df2;
  left: 0;
  top: 0;
  border-radius: 8%;
  z-index: -1;
  transform: translate(100%, -100%);
  transition: all 0.6s;
}
#about .hero .webskills .items .item:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #658df2;
  left: 0;
  top: 0;
  border-radius: 8%;
  z-index: -1;
  transform: translate(-100%, 100%);
  transition: all 0.6s;
}
#about .hero .webskills .items img {
  margin-bottom: 2px;
}
#about .hero .info h1 {
  margin-bottom: 42px;
  margin-top: 10px;
}
#about .hero .info p {
  max-width: 560px;
  color: #b6b7ba;
}

#projects {
  min-height: 60vh;
}
#projects .filters {
  text-align: center;
  margin-top: 61px;
  margin-bottom: 55px;
}
#projects .filters button {
  background: transparent;
  color: #808185;
  border: none;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: 8px;
  margin-left: 8px;
  margin-bottom: 16px;
}
#projects .filters button.active {
  color: #fff;
  background: #1e1e20;
  border-radius: 8px;
  padding-bottom: 8px;
}
#projects .project-items .item {
  margin-bottom: 24px;
}
#projects .project-items .item .wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}
#projects .project-items .item .wrap:hover:before {
  transform: rotate(0deg);
}
#projects .project-items .item .wrap:hover:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
#projects .project-items .item .wrap:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(101, 141, 242, 0.6);
  border-radius: 8px;
  z-index: 1;
  cursor: pointer;
  transform: rotate(-100deg);
  transform-origin: top left;
  transition: all 0.3s;
}
#projects .project-items .item .wrap:after {
  content: "View";
  position: absolute;
  width: 96%;
  height: 95%;
  background: rgba(21, 21, 22, 0.8);
  border-radius: 8px;
  transform-origin: bottom left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(100deg);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  letter-spacing: 3px;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
}
#projects .project-items .item .wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  border-radius: 8px;
  cursor: pointer;
}

.modal#projectModal .modal-dialog {
  max-width: 900px;
}
.modal#projectModal .modal-dialog .modal-content {
  background: #1e1e20;
  padding: 32px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body {
  padding: 0;
  position: static;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .modal-close-button {
  position: absolute;
  right: -23px;
  top: -23px;
  background-color: #151516;
  font-style: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  transition: all 0.3s;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .modal-close-button:hover {
  background: rgb(10.8203592814, 44.1137724551, 128.1796407186);
}
.modal#projectModal .modal-dialog .modal-content .modal-body img {
  width: 100%;
  height: 505px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .left {
  padding-left: 0;
  padding-right: 32px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .left h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .left p {
  color: #b6b7ba;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right {
  padding-right: 0;
  padding-left: 32px;
  padding-top: 80px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right i {
  font-size: 18px;
  margin-right: 2px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right .value {
  color: #b6b7ba;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right .project-link {
  margin-top: 32px;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right .project-link a,
.modal#projectModal .modal-dialog .modal-content .modal-body .right .project-link i {
  color: #658df2;
  text-decoration: none;
}
.modal#projectModal .modal-dialog .modal-content .modal-body .right .project-link a:hover {
  text-decoration: underline;
}

#careerbackground {
  min-height: 30vh;
}
#careerbackground header.has-bg {
  margin-bottom: 42px;
}
#careerbackground header.custom {
  position: relative;
  text-align: center;
  margin-bottom: 42px;
}
#careerbackground header.custom:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1e1e20;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}
#careerbackground header.custom h2 {
  display: inline-block;
  padding: 0 24px;
  background: #151516;
}
#careerbackground .items .item {
  display: flex;
  margin-bottom: 42px;
}
#careerbackground .items .item .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.0509803922);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 46px;
  margin-top: 23px;
}
#careerbackground .items .item .icon:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 126px;
  background: #1e1e20;
  top: 70px;
}
#careerbackground .items .item .box {
  position: relative;
  padding: 32px;
  background: rgba(30, 30, 32, 0.75);
  border-radius: 8px;
  z-index: 1;
  flex-grow: 1;
  text-align: left;
}
#careerbackground .items .item .box:before {
  content: "";
  position: absolute;
  border-right: 9px solid rgba(30, 30, 32, 0.75);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  left: -9px;
  top: 36px;
}
#careerbackground .items .item .box:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 8px;
  z-index: -1;
  transition: all 0.3s;
}
#careerbackground .items .item .box .year {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}
#careerbackground .items .item .box .title {
  margin-bottom: 16px;
}
#careerbackground .items .item .box p {
  font-size: 18px;
  font-weight: 400;
  color: #b6b7ba;
  max-width: 345px;
}
#careerbackground .education {
  padding-right: 34px;
}
#careerbackground .experience {
  padding-left: 34px;
}

#contacts {
  min-height: 20vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#contacts .title-text1 {
  text-align: center;
  color: #b6b7ba;
}
#contacts .title-text2 {
  text-align: center;
}
#contacts .upper-container {
  display: flex;
  justify-content: center;
  border-top: #ffffff 0.1rem solid;
  border-bottom: #ffffff 0.1rem solid;
  border-color: #ffffff;
  background: #151516;
  margin: 2rem auto;
  padding: 0.5rem;
}
#contacts .upper-container .contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
  padding: 9px 11px;
  transition: all 0.3s;
}
#contacts .upper-container .contact-info p {
  font-size: larger;
}
#contacts .upper-container .contact-info p a {
  text-decoration: none;
  color: rgba(255, 196, 0, 0.6235294118);
  background-color: transparent;
  transition: all 0.3s;
}
#contacts .upper-container .contact-info i {
  font-size: 32px;
  cursor: default;
  color: #b6b7ba;
  transition: all 0.3s;
}
#contacts .upper-container .contact-info:hover {
  background: #1e1e20;
  border-radius: 6px;
  transition: all 0.3s;
}
#contacts .upper-container .contact-info:hover a {
  color: rgba(255, 196, 0, 0.9921568627);
}
#contacts .upper-container .contact-info:hover i {
  color: #fff;
}

#footer-bottom {
  min-height: 20vh;
}
#footer-bottom .icons-link-footer ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding-top: 50px;
  margin: 0;
}
#footer-bottom .icons-link-footer ul li {
  display: inline-block;
}
#footer-bottom .icons-link-footer ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}
#footer-bottom .icons-link-footer ul li a i {
  color: #b6b7ba;
  font-size: 50px !important;
  transition: all 0.3s;
}
#footer-bottom .icons-link-footer ul li a i:hover {
  color: #fff;
  border-radius: 6px;
}
#footer-bottom .real-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
#footer-bottom .real-footer p {
  font-size: 15px !important;
  margin-bottom: 50px;
  text-align: center;
}

body {
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  #footer-bottom .real-footer p {
    margin-bottom: 50px;
  }
}
@media (max-width: 1199px) {
  #careerbackground .experience {
    margin-top: 35px;
  }
  #footer-bottom .real-footer p {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  #home .my-img {
    justify-content: flex-start;
    height: unset;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .modal#projectModal .modal-dialog .modal-content .modal-body .modal-close-button {
    right: 10px;
    top: 10px;
  }
  .modal#projectModal .modal-dialog .modal-content .modal-body .right {
    padding-left: 0;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  body.modal-open {
    padding-right: 0 !important;
  }
  * {
    max-width: 100%;
  }
  #sidebar {
    background: black;
    padding-right: 60px;
    transform: translateX(-100%);
    transition: all 0.3s;
    z-index: 5;
  }
  #sidebar.open {
    transform: translateX(0);
  }
  #sidebar .toggle-sidebar {
    display: flex;
  }
  #sidebar .logo {
    text-align: left;
  }
  #sidebar nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  #sidebar nav ul li a span {
    display: block;
    padding: 8px;
  }
  #sidebar nav ul li > span {
    display: none;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 20px;
  }
  main {
    padding-left: 0;
  }
  main > section {
    padding-right: 32px;
    padding-left: 32px;
  }
  #home .info {
    padding-top: 80px;
  }
  #home .info .socials {
    margin-top: 70px;
  }
  #home .info .socials ul {
    justify-content: space-between;
  }
  #about h1 {
    margin-bottom: 0px;
  }
  #about p {
    font-size: 16px;
    padding-bottom: 10px;
  }
  .modal#projectModal .modal-dialog .modal-content .modal-body img {
    height: unset;
  }
  .modal#projectModal .modal-dialog .modal-content .modal-body .left {
    padding-right: 0;
  }
  .modal#projectModal .modal-dialog .modal-content .modal-body .right {
    padding-left: 0;
    padding-top: 32px;
  }
  #projects .filters {
    margin-top: 51px;
    margin-bottom: 45px;
  }
  #careerbackground .items .item {
    position: relative;
  }
  #careerbackground .items .item .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
    z-index: 2;
    margin-top: 0;
  }
  #careerbackground .items .item .icon:before {
    display: none;
  }
  #careerbackground .items .item .box:before {
    display: none;
  }
  #careerbackground .education,
  #careerbackground .experience {
    padding-right: 12px;
    padding-left: 12px;
  }
  #contacts .upper-container {
    width: 100%;
    flex: wrap;
    flex-direction: column;
    text-align: center;
  }
  #contacts .upper-container .contact-info {
    margin: 0;
  }
  #contacts .upper-container .contact-info p {
    font-size: 1rem;
  }
  #footer-bottom .real-footer {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=style.css.map */