@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
  --Pink: #c24c87;
  --Green: #1abc9c;
  --Grey: #b1b1b1;
  --Text: #393939;
  --White: #fff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection {
  background-color: #fff;
  color: #c24c87;
}

*::-webkit-scrollbar {
  height: 0.5rem;
  max-width: 1rem;
}

*::-webkit-scrollbar-track {
  background-color: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #c24c87;
}
html {
  scroll-behavior: smooth;
}
input:focus {
  outline: none !important;
}
label:focus {
  outline: none !important;
}
textarea:focus {
  outline: none !important;
}
body {
 
  font-family: 'Poppins', sans-serif;
}
.home-background {
  background: linear-gradient(
    to right,
    hsl(181, 100%, 91%, 1),
    hsl(318, 76%, 85%, 1)
  );
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  width: 100%;
}
h2 {
  font-weight: 300;
  padding: 20px;
  color: var(--Grey);
  text-transform: uppercase;
}
.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn {
  background: none;
  border: 2px solid #c24c87;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 20px;
  min-width: 200px;
  margin: 20px 0;
  cursor: pointer;
  transition: color 0.4s linear;
  position: relative;
}
.btn:hover {
  color: #fff;
}
.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #c24c87;
  z-index: -1;
  transition: transform 0.5s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}
.btn1::before {
  transform: scaleX(0);
}
.btn1:hover::before {
  transform: scaleX(1);
}
.slick-dots li {
  display: none;
}
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}
.go-top {
  font-size: 2.5rem;
  color: var(--Text);
}
/* HEADER */
header {
  background: var(--Pink);
  padding: 15px;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.animated-text {
  background: #c24c87;
  border-radius: 8px;
  padding: 0 10px;
  height: 30px;
  overflow: hidden;
}

.line-anim {
  text-align: center;
  font-size: 1.5rem;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
}

.line-anim:first-child {
  animation: anim 21s infinite;
}

@keyframes anim {
  0% {
    margin-top: 0;
  }
  16% {
    margin-top: -30px;
  }
  33% {
    margin-top: -60px;
  }
  50% {
    margin-top: -90px;
  }
  66% {
    margin-top: -60px;
  }
  82% {
    margin-top: -30px;
  }
  100% {
    margin-top: 0;
  }
}
.menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu a {
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  text-align: center;
}
.menu .animation {
  position: absolute;
  height: 100%;
  top: 0;
  z-index: 0;
  background: #1abc9c;
  border-radius: 8px;
  transition: all 0.5s ease 0s;
}
.animated-text .line span {
  color: #9aebdb;
}
.menu a:nth-child(1) {
  width: 100px;
}
.menu .start-home,
a:nth-child(1):hover ~ .animation {
  width: 100px;
  left: 0;
}
.menu a:nth-child(2) {
  width: 110px;
}
.menu a:nth-child(2):hover ~ .animation {
  width: 110px;
  left: 100px;
}
.menu a:nth-child(3) {
  width: 100px;
}
.menu a:nth-child(3):hover ~ .animation {
  width: 110px;
  left: 205px;
}
.menu a:nth-child(4) {
  width: 100px;
}
.menu a:nth-child(4):hover ~ .animation {
  width: 100px;
  left: 310px;
}

.social-media a {
  color: var(--White);
  font-size: 1.2rem;
  padding: 5px;
  font-weight: 600;
}
.social-media a i:hover {
  transform: scale(1.5);
}
.hamburger {
  cursor: pointer;
  display: none;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
/* MAIN */
main {
  position: relative;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  filter: blur(4rem);
}
/* SHOWCASE */
.showcase {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.text {
  flex: 1;
  text-align: center;
}
.illustration {
  flex: 1;
}
.text .btn2 {
  color: #c24c87;
  font-size: 4rem;
  transition: 0.3s ease;
}
.text .btn2:hover {
  color: #1abc9c;
}
.text .btn2 i:hover {
  transform: scale(1.05);
}
/* SOFTVARE SLIDER */
.software {
  background: var(--White);
  text-align: center;
  padding: 20px;
}

.slider ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.slider ul li {
  width: 200px;
  height: 200px;
  position: relative;
}
.slider ul li img {
  width: 110px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  cursor: pointer;
}
.software .slider img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
}
/* SKILLS */
.skills {
  text-align: center;
  background: #c24c873b;
  padding: 20px 0;
}
.skills h2 {
  color: #393939;
}
.skills-experiences {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about {
  flex: 1;
}
.about-animation {
  position: relative;
  width: 450px;
  overflow: hidden;
  text-align: start;
}
.about-animation .text {
  position: relative;
  color: #c24c87;
  font-size: 2.5rem;
  font-weight: 700;
}
.about-animation .text.first-text {
  color: #393939;
}
.about-animation .text.name-text {
  color: #1abc9c;
}
.about-animation .text.name-text span {
  color: #393939;
}
.text.sec-text:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  height: 20%;
  width: 20%;
}
@keyframes animate {
  40%,
  60% {
    left: calc(100% + 4px);
  }
  100% {
    left: 0%;
  }
}

.procentage {
  flex: 1;
}

.procentage .right .info {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  justify-content: space-between;
  color: #03070a;
}
.procentage .right span {
  font-weight: 500;
  font-size: 18px;
}

.procentage .right .line-skills {
  height: 8px;
  border-radius: 8px;
  width: 100%;
  background: #fff;
  position: relative;
}

.procentage .right .line-skills::before {
  content: '';
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: #c24c87;
  border-radius: 8px;
}

.procentage .right .ps::before {
  width: 98%;
}
.procentage .right .mg::before {
  width: 99%;
}
.procentage .right .axd::before {
  width: 70%;
}
.procentage .right .uxd::before {
  width: 90%;
}
.procentage .right .html::before {
  width: 20%;
}
.wrapper {
  position: relative;
  width: 100%;
  padding: 25px 30px 30px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
}
lottie-player {
  position: absolute;
  top: -11.9rem;
  left: 28rem;
  z-index: 2;
}
.wrapper nav {
  position: relative;
  display: flex;
  align-items: center;
  border: 3px solid #c24c87;
  border-radius: 8px;
}
.wrapper nav label {
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  position: relative;
  color: #c24c87;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 9px;
  transition: all 0.3s ease;
}
.wrapper nav label:hover {
  background: #c24c8735;
}
.wrapper .content {
  box-shadow: none;
}
#home:checked ~ nav label.home,
#blog:checked ~ nav label.blog {
  color: #fff;
  background: #c24c87;
}

input[type='radio'] {
  display: none;
}

section .content {
  display: none;
}
#home:checked ~ section .content-1,
#blog:checked ~ section .content-2 {
  display: block;
}
section .content p {
  text-align: justify;
}

.box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
.box {
  flex: 1;
}
.box-content .box .box-text {
  display: flex;
  gap: 2rem;
  margin-top: 20px;
}
.box-content .box h3 {
  position: relative;
  font-size: 4rem;
  color: #c24c87;
}
.box-content .box h3 span {
  color: #393939;
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.box-content .box h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 10px;
  text-align: start;
}
.box-content .box h4 span {
  font-weight: bold;
}
.box-content .box .box-links {
  margin-top: 20px;
}
.box-content .box .box-links p {
  line-height: 2;
  padding: 10px 0;
  flex: 1 1 16rem;
}
.box-content .box .box-links p i {
  margin-right: 10px;
}

.box-content-2 .box-links-1 a {
  line-height: 2;
  padding: 10px 0;
}
.box-content-2 .box-links-1 .links-1 .d-flex,
.box-content-2 .box-links-1 .links-2 .d-flex,
.box-content-2 .box-links-1 .links-3 .d-flex {
  flex-direction: column;
  align-items: flex-start;
}

.box-content-2 h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 20px;
}
.box-content-2 h4 {
  text-transform: uppercase;
  color: #6b6b6b;
  font-size: 1rem;
  font-weight: 600;
}
.box-content-2 .box-links-1 .links-1 .d-flex a,
.box-content-2 .box-links-1 .links-2 .d-flex a,
.box-content-2 .box-links-1 .links-3 .d-flex a {
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
}
.box-content-2 .box-links-1 .links-1 .d-flex a i,
.box-content-2 .box-links-1 .links-2 .d-flex a i,
.box-content-2 .box-links-1 .links-3 .d-flex a i {
  margin-right: 20px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
}
/* PORTFOLIO GALLERY */

.portfolio {
  position: relative;
  background: #fff;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.portfolio .filter-buttons {
  flex: 0 0 100%;
  max-width: 100%;
}
.portfolio .filter-buttons ul {
  list-style: none;
  text-align: center;
  padding: 0;
}
.portfolio .filter-buttons ul li {
  color: #393939;
  font-weight: 400;
  font-size: 2rem;
  text-transform: capitalize;
  padding: 5px 10px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 1.2em;
  display: inline-block;
}
.portfolio .filter-buttons ul li.active {
  background-color: #1abc9c;
  border-radius: 8px;
  color: #fff;
}
.portfolio .portfolio-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.svg-lottie {
  position: absolute;
  top: 30rem;
  left: 10rem;
  z-index: -1;
  opacity: 50%;
}
.portfolio .portfolio-gallery .item {
  position: relative;
  padding: 8px;
}
.portfolio .portfolio-gallery .item .inner {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.portfolio .portfolio-gallery .item .inner:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.portfolio .portfolio-gallery .item img {
  width: 260px;
  height: 220px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: block;
}
.portfolio .row .title {
  top: 30px;
}
.contact {
  position: relative;
  background: #c24c873b;
  overflow: hidden;
  text-align: center;
}
.contact .contact-content .right .items .item .text {
  text-align: start;
}
.social p,
.social ul {
  text-align: start;
}
.contact h2 {
  color: #393939;
}
.contact .d-flex {
  align-items: baseline;
}
.contact .contact-content .column {
  width: calc(50% - 30px);
}
.options {
  background: #1abc9c !important;
}

.contact .contact-content .left h2 {
  font-size: 1.2rem;
  color: #c24c87;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact .contact-content .left form .box {
  padding: 1.2rem 1.4rem;
  font-size: 1.2rem;
  color: #393939;
  background: none;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  text-transform: none;
  width: 100%;
  margin: 0.7rem 0;
}

.contact .contact-content .left form .box:focus {
  border-color: #c24c87;
}
.contact .contact-content .left form textarea {
  height: 15rem;
  resize: none;
  font-family: 'Poppins', sans-serif;
}

.contact .contact-content .right h2 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #c24c87;
  letter-spacing: 1px;
  font-weight: 600;
}
.contact .contact-content .right .items .item h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
.contact .contact-content .right .items .item h3::after {
  content: '';
  display: block;
  width: 5rem;
  border-bottom: 1px solid #c24c87;
}

.contact .contact-content .right .items .item p {
  padding: 10px 0;
  font-size: 1.6rem;
}

.contact .contact-content .right .items .item p span {
  margin-right: 10px;
}
.contact .contact-content .right .links {
  overflow: hidden;
  padding: 10px 0;
}
.contact .contact-content .right .links li {
  display: inline-block;
  list-style: none;
  padding-right: 15px;
}
.contact .contact-content .right .links li a {
  color: #c24c87;
  font-size: 1.5rem;
  margin-right: 2rem;
  transition: all 0.3s ease;
}
.contact .contact-content .right .links li a i:hover {
  transform: scale(1.2);
  color: #393939;
}
.contact .custom-shape-divider-top-1661345035 {
  top: 0;
}
.asset {
  position: absolute;
  bottom: 11rem;
  left: 63rem;
  opacity: 0.5;
}
.select-box {
  padding: 1.2rem 1.4rem;
 cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 1.2rem;
  color: #393939;
  background: #c24c872b;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  text-transform: none;
  width: 100%;
  margin: 0.7rem 0;
}
select:hover,
select:focus {
  color: var(--Pink);
  background-color:#c24c8739;
  border-bottom-color: #DCDCDC;
}

.select-container {
  position: relative;
}
.select-container .icon-container {
  position: absolute;
  width: 50px;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-container i {
  font-size: 20px;
  color: var(--Pink);
}
.select-box:focus {
  border-color: #c24c87 !important;
  outline: none;
}
/************ FOOTER ************/
.footer {
  background: #1abc9c;
}
.footer-content {
  width: 95%;
  margin: 0 auto;
  padding: 30px 0;
}
.footer h3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 2.2rem;
}
.line {
  content: '';
  border: 1px solid #106455;
  width: 100%;
  margin-top: 5px auto;
}
.footer-boxs .box {
  padding: 20px 0;
  text-align: start;
}
.footer-boxs .box:nth-child(1) {
  width: 20%;
}
.footer-boxs .box:nth-child(2) {
  width: 40%;
}
.footer-boxs .box:nth-child(3) {
  width: 30%;
}
.footer-boxs .box h4 {
  color: #393939;
  font-size: 1.8rem;
}
.footer-boxs .box p {
  padding: 5px 0;
}
.line-box {
  content: '';
  border: 1px solid #106455;
  width: 30%;
}
.boxcontent1 {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 2;
  color: #393939;
}
.boxcontent2 {
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 2;
  color: #393939;
}
.boxcontent1 ul li a:hover,
.boxcontent2 ul li a:hover {
  background: #106455;
  color: #fff;
  font-weight: 500;
}
.language h5 {
  margin: 10px 0;
}
.box .language .usa {
  background: #393939;
  color: #1abc9c;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.box .language .srb {
  background: #393939;
  color: #1abc9c;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
}
.box .language .usa:hover,
.box .language .srb:hover {
  background: #fff;
  color: #393939;
  font-weight: 500;
}
/* FOOTER NEW YEAR COUNTER */
.counter ul {
  display: flex;
  margin-top: 10px;
}
.counter li {
  margin-inline: 0.5em;
}
.counter h1 {
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
  color: black;
  padding: 0.5em 0 1em 0;
}
.counter h3 {
  font-size: 1.2rem;
  color: #393939;
  font-weight: 600;
}
.counter .container {
  background-color: #393939;
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 8px;
  display: grid;
  place-content: center;
}
.counter .container p {
  font-size: 2rem;
}
.counter .center {
  text-align: center;
  color: black;
  font-size: 1.2rem;
  padding-top: 5px;
}
/* MEDIA QUERY */
@media (max-width: 500px) {
  .navbar {
    justify-content: center;
  }
  .menu {
    margin: 10px 0;
  }
  .showcase {
    display: none;
  }

  .about-animation .text {
    font-size: 1.8rem;
  }
  .wrapper {
    padding: 10px;
    margin-top: 45px;
    text-align: center;
  }
  .wrapper .container {
    padding: 0;
    width: 100%;
  }
  .wrapper nav {
    flex-direction: column;
  }
  .box-content {
    flex-direction: column;
    gap: 0;
  }
  .box-content .box .box-text {
    flex-direction: column;
    gap: 20px;
  }
  .box-content .box h3 span {
    color: rgb(57, 57, 57);
    font-size: 1.2rem;
    font-weight: 600;
    position: absolute;
    bottom: -8px;
    right: 5px;
  }
  .d-flex {
    display: block;
  }
  .portfolio .filter-buttons ul li {
    display: table-cell;
    font-size: 12px;
  }
  .portfolio .container {
    width: 100%;
    padding: 0;
  }
}
@media(max-width: 1280px) {
  .computer-amination {
    position: absolute;
    bottom: 10rem;
    left: 14rem;
    opacity: 0.5;
}
.footer h3 {
  font-size: 1.5rem;
  padding: 10px 0;
}
.footer-boxs .box h4 {
  color: #393939;
  font-size: 1.2rem;
}
.footer-boxs .box {
  font-size: 16px;
}
.counter .container p {
  font-size: 1.2rem;
}
.counter .center {
  text-align: center;
  color: black;
  font-size: 1rem;
  padding-top: 5px;
}
.footer-content {
  padding: 0;
}
.boxcontent1 ul li a,
.boxcontent2 ul li a {
  color: #393939;
}
.footer-boxs small {
  text-transform: capitalize;
  font-size: 14px;
}
.box .language .usa {

  height: 40px;
  width: 40px;
  line-height: 40px;

}
.box .language .srb {

  height: 40px;
  width: 40px;
  line-height: 40px;

}
.wrapper lottie-player {


  left: 23rem;

}
}
@media (max-width: 1024px) {
  lottie-player {
    left: 16rem;
  }
  .wrapper {
    margin-top: 60px;
  }
  .box-content .box .box-links p {
    font-size: 12px;
  }
  .box-content .box h4 {
    font-size: 1.2rem;
  }
  .box-content-2 .box-links-1 .links-1 .d-flex a,
  .box-content-2 .box-links-1 .links-2 .d-flex a,
  .box-content-2 .box-links-1 .links-3 .d-flex a {
    font-size: 12px;
  }
  .text .btn2 {
    font-size: 3rem;
  }
  .software {
    padding: 0;
  }

  .slider ul li {
    height: 146px;
  }
}
@media (max-width:1600px) {
  .asset {
    position: absolute;
    bottom: 10rem;
    left: 33rem;
    opacity: 0.5;
}
}
@media (max-width: 768px) {
  .showcase .text p {
    font-size: 12px;
  }
  .text .btn2 {
    font-size: 2rem;
  }
  .illustration img {
    width: 90%;
  }
  .slick-slide {
    width: 50vw;
    box-sizing: border-box;
  }
  .slick-dots {
    > li {
      display: inline-block;
    }
    > li:only-child {
      display: none;
    }
  }
  .skills-experiences {
    flex-direction: column;
  }
  .about-animation .btn {
    position: absolute;
    top: 120px;
    right: 10px;
  }
  .about-animation {
    padding: 20px;
    width: 655px;
  }
  .procentage {
    width: 100%;
  }
  lottie-player {
    left: 28rem;
    top: -33rem;
  }
  .wrapper {
    padding: 5px;
  }
  .box-content .box h4 {
    font-size: 0.9rem;
  }
  .box-content {
    gap: 1rem;
  }
  .box-content .box .box-text {
    margin-top: 2px;
    align-items: flex-start;
  }
  .box-content .box h3 {
    font-size: 3rem;
  }
  .box-content .box .box-links p {
    font-size: 10px;
  }
  .box-content-2 h3 {
    font-size: 1.3rem;
    margin-top: 11px;
  }
}
