@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;1,400&display=swap");
/**  COLORS **/
/** FONT SİZES **/
* {
  list-style-type: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
}

a {
  color: black;
}

::-moz-selection {
  background-color: #6e57e0;
  color: #fff;
}

::selection {
  background-color: #6e57e0;
  color: #fff;
}

#scroolNavigation {
  display: none;
  font-size: 2.5rem;
  background-color: #6e57e0;
  border-radius: 10px;
  position: fixed;
  right: 20px;
  bottom: 10%;
}

@media screen and (max-width: 600px) {
  #scroolNavigation {
    bottom: 15%;
    font-size: 2rem;
  }
}

#scroolNavigation i {
  color: white;
}

.none {
  display: none;
}

#language {
  position: fixed;
  right: 10px;
  top: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#language .language {
  width: 50px;
  height: 50px;
  display: none;
}

@media screen and (max-width: 600px) {
  #language .language {
    width: 35px;
    height: 35px;
  }
}

#language .open {
  display: block !important;
}

#language .selectedLanguage {
  width: 65px;
  height: 65px;
  border: 3px solid gray;
  border-radius: 50%;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  #language .selectedLanguage {
    width: 50px;
    height: 50px;
  }
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 600px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0px;
    top: auto;
    right: auto;
    width: 100%;
    background-color: white;
    border-top: 0.3px solid rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0px;
    top: auto;
    right: auto;
    width: 100%;
    background-color: white;
    border-top: 0.3px solid rgba(0, 0, 0, 0.4);
    z-index: 99;
  }
}

nav a:hover {
  color: #6e57e0;
}

#bannerLogo {
  display: inline-block;
  font-size: 25px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #bannerLogo {
    font-size: 2.5rem;
  }
}

#bannerMenu {
  font-size: 1.125rem;
  margin-right: 5%;
  display: inline-block;
}

#bannerMenu .active-link {
  color: #6e57e0;
}

#bannerMenu li {
  display: inline-block;
  padding: 15px;
}

#bannerMenu li i {
  font-size: 20px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #bannerMenu li i {
    font-size: 2.5rem;
  }
}

#bannerMenu a:nth-last-child(1) {
  display: none;
}

@media screen and (max-width: 600px) {
  #bannerMenu {
    margin-right: 0px !important;
    bottom: 100%;
    background-color: white;
  }
  #bannerMenu a {
    display: none;
  }
  #bannerMenu ul,
  #bannerMenu li {
    padding: 10px;
    margin: 0px;
  }
  #bannerMenu .responsive {
    display: inline-block !important;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #bannerMenu {
    margin-right: 0px !important;
    bottom: 100%;
    background-color: white;
  }
  #bannerMenu a {
    display: none;
  }
  #bannerMenu ul,
  #bannerMenu li {
    padding: 10px;
    margin: 0px;
  }
  #bannerMenu .responsive {
    display: inline-block !important;
  }
}

.close {
  font-size: 40px;
  float: right;
  margin-right: 65px;
}

.mobileMenu {
  z-index: 99999999;
  background-color: white;
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0px;
  margin-top: auto;
}

.mobileMenu ul {
  padding: 0px;
  margin: 0px;
}

.mobileMenu a {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  .mobileMenu a {
    font-size: 2rem;
  }
}

.mobileMenu a i {
  display: block;
}

.mobileMenu ul li {
  display: inline-block;
  width: 30%;
}

#homePage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

header {
  padding-top: 100px;
}

@media screen and (max-width: 600px) {
  header {
    padding-top: 10px;
  }
}

#homeContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#homeContainer img {
  width: 50vh;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeContainer img {
    width: 40vh;
  }
}

@media screen and (max-width: 600px) {
  #homeContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #homeContainer img {
    width: 40vh;
  }
}

#homeText {
  width: 30%;
  margin: 0px;
}

#homeText h1 {
  font-size: 2rem;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText h1 {
    font-size: 2.5rem;
  }
}

#homeText h3 {
  color: #6d6a7c;
  font-size: 1.125rem;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText h3 {
    font-size: 1.5rem;
  }
}

#homeText p {
  color: #6d6a7c;
  font-size: 0.983rem;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText p {
    font-size: 1.3rem;
  }
}

#homeText #contact {
  min-width: 150px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #6e57e0;
  font-size: 0.983rem;
  border: none;
  color: white;
  padding: 15px;
  border-radius: 10px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText #contact {
    font-size: 1.5rem;
  }
}

#homeText #contact i {
  margin-left: 15px;
  font-size: 1.25rem;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText #contact i {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  #homeText #scroola {
    display: none;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #homeText #scroola {
    display: none;
  }
}

#homeText #scrool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  font-size: 0.983rem;
  border: none;
  color: black;
  padding: 5px;
  border-radius: 10px;
  -webkit-transform: translateY(230px);
          transform: translateY(230px);
  cursor: pointer;
}

#homeText #scrool i {
  margin-left: 5px;
  font-size: 1.5rem;
  color: #6e57e0;
}

#homeText #scrool:hover {
  -webkit-transform: translateY(240px);
          transform: translateY(240px);
}

@media screen and (max-width: 600px) {
  #homeText {
    width: 100%;
  }
}

#iconList {
  width: 15%;
  height: 100%;
}

#iconList a {
  display: block !important;
}

#iconList i {
  font-size: 25px;
  color: #6e57e0;
  margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
  #iconList i {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

@media screen and (max-width: 600px) {
  #iconList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    padding-top: 100px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

#about {
  padding-top: 100px;
  margin-top: 280px;
  height: 100vh;
}

@media screen and (max-width: 600px) {
  #about {
    margin-top: 10px;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #about {
    margin-top: 100px;
  }
}

#aboutHeader {
  text-align: center;
}

#aboutHeader h1 {
  font-size: 2rem;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutHeader h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  #aboutHeader h1 {
    margin-bottom: 3px;
  }
}

#aboutHeader p {
  font-size: 0.983rem;
  color: #6d6a7c;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutHeader p {
    font-size: 1.5rem;
  }
}

#aboutImage {
  width: 25%;
}

@media screen and (max-width: 600px) {
  #aboutImage {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutImage {
    width: 40%;
    margin: 0 auto;
  }
}

#aboutImage img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

#aboutText {
  width: 23%;
}

@media screen and (max-width: 600px) {
  #aboutText {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutText {
    width: 45%;
  }
}

#aboutText span {
  display: inline-block;
  width: 33%;
  font-size: 2rem;
  text-align: center;
  color: black;
}

@media screen and (max-width: 600px) {
  #aboutText span {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutText span {
    font-size: 2rem;
  }
}

#aboutText a {
  text-align: center;
  display: inline-block;
  width: 32%;
  color: #6d6a7c;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutText a {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 600px) {
  #aboutText a {
    font-size: 0.9rem;
  }
}

#aboutText p {
  font-size: 0.983rem;
  color: #6d6a7c;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutText p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  #aboutText p {
    font-size: 0.9rem;
  }
}

#aboutText i {
  font-size: 1.5rem;
}

#aboutContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5%;
}

#aboutContent #downloadButton {
  margin: 40px;
  display: inline-block;
  width: 170px;
  padding: 10px;
  background-color: #6e57e0;
  word-wrap: break-word;
  color: white;
  border-radius: 10px;
}

@media screen and (max-width: 800px) and (min-width: 600px) {
  #aboutContent #downloadButton {
    font-size: 1.5rem;
    width: 70%;
    padding: 20px 5px;
  }
}

@media screen and (max-width: 600px) {
  #aboutContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}

#skills {
  padding-top: 100px;
  min-height: 80vh;
}

#skills #header {
  text-align: center;
}

#skills #header h1 {
  font-size: 2rem;
}

#skills #header p {
  font-size: 0.983rem;
  color: #6d6a7c;
}

#skills #content {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  #skills #content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#skills #content .skillsTitle {
  text-align: left;
  display: inline-block;
  margin: 0 10px;
}

@media screen and (max-width: 600px) {
  #skills #content .skillsTitle h1 {
    font-size: 1.2rem;
  }
}

#skills #content .skilList {
  width: 45%;
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 600px) {
  #skills #content .skilList {
    width: 100%;
  }
}

#skills #content .skilList:nth-child(1) ul li:nth-child(1) .line::before {
  width: 90%;
}

#skills #content .skilList:nth-child(1) ul li:nth-child(2) .line::before {
  width: 80%;
}

#skills #content .skilList:nth-child(1) ul li:nth-child(3) .line::before {
  width: 50%;
}

#skills #content .skilList:nth-child(1) ul li:nth-child(4) .line::before {
  width: 70%;
}

#skills #content .skilList:nth-child(2) ul li:nth-child(1) .line::before {
  width: 90%;
}

#skills #content .skilList:nth-child(2) ul li:nth-child(2) .line::before {
  width: 70%;
}

#skills #content .skilList:nth-child(2) ul li:nth-child(3) .line::before {
  width: 40%;
}

#skills #content .skilList:nth-child(2) ul li:nth-child(4) .line::before {
  width: 60%;
}

#skills #content .skilList:nth-child(3) ul li:nth-child(1) .line::before {
  width: 90%;
}

#skills #content .skilList:nth-child(3) ul li:nth-child(2) .line::before {
  width: 80%;
}

#skills #content .skilList:nth-child(3) ul li:nth-child(3) .line::before {
  width: 50%;
}

#skills #content .skilList:nth-child(3) ul li:nth-child(4) .line::before {
  width: 70%;
}

#skills #content .skilList ul {
  width: 80%;
  margin-left: auto;
  display: none;
}

@media screen and (max-width: 600px) {
  #skills #content .skilList ul {
    width: 100%;
  }
}

#skills #content .skilList ul li {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#skills #content .skilList ul.show {
  display: block;
}

#skills #content .skilList ul .bold {
  font-size: 1.125rem;
}

#skills #content .skilList ul .numbers {
  font-size: 0.983rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#skills #content .skilList ul .line {
  width: 100%;
  height: 5px;
  margin-top: 15px;
  background-color: #c1b6fc;
  position: relative;
}

#skills #content .skilList ul .line::before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  background-color: #6e57e0;
}

#skills #content .columnBox {
  width: 100%;
}

#skills #content .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

#skills #content .box i {
  font-size: 2rem;
  color: #6e57e0;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  cursor: pointer;
}

#skills #content .box i.rotate {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 600px) {
  #skills #content .box i {
    font-size: 1.5rem;
    margin-right: 5px;
  }
}

#qualification .header {
  text-align: center;
}

#qualification .header h1 {
  font-size: 2rem;
}

#qualification .header span {
  font-size: 0.983rem;
  color: #6d6a7c;
}

#qualification .content {
  font-size: 1.125rem;
  color: #6d6a7c;
  text-align: center;
}

#qualification .dotL::after {
  content: "";
  padding: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #6e57e0;
  position: absolute;
  top: 0;
  left: 99%;
  z-index: 99;
}

#qualification .dotR::after {
  content: "";
  padding: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #6e57e0;
  position: absolute;
  top: 0;
  right: 99%;
  z-index: 99;
}

#qualification .timeLine {
  height: 100vh;
  width: 40%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 600px) {
  #qualification .timeLine {
    width: 90%;
  }
}

#qualification .timeLine .timeLineL {
  width: 51%;
  position: relative;
}

#qualification .timeLine .timeLineR {
  width: 51%;
}

#qualification .timeLine .textBox {
  height: 18%;
  width: 100%;
  position: relative;
}

#qualification .timeLine .textBox h4,
#qualification .timeLine .textBox p {
  margin-left: 3%;
}

@media screen and (max-width: 600px) {
  #qualification .timeLine .textBox h4 {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 600px) {
  #qualification .timeLine .textBox p {
    font-size: 0.8rem;
  }
}

#qualification .timeLine .line {
  height: 100%;
  width: 5px;
  background-color: black;
  position: relative;
  margin: auto 5px;
}

#services {
  padding-top: 100px;
  text-align: center;
  height: 80vh;
}

#services span {
  color: #6d6a7c;
}

@media screen and (max-width: 600px) {
  #services {
    height: 120vh;
  }
}

#services h1 {
  font-size: 2rem;
}

#services .serviceBox {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 70%;
  padding-top: 5%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #services .serviceBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
  }
}

#services .serviceBox .box {
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  width: 45%;
  height: 43vh;
  padding: 40px 0 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding-bottom: 1%;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  #services .serviceBox .box {
    padding: 40px 0 0 15px;
    margin-bottom: 20px;
  }
}

#services .serviceBox .box .modalOpen {
  font-size: 1.1rem;
}

#services .serviceBox .box .modalOpen:hover i {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: inline-block;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

#services .serviceBox h2 {
  width: 70%;
}

@media screen and (max-width: 600px) {
  #services .serviceBox h2 {
    font-size: 1.3rem;
  }
}

#services .serviceBox .uil-shop, #services .serviceBox .uil-user, #services .serviceBox .uil-window {
  color: #6e57e0;
  font-size: 2.5rem;
}

@media screen and (max-width: 600px) {
  #services .serviceBox .uil-shop, #services .serviceBox .uil-user, #services .serviceBox .uil-window {
    font-size: 2rem;
  }
}

#services .serviceBox a {
  color: #6e57e0;
  font-size: 0.983rem;
}

#services .modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  z-index: 999999999999;
  background-color: rgba(0, 0, 0, 0.3);
}

#services .modal .uil-times {
  position: absolute;
  right: 1%;
  top: 0;
  font-size: 2rem;
  cursor: pointer;
}

#services .modal .modalContent {
  width: 30%;
  height: 30%;
  position: absolute;
  background-color: white;
  text-align: left;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  #services .modal .modalContent {
    width: 70%;
    height: 40%;
  }
}

#services .modal .modalContent h3, #services .modal .modalContent p {
  margin-left: 5%;
}

#services .modal .modalContent h4 {
  font-size: 1.125rem;
}

#portfolio {
  padding-top: 100px;
  text-align: center;
  height: 150vh;
}

#portfolio span {
  color: #6d6a7c;
}

#portfolio .slick-next,
#portfolio .slick-prev {
  z-index: 99;
}

#portfolio .slick-next::before,
#portfolio .slick-prev::before {
  font-family: unicons-line;
  font-style: normal;
  font-weight: 400;
  color: #6e57e0;
  font-size: 50px;
}

#portfolio .slick-next {
  right: 5%;
}

#portfolio .slick-next::before {
  content: "\eb9f";
}

#portfolio .slick-prev {
  left: 5%;
}

#portfolio .slick-prev::before {
  content: "\ec49";
}

#portfolio h1 {
  font-size: 2rem;
}

#portfolio .slider {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 600px) {
  #portfolio .slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#portfolio .slider .sliderContent {
  text-align: left;
  width: 27%;
}

@media screen and (max-width: 600px) {
  #portfolio .slider .sliderContent {
    width: 60%;
  }
}

#portfolio .slider .sliderContent a {
  text-align: center;
  display: inline-block;
  background-color: #6e57e0;
  font-size: 1.2rem;
  border-radius: 10px;
  color: white;
  padding: 10px 15px;
}

#portfolio .slider .sliderContent a:hover i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

#portfolio .slider .sliderImage {
  width: 40%;
}

@media screen and (max-width: 600px) {
  #portfolio .slider .sliderImage {
    width: 90%;
  }
}

#portfolio .slider .sliderImage img {
  max-width: 100%;
  max-height: 100%;
}

#portfolio .projectBox {
  background-color: #6e57e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 60%;
  height: 25%;
  margin: 100px auto;
  border-radius: 20px;
}

#portfolio .projectBox .projectText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}

#portfolio .projectBox .projectText h2,
#portfolio .projectBox .projectText p {
  color: white;
}

#portfolio .projectBox .projectText a {
  display: inline-block;
  padding: 15px 0 0 25px;
  border-radius: 20px;
  width: 180px;
  height: 60px;
  font-size: 1.2rem;
  background-color: white;
  color: #6e57e0;
}

#portfolio .projectBox .projectImage img {
  max-width: 100%;
  max-height: 100%;
  width: 400px;
  height: 600px;
}

#contact-section {
  text-align: center;
  padding-top: 100px;
}

#contact-section span {
  color: #6d6a7c;
}

#contact-section h1 {
  font-size: 2rem;
}

#contact-section .contactBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 50px auto;
}

#contact-section .contactBox .contactLeft {
  width: 20%;
}

#contact-section .contactBox .contactLeft .inclusive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact-section .contactBox .contactLeft .inclusive .icon {
  font-size: 2rem;
  color: #6e57e0;
  width: 70px;
}

#contact-section .contactBox .contactLeft .inclusive .icon a {
  color: #6e57e0;
}

#contact-section .contactBox .contactLeft .inclusive .information {
  width: calc(100% - 70px);
  text-align: left;
}

#contact-section .contactBox .contactRight {
  width: 40%;
}

#contact-section .contactBox .contactRight .input-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0;
}

#contact-section .contactBox .contactRight .input-field:nth-child(2) textarea {
  height: 100px;
}

#contact-section .contactBox .contactRight .input-field:nth-child(3) textarea {
  height: 200px;
}

#contact-section .contactBox .contactRight .input-field input,
#contact-section .contactBox .contactRight .input-field textarea {
  border: none;
  outline: none;
  background: #f0eefc;
  padding: 15px;
  color: black;
}

#contact-section .contactBox .contactRight .input-field input::-webkit-input-placeholder,
#contact-section .contactBox .contactRight .input-field textarea::-webkit-input-placeholder {
  color: black;
}

#contact-section .contactBox .contactRight .input-field input:-ms-input-placeholder,
#contact-section .contactBox .contactRight .input-field textarea:-ms-input-placeholder {
  color: black;
}

#contact-section .contactBox .contactRight .input-field input::-ms-input-placeholder,
#contact-section .contactBox .contactRight .input-field textarea::-ms-input-placeholder {
  color: black;
}

#contact-section .contactBox .contactRight .input-field input::placeholder,
#contact-section .contactBox .contactRight .input-field textarea::placeholder {
  color: black;
}

#contact-section .contactBox .contactRight .input-field input {
  width: 48%;
  margin: 10px 0;
}

#contact-section .contactBox .contactRight .input-field textarea {
  width: 100%;
  resize: none;
}

#contact-section .contactBox .contactRight button {
  background-color: #6e57e0;
  padding: 15px 20px;
  border-radius: 7px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  margin: 20px 0;
}

@media screen and (max-width: 1000px) {
  #contact-section .contactBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact-section .contactBox .contactLeft,
  #contact-section .contactBox .contactRight {
    width: 80%;
    margin: 0 auto;
  }
  #contact-section .contactBox .contactLeft .input-field,
  #contact-section .contactBox .contactRight .input-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact-section .contactBox .contactLeft .input-field input,
  #contact-section .contactBox .contactRight .input-field input {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #contact-section .contactBox .contactLeft,
  #contact-section .contactBox .contactRight {
    width: 90%;
    margin: 0 auto;
  }
}

footer {
  background-color: #6e57e0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 250px;
}

footer a {
  color: #fff;
}

footer h2 {
  margin: 0;
}

footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer ul li {
  margin: 0 15px;
}

footer ul li a i {
  font-size: 17px;
}

footer .ft-item {
  width: 33.3%;
  padding: 15px;
}

footer .ft-item:nth-child(1) {
  text-align: right;
}

footer .ft-item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .ft-item:nth-child(4) {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

footer .ft-item:nth-child(4) p {
  font-size: 14px;
  color: #ccc;
}

@media screen and (max-width: 1000px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  footer .ft-item {
    width: 100%;
    text-align: center !important;
  }
  footer .ft-item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=style.css.map */