@charset "UTF-8";
/*Colors*/
/*mainBody*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #eee0e5;
  font-family: 'Pacifico','Bungee Inline',cursive;
  overflow: hidden;
}

section {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  /* Scroll Snap */
  scroll-snap-align: center;
}

/*header*/
#header {
  background-image: url(../Images/Slika1/Slika1.jpg);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  border-bottom: 6px solid #bbae50;
  max-height: 10000px;
}

/*Burger*/
.menu-wrap {
  display: none;
  position: fixed;
  margin-right: 70px;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-wrap .hamburger > div {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #f08262;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.menu-wrap .hamburger > div:before,
.menu-wrap .hamburger > div:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 4px;
  background: inherit;
}

.menu-wrap .hamburger > div::after {
  top: 10px;
}

.menu-wrap .toggler:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu-wrap .toggler:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0,4s ease;
  transition: opacity 0,4s ease;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.menu-wrap .menu > div {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #f08262;
  font-weight: 1000;
  font-size: 2.5rem;
  padding: 1rem;
  font-family: 'Roboto', sans-serif;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

/*!Burger*/
/*Title*/
.heading {
  font-size: 8rem;
  letter-spacing: 10px;
  margin-left: 100px;
}

.heading > div {
  color: #f08262;
  font-family: 'Bungee Inline', cursive;
  text-shadow: 7px 7px 0px #ffcc00, 12px 12px 0px #e88325;
  display: inline-block;
}

.heading > div:hover {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

/*Buttons*/
/*home*/
.button0 {
  margin: 0;
  position: fixed;
  z-index: 20;
  left: 30%;
  top: 20px;
  width: 200px;
  max-height: 150px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 10px 20px -5px #94a6af;
          box-shadow: 0 10px 20px -5px #94a6af;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button0:before, .button0:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button0:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: url(../Images/button.jpg);
  background-size: cover;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  z-index: 1;
}

.button0:after {
  background-color: #000;
  opacity: 0.16;
  z-index: 2;
}

.button0 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.button0 > div:before, .button0 > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.button0 > div:before {
  content: "POČETNA";
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button0 > div:after {
  content: "POČETNA";
  letter-spacing: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.button0:hover:before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.button0:hover > div:before {
  letter-spacing: 3px;
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
}

.button0:hover > div:after {
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*about*/
.button1 {
  margin: 0;
  position: fixed;
  z-index: 20;
  left: 50%;
  top: 20px;
  width: 200px;
  max-height: 150px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 10px 20px -5px #94a6af;
          box-shadow: 0 10px 20px -5px #94a6af;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button1:before, .button1:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button1:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: url(../Images/button.jpg);
  background-size: cover;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  z-index: 1;
}

.button1:after {
  background-color: #000;
  opacity: 0.16;
  z-index: 2;
}

.button1 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.button1 > div:before, .button1 > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.button1 > div:before {
  content: "O NAMA";
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button1 > div:after {
  content: "KONTAKT";
  letter-spacing: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.button1:hover:before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.button1:hover > div:before {
  letter-spacing: 3px;
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
}

.button1:hover > div:after {
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*project*/
.button2 {
  margin: 0;
  z-index: 20;
  position: fixed;
  left: 60%;
  top: 20px;
  width: 200px;
  max-height: 150px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 10px 20px -5px #94a6af;
          box-shadow: 0 10px 20px -5px #94a6af;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button2:before, .button2:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button2:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: url(../Images/button.jpg);
  background-size: cover;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  z-index: 1;
}

.button2:after {
  background-color: #000;
  opacity: 0.16;
  z-index: 2;
}

.button2 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.button2 > div:before, .button2 > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.button2 > div:before {
  content: "PROJEKTI";
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button2 > div:after {
  content: "PROJEKTI";
  letter-spacing: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.button2:hover:before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.button2:hover > div:before {
  letter-spacing: 3px;
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
}

.button2:hover > div:after {
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*catalog*/
.button3 {
  margin: 0;
  position: fixed;
  z-index: 20;
  left: 40%;
  top: 20px;
  width: 200px;
  max-height: 150px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 10px 20px -5px #94a6af;
          box-shadow: 0 10px 20px -5px #94a6af;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button3:before, .button3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button3:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: url(../Images/button.jpg);
  background-size: cover;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  z-index: 1;
}

.button3:after {
  background-color: #000;
  opacity: 0.16;
  z-index: 2;
}

.button3 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.button3 > div:before, .button3 > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.button3 > div:before {
  content: "KATALOZI";
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button3 > div:after {
  content: "KATALOZI";
  letter-spacing: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.button3:hover:before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.button3:hover > div:before {
  letter-spacing: 3px;
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
}

.button3:hover > div:after {
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*footer*/
.button4 {
  margin: 0;
  position: fixed;
  z-index: 20;
  left: 70%;
  top: 20px;
  width: 200px;
  max-height: 150px;
  padding: 30px;
  margin: 0 auto;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 10px 20px -5px #94a6af;
          box-shadow: 0 10px 20px -5px #94a6af;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.button4:before, .button4:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.button4:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-image: url(../Images/button.jpg);
  background-size: cover;
  -webkit-transition: 0.3s ease transform;
  transition: 0.3s ease transform;
  z-index: 1;
}

.button4:after {
  background-color: #000;
  opacity: 0.16;
  z-index: 2;
}

.button4 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.button4 > div:before, .button4 > div:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  padding: 25px 0;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.button4 > div:before {
  content: "INFO";
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.button4 > div:after {
  content: "INFO";
  letter-spacing: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}

.button4:hover:before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.button4:hover > div:before {
  letter-spacing: 3px;
  opacity: 0;
  -webkit-transform: scale(4);
          transform: scale(4);
}

.button4:hover > div:after {
  letter-spacing: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*Title*/
.heading1 {
  margin-top: 30px;
  padding-top: 70px;
  font-size: 4rem;
  letter-spacing: 10px;
  color: #f08262;
  font-family: 'Bungee Inline', cursive;
  text-shadow: 5px 5px 0px #ffcc00;
  text-align: center;
}

/*Card1*/
.card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 10px;
  grid-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  max-width: 550px;
  height: 300px;
  max-height: 300px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-shadow: 2px 3px 4px 1px black;
          box-shadow: 2px 3px 4px 1px black;
  border-radius: 15px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
  border-radius: 15px;
}

.flip-card-front img {
  border-radius: 15px;
  max-width: 100%;
  height: 300px;
}

.flip-card-back {
  color: white;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  border-radius: 15px;
}

.flip-card-back > h1 {
  margin-top: 100px;
  color: #f08262;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.button-card {
  width: 100px;
  height: 50px;
  background-color: transparent;
  border-radius: 30px;
  -webkit-box-shadow: 1px 1px 1px 1px black;
          box-shadow: 1px 1px 1px 1px black;
  border: 1px solid #e9d8e0;
  margin-top: 30px;
  cursor: pointer;
}

/*card2*/
.flip-card1 {
  background-color: transparent;
  width: 100%;
  max-width: 550px;
  height: 300px;
  max-height: 300px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-shadow: 2px 3px 4px 1px black;
          box-shadow: 2px 3px 4px 1px black;
  border-radius: 15px;
}

.flip-card-inner1 {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flip-card1:hover .flip-card-inner1 {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip-card-front1, .flip-card-back1 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}

.flip-card-front1 {
  background-color: #bbb;
  color: black;
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
}

.flip-card-back1 {
  color: white;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  border-radius: 15px;
  position: absolute;
  z-index: 15;
}

.flip-card-back1 > h1 {
  margin-top: 100px;
  color: #f08262;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.flip-card-back1 .imgSlide {
  visibility: hidden;
}

.flip-card-back1 .heading {
  margin: 0 auto;
  margin-top: 150px;
}

/*Dropdown*/
.dropbtn {
  background-color: inherit;
  padding: 16px;
  font-size: 1.2rem;
  border: none;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  color: #e88325;
  border-radius: 20px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 800;
}

.dropdown1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 250px;
  margin-top: 20px;
}

.dropdown-content {
  display: none;
  margin-top: 50px;
  position: absolute;
  background-color: #eee0e5;
  min-width: 230px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 20px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.dropdown-content a {
  color: #e88325;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #cebcc2;
  border-radius: 20px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #cebcc2;
}

/*!Dropdown*/
/*aboutContact*/
.abco {
  text-align: center;
  padding-top: 125px;
  padding-bottom: 125px;
  margin: auto;
  max-width: 1500px;
  background-color: transparent;
  border-radius: 30px;
  -webkit-box-shadow: 1px 1px 1px 1px black;
          box-shadow: 1px 1px 1px 1px black;
  border: 1px solid #e9d8e0;
  margin-top: 50px;
}

.abco > p {
  margin-top: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*Contact*/
.contactForm {
  margin: 0 auto;
  max-width: 600px;
  max-height: 600px;
  padding-top: 100px;
}

.contactForm > p {
  margin-top: 20px;
}

.contactForm > h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #f08262;
  margin-top: 30px;
}

/*Projects*/
.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 305px;
}

.project1 {
  background-color: #ddc;
  border: solid 3vmin #eee0e5;
  border-bottom-color: #e0c9d1;
  border-left-color: #eee0e5;
  border-radius: 2px;
  border-right-color: #eee0e5;
  border-top-color: #cebcc2;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset, 0 5px 10px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset, 0 5px 10px 5px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 419px;
  max-height: 270px;
  margin-right: 30px;
}

.project1 > img {
  width: 340px;
}

.project1:hover {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}

.project1 > img:hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset, 0 5px 10px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25) inset, 0 5px 10px 5px rgba(0, 0, 0, 0.25);
}

.modal2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.modalContent {
  width: 90vw;
  height: 100vh;
  background-color: #cebcc2;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 2em;
  border-radius: 1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
}

#modal2:target {
  opacity: 1;
  visibility: visible;
}

#modal2:target .modalContent {
  opacity: 1;
  visibility: visible;
}

.modalClose {
  color: #363636;
  font-size: 2em;
  position: absolute;
  top: .5em;
  right: 1em;
}

.modalHeading {
  color: var(--color1);
  margin-bottom: 1em;
}

.modalParagraph {
  line-height: 1.5em;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.modalOpen {
  display: inline-block;
  margin: 2em;
}

/*Footer*/
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 90px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 100px;
  margin: 0 auto;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 800;
  text-align: center;
}

.footer1 {
  min-width: 400px;
  height: 400px;
  max-height: 500px;
}

.footer1 > h2 {
  font-size: 2rem;
  font-weight: 400;
  color: #f08262;
}

.footer1 > p {
  margin-bottom: 60px;
  margin-top: 60px;
}

.footer2 {
  min-width: 400px;
  height: 400px;
  max-height: 500px;
}

.footer2 > p {
  margin-top: 100px;
}

.footer2 > p > a {
  text-decoration: none;
  color: #000;
}

/*Logo*/
.logo {
  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;
  margin-top: 15px;
  border-radius: 15px;
}

.logo > img {
  border-radius: 15px;
  width: 400px;
  opacity: 0.7;
}

/*button*/
.up1 {
  margin-top: 50px;
  text-align: center;
}

.up1 > button {
  background-color: inherit;
  padding: 16px;
  font-size: 1.2rem;
  border: none;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  color: #e88325;
  border-radius: 20px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.up1 > button:hover {
  background-color: #cebcc2;
}

/*socialMedia*/
.fab {
  padding: 20px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
}

.fab:hover {
  opacity: 0.7;
}

/* Facebook */
.fa-facebook-t {
  background: inherit;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: inherit;
  color: #55ACEE;
}

/* youtube */
.fa-youtube {
  background: inherit;
  color: #bb0000;
}

/*Contact*/
.contactForm1 {
  padding-top: 250px;
  margin: 0 auto;
  max-width: 600px;
  max-height: 600px;
  text-align: center;
}

.contactForm1 > p {
  margin-top: 20px;
}

.contactForm1 > h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #f08262;
  margin-top: 30px;
}

@media screen and (max-width: 2000px) {
  .heading {
    font-size: 3.3rem;
    margin-left: 10px;
    padding-top: 25px;
  }
  .button0 {
    width: 150px;
    left: 25%;
  }
  .button1 {
    width: 150px;
    left: 45%;
  }
  .button2 {
    width: 150px;
    left: 55%;
  }
  .button3 {
    width: 150px;
    left: 35%;
  }
  .button4 {
    width: 150px;
    left: 65%;
  }
  .card-container {
    margin-top: 20px;
  }
  .flip-card {
    max-width: 400px;
    height: 300px;
    max-height: 300px;
  }
  .flip-card1 {
    max-width: 400px;
    height: 300px;
    max-height: 300px;
  }
  .abco {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .projects {
    padding-top: 40px;
  }
  .contactForm1 {
    padding-top: 50px;
  }
}

@media screen and (max-width: 1500px) {
  .heading {
    margin-left: 10px;
    padding-top: 60px;
  }
  .button0 {
    width: 110px;
    left: 25%;
  }
  .button1 {
    width: 110px;
    left: 45%;
  }
  .button2 {
    width: 110px;
    left: 55%;
  }
  .button3 {
    width: 110px;
    left: 35%;
  }
  .button4 {
    width: 110px;
    left: 65%;
  }
  .heading1 {
    font-size: 3rem;
  }
  .card-container {
    margin-top: 10px;
    padding-top: 0;
  }
  .flip-card {
    max-width: 350px;
    height: 300px;
    max-height: 300px;
  }
  .flip-card1 {
    max-width: 350px;
    height: 300px;
    max-height: 300px;
  }
  .abco {
    padding-bottom: 0;
  }
  .contactForm {
    padding-top: 30px;
  }
  .footer1 {
    width: 300px;
    height: 300px;
  }
  .footer2 {
    width: 300px;
    height: 255px;
  }
  .logo > img {
    border-radius: 15px;
    width: 350px;
  }
  .footer {
    padding-top: 40px;
  }
  .up1 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .button0 {
    width: 110px;
    left: 20%;
  }
  .button1 {
    width: 110px;
    left: 48%;
  }
  .button2 {
    width: 110px;
    left: 62%;
  }
  .button3 {
    width: 110px;
    left: 34%;
  }
  .button4 {
    width: 110px;
    left: 76%;
  }
  .flip-card {
    max-width: 350px;
    height: 200px;
    max-height: 200px;
  }
  .flip-card-front > img {
    border-radius: 15px;
    max-width: 100%;
    height: 200px;
  }
  .flip-card1 {
    max-width: 350px;
    height: 200px;
    max-height: 200px;
  }
  .slideshow > div > img {
    max-width: 100%;
    height: 200px;
  }
  .contactForm1 {
    display: none;
  }
  .footer1 {
    min-width: 300px;
  }
  .footer2 {
    height: 200px;
    max-height: 200px;
  }
  .footer2 > p {
    margin-top: 10px;
  }
  .logo > img {
    width: 300px;
  }
}

@media screen and (max-width: 850px) {
  body {
    overflow: scroll;
  }
  section {
    height: 100%;
  }
}

@media screen and (max-width: 800px) {
  .button0 {
    width: 110px;
    left: 7%;
  }
  .button1 {
    width: 110px;
    left: 43%;
  }
  .button2 {
    width: 110px;
    left: 61%;
  }
  .button3 {
    width: 110px;
    left: 25%;
  }
  .button4 {
    width: 110px;
    left: 79%;
  }
  .card-container {
    margin-top: 80px;
  }
  .projects {
    padding-top: 70px;
  }
  .project1 {
    max-width: 370px;
    max-height: 270px;
    margin-right: 0;
  }
  .project1 > img {
    width: 200px;
  }
  .footer {
    padding-top: 70px;
    grid-gap: 30px;
  }
  .footer1 {
    min-width: 100px;
    min-height: 180px;
  }
  .footer2 {
    width: 200px;
    height: 255px;
  }
  .logo > img {
    width: 260px;
  }
  .up1 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 750px) {
  .button0 {
    display: none;
  }
  .button1 {
    display: none;
  }
  .button2 {
    display: none;
  }
  .button3 {
    display: none;
  }
  .button4 {
    display: none;
  }
  .menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .heading {
    padding-top: 6px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 450px) {
  .heading {
    font-size: 2.1rem;
    padding-top: 6px;
    padding-left: 50px;
    letter-spacing: 5px;
  }
  #header {
    width: 100%;
  }
  .footer2 {
    min-width: 300px;
  }
}

@media screen and (max-width: 375px) {
  .heading {
    font-size: 2rem;
  }
  .footer1 {
    min-width: 300px;
  }
  .logo > img {
    width: 300px;
  }
}

@media screen and (max-width: 330px) {
  .heading {
    font-size: 1.8rem;
  }
  .heading1 {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=main.css.map */