:root{

    --primary-text-color: #002856;
    --body-color: linear-gradient(0deg, #F0F2F5 0%, #FFFFFF 100%);
    --turkuaz: #2ED9C3;
    --white: #F8F8F8;
    --dark-grey: #D7DAE3;

    --orange: #ff5c35;
    --blue: #002856;
    --soft-blue:  #002856cf;


}

body{
    background-color: var(--body-color);
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-text-color);

}

.color-orange{color: #ff5c35}
.color-blur{color: var(--blue)}

.container-fluid{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    overflow: hidden;
    background-color: white;
    transition: 0.4s;
    position: fixed;
    top: 0;
    z-index: 99;
}
.container-fluid-2{
    width: 100%;
    background-color: var(--dark-grey);
    transition: 0.4s;

}
.container-fluid-3{
    width: 100%;
    background-color: var(--primary-text-color);
    transition: 0.4s;

}

.container{
    width: 94%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;

}
.container-2{
    width: 94%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 96px;

}




/* Header */

.navbar{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 32px 0;
    align-items: center;
}

#desktop-menu{
    display: flex;
    gap: 32px;
    text-transform: uppercase;
    color: var(--primary-text-color);
    font-weight: 700;
}

.header-button{
    padding: 8px 24px;
    border: 1px solid var(--primary-text-color);
    border-radius: 8px;
    text-transform: uppercase;
    color: var(--primary-text-color);
    transition: all .5s ease;
    font-weight: 700;
}
.header-button:hover{color: var(--turkuaz);}

.header-button-lang{
    padding: 8px 12px;
    border: 1px solid var(--primary-text-color);
    border-radius: 8px;
    text-transform: uppercase;
    color: var(--primary-text-color);
    transition: all .5s ease;
}

.header-button-lang:hover{color: var(--turkuaz);}

.header-button-bg{
    padding: 8px 24px;
    border: 1px solid var(--primary-text-color);
    border-radius: 8px;
    background-color: var(--primary-text-color);
    color: var(--white);
    text-transform: uppercase;
    transition: all .5s ease;
    font-weight: 700;
}
.header-button-bg:hover{
    color: var(--turkuaz);
}



#desktop-menu a:hover{
 color: var(--turkuaz);
}


.dropdown {
    position: relative;
    color: var(--primary-text-color);
  }
  
  .dropdown-content {
    display: none;
    position: fixed;
    background-color: var(--primary-text-color);
    min-width: 248px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 12px;
    color: var(--primary-text-color);
    transition-duration: 2s;
    transition: all .5s ease;
    
    
  }
  
  .dropdown-content a {
    color: var(--white);
    padding: 4px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  
  .dropdown-content a:hover {border: 1px solid var(--turkuaz); border-radius: 16px; color: var(--turkuaz); transition: all .5s ease;}
  
  .dropdown:hover .dropdown-content {display: flex; flex-direction: column; transition: all .5s ease;}

/* Hamburger menu open kodları */

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--primary-text-color);
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham1 .top {
  stroke-dasharray: 40 139;
}
.ham1 .bottom {
  stroke-dasharray: 40 180;
}
.ham1.active .top {
  stroke-dashoffset: -98px;
}
.ham1.active .bottom {
  stroke-dashoffset: -138px;
}






  /* HERO */
  
#hero{
  margin-top: 104px;
  gap: 32px;
  position: relative;
  margin-bottom: 150px;
}
#hero:first-child{
  margin-top: 230px;
}
.card-body{
display: flex;
gap: 12px;
}
.card-body > * {
flex: 1;
}
.img-border {
width: 468px;
height: 468px;
border-radius: 9999px;
padding: 32px;
border: 1px solid var(--orange);
display: flex;
justify-content: center;
align-items: center;
}
.img-overlay{
background: var(--orange);
position: relative;
overflow: hidden;
border-radius: 9999px;
height: 100%;
width: 100%;
}
.img-overlay img{
mix-blend-mode: multiply;
opacity: 0.7;
height: 100%;
}
.card-text{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
}

.card-right{
display: flex;
flex-direction: column;
justify-content: center;
}

.card-title h1{font-size: 32px; margin-bottom: 24px;}
.card-title p{ margin-bottom: 32px;max-width: 40ch;}

.card-item{
display: grid;
grid-template-columns: 2fr 1fr;
gap: 12px;
margin-bottom: 12px;
}
.card-left{
display: flex;
justify-content: center;
align-items: center;
}
.card-app{
  display: grid;
}


.hero-button{
  width: 100%;
  padding: 24px 20px; 
  background-color: var(--turkuaz); 
  color: var(--white);
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 250ms ease-in;
}
.hero-button:hover{
  background-color:  var(--soft-blue);
}

.hero-button-opacity{
  width: 100%;
  padding: 24px 20px; 
  color: var(--primary-text-color); 
  border-radius: 8px;
  text-transform: uppercase; 
  border: 1px solid var(--primary-text-color);
  font-weight: 700;
}

.button-tel{
  padding: 4px;
  width: 100%;
  max-width: 96px;
  height: 64px;
  background-color: var(--turkuaz);
  color: var(--white);
  border-radius: 8px;
}

.hero-body-qr{width: 96px; height: 64px; border: 1px solid var(--dark-grey); padding: 4px 24px;border-radius: 8px; display: flex; align-items: center;}



.scrollFade {
    opacity: 1;
    pointer-events: all;
  }
  .scrollFade--hidden {
    opacity: 0;
    pointer-events: none;
  }
  .scrollFade--visible {
    opacity: 1;
    pointer-events: all;
  }
  .scrollFade--animate {
    transition: opacity 0.4s ease-in-out;
  }


  /* Brand */
  #brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-grey);
    padding-top: 72px;
    padding-bottom: 72px;
}

  .brand-text{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 48px;
  }

  .brand-body{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    
  }

  .brand-item{
    display: grid;
    background-color: var(--white);
  }
  .brand-item img{
    filter: grayscale(70);
    opacity: 0.70;
    transition: 250ms ease-in;
  }
  .brand-item img:hover{
    filter: grayscale(0);
    opacity: 1;
  }

  .brand-text h2{
    font-size: 32px;
  }



  /* Footer */
  .footer-body{
    display: grid;
    grid-template-columns: 2fr 1fr;
    color: var(--white);
    padding-top: 72px;
    padding-bottom: 72px;
    gap: 120px;
    height: 30vh;
  }

  .footer-item{
    display: flex;
    flex-direction: column;
    
  }
  .footer-menu{
    display: flex;
    flex-direction: column;
    
  }










  /* Media */


  @media (max-width: 768px){
    #desktop-menu{display: none;}
    .card-body{flex-direction: column;}
    .hero-body-text{margin: 0 auto;}
    .brand-body{grid-template-columns: repeat(2, 1fr);}
    .img-border{ width: 348px;height: 348px;}
    .logo{max-width: 100px;}
    .ham{display: block;
      width: 48px;}
      .navbar-login{display: none;}

  }

  @media (max-width:968px){
    #desktop-menu{display: none;}
    .img-border {
      width: 368px;
    height: 368px;
    }
    .logo{max-width: 100px;}
    .ham{display: block;
      width: 48px;}
      .navbar-login{display: none;}
  }