@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --renk1: #49a9e9;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    /* font-family: "Ubuntu", sans-serif; */
    /* font-family: "Exo 2", sans-serif; */
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--renk1) 60;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #353b48;
}

.navbar {
    position: fixed;
    background-color: transparent;
    width: 100%;
    padding: 30px 0;
    top: 0;
    z-index: 999;
    transition: 0.3s linear;
}

.inner-width {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
}

.navbar .inner-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 44px;
    height: 30px;
    background-image: url(../images/black-logo.svg);
    background-size:contain;
}

.menu-toggler {
    background: none;
    width: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    z-index: 999;
    display: none;
}

.menu-toggler span {
    display: block;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    position: relative;
    transition: 0.3s linear;
}

.navbar-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-left: 30px;
    transition: 0.2s linear;
}

.navbar-menu a:hover {
    color: var(--renk1) !important;
}

.sticky {
    background-color: #fff;
    padding: 18px 0;
}

.sticky .logo {
    background-image: url(../images/white-logo.svg);
    width: 42px;
    height: 30px;
    background-size:contain;
}

.sticky .navbar-menu a {
    color: #111;
}

.sticky .menu-toggler span {
    background-color: #111;
}

.d-header {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: url(../images/dh-bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.d-inner {
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
    position: relative;
}
.d-baslik {
    margin-top: 75px;
    color: #f1f1f1;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.d-baslik h1,i{  
    font-weight: 300;
    position: relative;
}

.d-baslik h1::before{
    content: '';
    left: 0;
    bottom: 2px;
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--renk1);
    position: absolute;
    transition: 300ms all;
}

.d-baslik h1:hover::before{
    width: 100px;
}
.galeri {
    width: calc(33% - 10px);
    overflow: hidden;
    border-radius: 6px;
    margin: 10px 0;
    cursor: pointer;
    height: 300px;
}

.galeri img {
    width: 100%;
    height: 100%;
    transition: 0.4s linear;
}
.galeri:hover img {
    transform: scale(1.6);
}

  .d-content{
      background-color: #f1f1f1;
  }
  .header__bg .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
    position: absolute;
}

#home {
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(45deg,
            rgba(2, 0, 36, 1) 70%,
            rgb(49, 116, 160) 100%);
    overflow: hidden;
    position: relative;
}

#home .video {
    width: 100%;
    height: 110%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
    position: absolute;
    top: -60px;
}

#home .inner-width {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    z-index: 10;
}

#home .content {
    width: 100%;
    color: #fff;
    z-index: 888;
}

/* #home .content h1 {
    font-size: 60px;
    margin-bottom: 60px;
} */

#home .content h1 {
    background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #fff, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 5vw;
    -webkit-animation: reveal 4000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
    animation: reveal 4000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
    animation-delay: 1s;
}

#home .content h2 {
    background: 50% 100%/50% 50% no-repeat radial-gradient(ellipse at bottom, #fff, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3vw;
    -webkit-animation: reveal 5000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
    animation: reveal 5000ms ease-in-out forwards 200ms,
        glow 2500ms linear infinite 2000ms;
    margin-bottom: 50px;
    animation-delay: 2s;
}

@-webkit-keyframes reveal {
    80% {
        letter-spacing: 8px;
    }

    100% {
        background-size: 200% 200%;
    }
}

@keyframes reveal {
    80% {
        letter-spacing: 8px;
    }

    100% {
        background-size: 200% 200%;
    }
}

@-webkit-keyframes glow {
    40% {
        text-shadow: 0 0 8px #fff;
    }
}

@keyframes glow {
    40% {
        text-shadow: 0 0 8px #fff;
    }
}

/* #home .content h1::after {
    content: "ASES GRUP";
    animation: textanim 10s linear infinite;
}

@keyframes textanim {
    25% {
        content: "Mekanik & Tesisat";
    }
    50% {
        content: "İhtiyaçlarınıza";
    }
    75% {
        content: "Endüstriyel Çözümler";
    }
} */

.sm a {
    display: inline-block;
    font-size: 22px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #ffffff;
    transition: 0.4s linear;
    position: relative;
    border-color: var(--renk1);
}

.sm a::before,
.sm a::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: 0.4s linear;
    border-color: var(--renk1);
}

.sm a:hover {
    transform: scale(0.8);
    border-color: var(--renk1);
    color: var(--renk1);
}

.sm a:hover::before {
    border-color: var(--renk1);
    border-left: 3px solid;
    border-right: 3px solid;
    transform: skewX(20deg);
}

.sm a:hover::after {
    border-color: var(--renk1);
    border-top: 3px solid;
    border-bottom: 3px solid;
    transform: skewY(-20deg);
}

/*.sm a{
  color: #fff;
  font-size: 22px;
  margin: 0 10px;
  transition: .2s linear;
}

.sm a:hover{
  color: var(--renk1);
}*/

#home .buttons {
    margin-top: 60px;
}

#home .buttons a {
    display: inline-block;
    margin: 15px 30px;
    color: var(--renk1);
    font-size: 15px;
    font-weight: 500;
    width: 180px;
    border: 1px solid var(--renk1);
    padding: 14px 0;
    border-radius: 6px;
    transition: 0.2s linear;
}

#home .buttons a:hover,
#home .buttons a:nth-child(2) {
    background-color: var(--renk1);
    color: #fff;
}

#home .buttons a:nth-child(2):hover {
    /* box-shadow: rgba(246, 246, 246, 0.25) 0px 10px 20px, rgba(248, 248, 248, 0.22) 0px 10px 10px; */
    box-shadow: rgba(73, 169, 233, 0.4) 0px 5px, rgba(73, 169, 233, 0.3) 0px 10px, rgba(73, 169, 233, 0.2) 0px 15px, rgba(73, 169, 233, 0.1) 0px 20px, rgba(73, 169, 233, 0.05) 0px 25px;

}

section {
    padding: 100px 0;
    background-color: #f1f1f1;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    font-size: 26px;
    padding-bottom: 20px;
    color: #111;
}

.section-title::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #111;
    bottom: 0;
    left: calc(50% - 40px);
}

.section-title::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 10px;
    background-color: var(--renk1);
    border: 4px solid #f1f1f1;
    left: calc(50% - 12px);
    bottom: -7px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-pic {
    width: 200px;
    border-radius: 50%;
    margin-right: 100px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin: 10px 0;
    color: #444;
    font-size: 16px;
}

.about-text h3 span:nth-child(1):after,
.about-text h3 span:nth-child(2):after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #444;
    display: inline-block;
    border-radius: 50%;
    margin: 0 14px;
}

.about-text p {
    font-size: 17px;
    text-align: justify;
    line-height: 26px;
    margin-top: 20px;
}

.skills {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.skill {
    width: calc(50% - 20px);
    margin: 15px 0;
}

.skill-info {
    display: flex;
    justify-content: space-between;
}

.skill-bar {
    height: 3px;
    background-color: #ddd;
    margin-top: 14px;
    position: relative;
}

.skill-bar::after {
    content: "";
    position: absolute;
    height: 6px;
    background-color: var(--renk1);
    bottom: 0;
}

.html:after {
    width: 100%;
}

.css:after {
    width: 100%;
}

.js:after {
    width: 70%;
}

.php:after {
    width: 60%;
}

.mysql:after {
    width: 90%;
}

.cs:after {
    width: 80%;
}

section.dark {
    background-color: #353b48;
}

section.dark .section-title {
    color: #f1f1f1;
}

section.dark .section-title::before {
    background-color: #f1f1f1;
}

section.dark .section-title::after {
    border: 4px solid #353b48;
}

.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service {
    width: calc(33% - 20px);
    text-align: center;
    border: 1px solid var(--renk1);
    border-radius: 6px;
    margin: 20px 0;
    padding: 40px 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s linear;
}

.service .icon {
    color: var(--renk1);
    font-size: 40px;
    margin-bottom: 20px;
    transition: 0.3s linear;
}

.service h4 {
    font-size: 16px;
    margin-bottom: 6px;
}

.service:hover {
    background-color: var(--renk1);
    color: #fff;
    transform: scale(1.05);
}

.service:hover .icon {
    color: #fff;
}

.works {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.c-galeri {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.time-line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.block {
    width: calc(50% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 30px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 400ms box-shadow;
    display: none;
}

.refBtn{
    display:block;
    margin: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    width: calc(100% - 50px);
    padding: 14px 0;
    transition: 0.2s linear;    
    background-color: transparent;
    color: var(--renk1);
    border: 0;
    border-bottom: 2px solid  var(--renk1);
    cursor: pointer;
    margin-top: 50px;
}

.refBtn:hover{
    box-shadow: rgba(73, 169, 233, 0.4) 0px 5px, rgba(73, 169, 233, 0.3) 0px 10px, rgba(73, 169, 233, 0.2) 0px 15px, rgba(73, 169, 233, 0.1) 0px 20px, rgba(73, 169, 233, 0.05) 0px 25px;
}
.galBtn{
    margin: 15px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    width: calc(100% - 50px);
    padding: 14px 0;
    transition: 0.2s linear;    
    background-color: transparent;
    color: var(--renk1);
    border: 0;
    border-bottom: 2px solid  var(--renk1);
    cursor: pointer;
    margin-top: 50px;
    display: none;
}

.galBtn:hover{
    box-shadow: rgba(73, 169, 233, 0.4) 0px 5px, rgba(73, 169, 233, 0.3) 0px 10px, rgba(73, 169, 233, 0.2) 0px 15px, rgba(73, 169, 233, 0.1) 0px 20px, rgba(73, 169, 233, 0.05) 0px 25px;
}

.block::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 120%;
    background-color: #ddd;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.block::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--renk1);
    left: -28px;
    top: 30px;
    border-radius: 50%;
    transition: 200ms all;
}

.block:hover {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.block:hover::after{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.block h3 {
    font-size: 16px;
    margin: 10px 0;
}

.block ul {
    font-size: 14px;
    color: #444;
    margin-top: 15px;
    margin-left: 40px;
}

.work {
    width: calc(33% - 10px);
    overflow: hidden;
    border-radius: 6px;
    margin: 10px 0;
    cursor: pointer;
    position: relative;
    height: 250px;
    display: none;
}

.work img {
    width: 100%;
    height: 100%;
    transition: 0.4s linear;
}

.work::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--renk1);
    transition: 0.2s linear;
    opacity: 0;
    transform: scale(0);
}

.work .info {
    position: absolute;
    z-index: 2;
    bottom: 40px;
    left: 40px;
    color: #fff;
    transition: 0.4s linear;
    opacity: 0;
}

.work:hover img {
    transform: scale(1.6) rotate(25deg);
}

.work:hover::before {
    opacity: 0.5;
    transform: scale(1);
}

.work:hover .info {
    opacity: 1;
    transform: scale(1);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info .item {
    width: calc(33% - 20px);
    height: 160px;
    background: linear-gradient(210deg,
    rgba(53, 59, 72, 1) 70%,
    rgb(49, 116, 160) 100%);
    color: #f1f1f1;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s linear;
}

.contact-info i {
    display: block;
    font-size: 40px;
    line-height: 120px;
    height: 100px;
    color: var(--renk1);
    transition: 0.3s linear;

}

.contact-info .item:hover {
    background: linear-gradient(210deg,
    rgba(53, 59, 72, 1) 0%,
    rgb(49, 116, 160) 100%);
    color: #fff;
    transform: scale(1.05);
}

.contact-info .item:hover i {
    color: #fff;
}

.map {
    display: flex;
    justify-content: center;
    border: 2px solid #353b48;
    border-radius: 4px;
}

.iletisimformu {
    /* background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed; */
    background-color: #353b48;
    background: linear-gradient(10deg, rgba(53,59,94,1) 0%, rgba(53,59,62,1) 100%);
    padding: 15px;
    margin-top: 60px;
    border-radius: 5px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.baslik {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-top: 10px;
    position: relative;
    padding-bottom: 20px;
}

.baslik::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #f1f1f1;
    bottom: 0;
    left: calc(50% - 40px);
}

.baslik::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 10px;
    background-color: var(--renk1);
    border: 4px solid #353b48;
    left: calc(50% - 12px);
    bottom: -7px;
}

.aciklama {
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
/* 
.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 40px;
    margin: 10px 0;
    background-color: #fff;
    border: none;
    outline: none;
    padding: 20px;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
    transition: 200ms all;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: var(--renk1) solid 2px;
}

.nameZone,
.emailZone,
.phoneZone,
.subjectZone {
    max-width: calc(50% - 10px);
}

.messageZone {
    min-height: 200px;
    resize: vertical;
} */


.input-container{
	position:relative;
	margin-bottom:25px; 
    width: 100%;
    
}
.input-container label{
	position:absolute;
	top:8px;
	left:0px;
	font-size:16px;
	color:#fff;	
    pointer-events:none;
	transition: all 0.5s ease-in-out;
}
.input-container input,textarea{ 
  border:0;
  border-bottom:1px solid #555;  
  background:transparent;
  padding:8px 0 5px 0;
  font-size:16px;
  color:#fff;
  width: 100%;
}
.input-container input:focus,textarea:focus{ 
 border:none;	
 outline:none;
 border-bottom:1px solid var(--renk1);	
}

.input-container input:valid,textarea:valid{ 
    border:none;	
    outline:none;
    border-bottom:1px solid var(--renk1);	
   }


.input-container input:focus ~ label,
.input-container input:valid ~ label,
.input-container textarea:focus ~ label,
.input-container textarea:valid ~ label
{
	top:-12px;
	font-size:12px;
	
}
.messageZone {
    min-height: 200px;
    resize: vertical;
}
.contact-form .btn {
    width: 180px;
    background-color: transparent;
    color: #f1f1f1;
    font-size: 16px;
    border: 0;
    border-bottom: 2px solid #f1f1f1;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    height: 40px;
}

.contact-form .btn:hover {
    font-size: 18px;
    color: var(--renk1);
    border-bottom: 2px solid var(--renk1);
    box-shadow: rgba(73, 169, 233, 0.4) 0px 5px, rgba(73, 169, 233, 0.3) 0px 10px, rgba(73, 169, 233, 0.2) 0px 15px, rgba(73, 169, 233, 0.1) 0px 20px, rgba(73, 169, 233, 0.05) 0px 25px;
}

footer {
    background: url(../images/footer-bg.jpg) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}
.footer {
    background: linear-gradient(210deg,
            rgba(2, 0, 36, 1) 70%,
            rgb(49, 116, 160) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    opacity: 0.7;
}

.copyright {
    margin-bottom: 20px;
    font-size: 15px;
}

.copyright a {
    font-size: 16px;
    color: var(--renk1);
    font-weight: 500;
}

.goTop {
    position: fixed;
    z-index: 999;
    bottom: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: var(--renk1);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    outline: none;
    display: none;
}

@media screen and (max-width: 980px) {
    .menu-toggler {
        display: block;
    }

    .navbar-menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: #353b48;
        top: 0;
        right: -100%;
        max-width: 400px;
        padding: 80px 50px;
        transition: 0.3s linear;
    }

    .navbar-menu a {
        display: block;
        font-size: 30px;
        margin: 30px 0;
    }

    .sticky .navbar-menu {
        background-color: #f1f1f1;
    }

    .navbar-menu.active {
        right: 0;
    }

    .menu-toggler.active span:nth-child(1) {
        transform: rotate(-45deg);
        top: 4px;
    }

    .menu-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggler.active span:nth-child(3) {
        transform: rotate(45deg);
        bottom: 14px;
    }

    .inner-width {
        max-width: 800px;
    }

    .about-pic {
        margin: 0 auto 60px;
    }

    .about-text {
        flex: 100%;
        text-align: center;
    }

    .service {
        width: calc(50% - 20px);
    }

    .block {
        width: calc(100% - 20px);
        margin-left: auto;
    }
    .d-baslik {
        font-size: 1.1rem;
    }
    .work {
        width: calc(50% - 10px);
    }
    .galeri {
        width: calc(50% - 10px);
    }

    .contact-info .item {
        width: 100%;
        margin: 10px 0;
    }

    #home .content h1 {
        font-size: 55px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #home .content h2 {
        font-size: 25px;
    }
    #home .buttons {
        margin-top: 20px;
    }
}

@media screen and (max-width: 600px) {
    .inner-width {
        padding: 0 20px;
    }

    .skill {
        width: 100%;
    }

    .service {
        width: 100%;
    }
    .d-baslik {
        font-size: 0.9rem;
    }
    .work {
        width: 100%;
    }
    .galeri {
        width: 100%;
    }

    .nameZone,
    .emailZone,
    .phoneZone,
    .subjectZone {
        max-width: 100%;
    }

    #home .content h1 {
        font-size: 44px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #home .content h2 {
        font-size: 16px;
        display: none;
    }
    #home .buttons {
        margin-top: 20px;
    }
}

#preloader {
    background: linear-gradient(10deg, rgba(53,59,94,1) 0%, rgba(53,59,62,1) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    transition: 600ms all;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #49a9e9;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1c699c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #43c3ff;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

#preloader img{
    width: 50px;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.mySlides {
    width: 100%;
    height: 100%;
    /* display: none; */
}
/* Slideshow container */
.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
   
  /* Fading animation */
  .fadeGal {
    -webkit-animation-name: fadeGal;
    -webkit-animation-duration: 1.5s;
    animation-name: fadeGal;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fadeGal {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fadeGal {
    from {opacity: .4} 
    to {opacity: 1}
  }
  