/*======================================
Theme Name: Createch
Description: Createch theme for Munir
Version: 1.0
Author: Alexander Tatic
Template: Divi
======================================*/
/*CSS Ovdje*/
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

body {
  font-family: "Onest", sans-serif;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.at-text-shine span {
  background: linear-gradient(to right, #555cff 20%, #8891fc 30%, #555cff 70%, #8891fc 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 6s linear infinite alternate;
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.at-two-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media all and (max-width: 980px) {
  .at-two-buttons {
    display: block;
  }
}

#scroll-container {
  position: relative;
  border: 3px solid black;
  border-radius: 5px;
  overflow-x: hidden;
}

#scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  white-space: nowrap;

  -moz-animation: my-animation 20s linear infinite;
  -webkit-animation: my-animation 20s linear infinite;
  animation: my-animation 20s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
  }
}

/* for Chrome */
@-webkit-keyframes my-animation {
  from {
    -webkit-transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/* enable class below once you're done editing the menu */

.fullwidth-menu {
  opacity: 0;
  top: 0vh;
  visibility: hidden;
}

.line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  opacity: 1;
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

.fullwidth-open.open .line {
  background: #000 !important;
}

.line-1 {
  top: 15px;
}

.line-2 {
  top: 25px;
  width: 80%;
}

.line-3 {
  top: 35px;
  width: 50%;
}

.fullwidth-open.open .line-1 {
  top: 25px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.fullwidth-open.open .line-2 {
  display: none;
}

.fullwidth-open.open .line-3 {
  top: 25px;
  width: 100%;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.fullwidth-menu-open {
  opacity: 1 !important;
  top: 0 !important;
  visibility: visible !important;
}

.fullwidth-menu {
  -webkit-transition: all 0.5s ease !important;
  -moz-transition: all 0.5s ease !important;
  -o-transition: all 0.5s ease !important;
  -ms-transition: all 0.5s ease !important;
  transition: all 0.5s ease !important;
}

.main-menu-item ul {
  display: none;
  padding: 0;
  margin-top: 50px;
}

.toggle-sub-menu {
  cursor: pointer;
}

.at-menu-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.at-menu-item a {
  font-size: 51px;
  line-height: 1.2em;
  color: #fff;
}
.at-menu-item a:hover {
  transform: scale(0.75);
  transform-origin: left center;
  color: #555cff;
  transition: ease 0.5s;
}
.at-project-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media all and (max-width: 980px) {
  .at-project-item {
    display: none !important;
  }
}

.at-project-item a {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.at-project-item a:hover {
  color: #fff;
}
.at-project-item img {
  margin: 0px 10px;
}
.fa-arrow-right {
  font-size: 30px;
  color: #fff;
}
.at-project-item {
  visibility: hidden;
}

.at-menu-item:hover .at-project-item {
  display: flex;
  transition: ease 0.5s;
  visibility: visible;
}

@media all and (max-width: 980px) {
  .at-menu-item a {
    font-size: 35px !important;
  }
}

.horizontal-container {
  width: 300%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  max-width: none;
}

#page-container {
  overflow: hidden;
}

.horizontal-section {
  width: 100%;
  will-change: transform;
}
.at-menu-cta {
	border: solid 2px #555CFF ;
	border-radius: 20px;
 	padding-top: 7px;
 	margin-top: -2px!important;
	margin-left: 25px !important;
}
.at-menu-cta a {
	padding-left: 10px !important;
	padding-right: 10px !important;
	padding-top: 2px !important;
}