* {
    margin: 0%;
    padding: 0;
    box-sizing: border-box;
}

/*  *******************
       HEADER-NAVBAR
    ******************* */
header {
    height: 95px;
    width: 100%;
    position: absolute;
    z-index: 3;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 20px;
}

.header__logo {
    width: 17%;
}

.header__logo svg {
    width: 184px;
    height: 39px;
    fill: #fff;
}

.header__logo-link {
    float: right;
}

.nav-left {
    display: flex;
    width: 67%;
    align-items: center;
    justify-content: space-around;
    font-size: .9rem;
    letter-spacing: .5px;
}

.header__nav {
    display: flex;
    width: 250px;
    justify-content: space-between;
}

.header__motto {
    width: 280px;
}

.header__link {
    color: #fff;
    font-weight: 400;
    font-size: .875rem;
    font-family: 'Avant';
    line-height: 1.25;
    text-decoration: none;
}

.header__link:hover {
    color: #fff;
}

button.header__search-btn {
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: 0;
}

.header__search-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}


/*  *******************
         WRAPPER
    ******************* */
.wrapper {
    width: 100vw;
    height: 100vh;
    background: radial-gradient(38.44% 61.99% at 58.75% 43.83%, #6496ed 0, #346bcb 54.17%, #153d84 100%);
    transition: transform 1s linear;
    display: flex;
    justify-content: space-between;
}
.w-right {
    width: 40%;
    background: radial-gradient(97.26% 61.89% at -50.35% 56.28%, #244da7 0, #122a54 100%);
    position: relative;
}
.w-left {
    width: 60%;
    position: relative;
}
.home-slider-text {
    padding-top: 2rem;
    color: #fff;
    font-size: .875rem;
    line-height: 1.3;
    border-top: 1px solid #fff;
    position:absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%);
    width: 70%;
}
 .btn-production {
    position: absolute;
    right: 10.5vw;
    bottom: 7.5vh;
    z-index: 10;
    min-width: 240px;
}
.btn-production {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 64px;
    padding: 0 1.5rem;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    background-color: #1762e3;
    transition: background-color .35s ease-in-out,border-color .35s ease-in-out;
    text-decoration: none;
}
.btn-production-ico {
    transform: rotate(-90deg);
}
.btn-production-ico>svg {
    width: 27px;
    height: 27px;
    fill: transparent;
    stroke: #fff;
}
.btn-production:hover {
    color: #fff;
    background-color: #f7a500;
}
.content-slider {
    position: absolute;
    width: 90%;
    height: 76%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.home-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-left: 30px;
    margin-top: 150px;
    width: 563px;
}
.home-left-link {
    color: #fff;
    transform-origin: left center;
    transition: color .2s ease-in-out,font-size .35s ease-in-out,margin-left .35s ease-in-out,letter-spacing .35s ease-in-out,opacity .15s linear,transform .35s ease-in;
    font-size: 1.5rem;
    text-decoration: none;
    margin-bottom: 70px;
}
.home-left-link:hover {
    color: #fff;

}
.home-left-link.active{
transform: scale(1.8);
    margin-left:15px;
}

.home-slide {
    height: 75%;
    width: 500px;
}
.slideImg{
    position: absolute;
    max-width: 550px;
    backface-visibility: hidden;
    opacity: 0;
    transform: translate(50%, -30%);
    user-select: none;
    transition: all cubic-bezier(.67,0,.32,.96) .5s;
    -webkit-transition: all cubic-bezier(.67,0,.32,.96) .5s;
}

.slideImgActive{
    visibility: visible !important;
    opacity: 1 !important;
    transform: translate(0,0);
}

.slideImgNext {
    transition-delay: .3s;
    transform: translate(-50%, 30%);
}

.home-slider-btns svg {
    width: 20px;
    height: 20px;
    fill: white;
}
.home-bg-dark {
    position: absolute;
    left: 0;
    top: 80%;
    transform: translate(-50%, -80%);
    z-index: 5;
}
.home-slider-btns {
    display: flex;
    width: 120px;
    height: 60px;
}
.home-slider-btn {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1762e3;
    transition:.8s all ease-in-out;
}
.home-slider-btn.next {
background-color: #f7a500;
}
.home-slider-btn:hover {
    background-color: #f7a500;
}
.home-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    margin-left: 30px;
    margin-top: 100px;
    width: 563px;
    position: relative;
}
.home-right-link {
    color: #fff;
    transform-origin: left center;
    transition: .5s all ease-in-out;
    font-size: .8rem;
    text-decoration: none;
    margin-bottom: 30px;
    position: absolute;
    opacity: 0;
    left: -15px;
    transition-delay: .25s;
    width: 300px;

}

.home-right-link.active{
    transform: scale(1.2);
    opacity: 1;
    left: 35px;
    transition-delay: .1s;
}

.home-slider-slide-content-block:first-child {
    padding-top: 1rem;
    border-top: 0;
}
.home-slider-slide-content-block {
    width: 100%;
    border-top: 1px solid #fff;
}
.home-slider-slide-content-sized {
    display: block;
    font-size: 2.25rem;
    line-height: 1.25;
}
.menu-fixed {
    position: fixed;
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65px;
    height: 100%;
    padding-top: 2.7rem;
    border-left: 1px solid #ffffff6e;
    background:  #122a54 ;
    transition: .7s all ease-in-out;
}
.menu-fixed.active{
    background: #1762e3;
    border: none;
    transition: .5s all ease-in-out;
}

.menu-fixed.active h5{
    position: absolute;
    transition: .3s all ease-in-out;
    transform: translateY(400px) rotate(90deg);
}

.menu-fixed h5 {
    color: white;
    font-weight: 300;
    transform: rotate(90deg);
    margin-top: 55px;
    letter-spacing: 2.5px;
    font-size: 16px;
    transition: .3s all ease-in-out;
    cursor: pointer;
}

.menu-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,#003796,#003796 40%,#fff 0,#fff);
    z-index: 11;
    top: 0%;
    right: 0; 
}

.opacity-0 {
    opacity: 0;
    visibility: hidden;
    transition-duration: 1s;
    transition-delay: 1s;
}
.opacity-1{
    opacity: 1;
}
.animate__rotateOutDownRight , .animate__rotateInUpRight {
    transform-origin: right top !important;
    animation-duration: .5s !important;
}
.bar1, .bar3 {
    width: 40px;
    height: 2px;
    background-color: white;
    margin: 8px auto;
    transition: 0.2s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-135deg) translate(0px, 3px);
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(135deg) translate(-9px, 6px);
}
.hamburger {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

/*  *******************
         İNNER-MENU
    ******************* */

.inner-menu {
    display: flex;
    width: 90%;
    margin: 60px auto;
    justify-content: space-between;
}
.side-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    color: white;
    width: 40%;
}
.side-right {
    width: 60%;
}
.part-right {
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
}
.part-right li {
    list-style: none;
    margin-bottom: 10px;
}

.part-right li a{
    text-decoration: none;
    color: black;
}

.part-right h4 {
width: 30%;
margin-bottom: 35px;
font-weight: 400;
}
.part-right h4 a {
text-decoration: none;
}

.part-right ul {
width: 45%;
padding-left: 0;
}

.left-svg {
    position: relative;
    width: 90%;
    max-width: 423px;
    height: 90px;
    fill: #164eaf;
    margin-bottom: 35px;
}

.side-left a {
    text-decoration: none;
    color: white;
}
.link {
    padding: 5px 7px 6px;
    color: #fff;
    font-weight: 700;
    font-size: .875rem;
    font-family: "AvantGardeGothicC",sans-serif;
    line-height: 1.25;
    background: #000;

    position: absolute;
    left: 0;
    top: 7%;
    transform: translate(-50%, -80%);
    z-index: 5;
}

/*  *******************
         ABOUT
    ******************* */

.wrapper.wrapper-about {
    height: 95vh;
}
.menu-fixed.menu-about {
    background: none;
}
.menu-fixed.menu-about.active {
    background: #1762e3;
}


/* Circel-Cursor */
.cursor{
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #f7a500;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .1s;
  z-index: 35;
}
.cursor2{
  position: fixed;
  width: 7px;
  height: 7px;
  background-color: #f7a500;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .17s;
  z-index: 35;
}

/* Circel-Cursor End */


@media only screen and (max-width: 1280px) {
nav {
    width: 92%;
}
.nav-left {
    width: 67%;
}
.slideImg {
    max-width: 350px;
}
.home-left-link.active {
    transform: scale(1.3);
    margin-left: 10px;
}
.home-left-link {
    font-size: 1.3rem;
}
.home-right-link {

    width: 265px;
}
.content-slider {
    height: 70%;
}
}