* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 font-family: 'Big Shoulders Text', cursive;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

/*** Color Variables ***/
/*** Centering Hack ***/
/*** Header Styles ***/
header {
  width: 100vw;
  height: 100vh;
  background: #1e3b71;
  display: flex;
}

/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 160px;
  background: #1e3b71;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  z-index: 10;
  transition: all 0.3s;
}
nav.navShadow {
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 100px;
}
nav.navShadow #word-mark {
  opacity: 0;
}

#brand,
#menu,
ul {
  display: flex;
  align-items: center;
}

#brand {
  padding-left: 40px;
}

#logo {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
}

#logo img{width: 90px;}


/*** Menu Styles ***/
#menu {
  justify-content: flex-end;
  padding-right: 40px;
}

li {
  margin-left: 20px;
}
li a {
padding: 0 15px;
    height: 20px;
  color: #fff;
  display: block;
  border-radius: 90px;
 text-decoration: none;
    font-family: 'Big Shoulders Text', cursive;
    font-size: 18pt;
}

#menu-toggle {
  width: 55px;
  height: 55px;
  background: #22ace3;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#menu-toggle:hover .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
#menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
#menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}

/*** Hero Section Styles ***/
#hero-section {
  width: 100vw;
  height: calc(100vh - 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 160px;
  background: url("./img/bck1.jpg") no-repeat center;
    color: white;
    text-align: center;
}

h2, h4{font-family: 'Big Shoulders Text', cursive;}
h2{font-size: 44pt;margin-bottom: 15px;font-weight: 700;}
h4{font-size: 18pt;font-weight: 400;}

#hero-section div{width: 50%;}

#head-line {
  width: 520px;
  height: 30px;
  background: #fff;
  border-radius: 90px;
  position: relative;
}
#head-line:before, #head-line:after {
  content: "";
  height: 30px;
  border-radius: 90px;
}
#head-line:before {
  width: 360px;
  background: #fff;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#head-line:after {
  width: 200px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -60px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/*** Section Styles ***/
section {
  width: 100vw;
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
}
section:nth-child(odd) {
 background: url("./img/bck3.jpg") no-repeat center;
}
section:nth-child(even) {
   background: url("./img/bck2.jpg") no-repeat center;
}


#heading {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-top: 40px;
}

.kimiz p{font-size: 11pt}

#iletisim{width: 50%;color: white;font-family: 'Big Shoulders Text', cursive;text-align: center;font-size: 22pt;line-height: 1.5;padding-top: 80px;}
#iletisim h3{font-size: 50pt;}
#iletisim p a{font-size: 20pt;font-family: 'Big Shoulders Text', cursive;font-weight: 700;text-decoration: none; padding: 10px 30px; border:2px solid white;color: white;transition: 0.3s ease;}
#iletisim p a:hover{background: white;color:#22ace3;}

#markalar{width: 50%;text-align: center;padding-top: 50px;}
#markalar p{padding: 10px 0;height: inherit;}

/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 767px) {
  #menu-toggle {
    display: flex;
  }
    
    #markalar{width: 100%;text-align: center;}
    .kimiz img{display:none;}
    #markalar a{margin:0;}
    .kimiz p{font-size: 10pt}
    
    h2.msil{display:none;}

  ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    background: #22ace3;
    position: absolute;
    top: 160px;
    -webkit-transform: translate(, );
            transform: translate(, );
    box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
      text-align: right;
  }
  ul.showMenu {
    height: 160px;
      
  }
  ul.showMenu li {
    height: 40px;
    opacity: 1;
    visibility: visible;
      text-align: right;}

  li {
    width: 100%;
    height: 10px;
    padding-left: 40px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all 0.3s 0.1s;
     text-align: right; 
  }
  li:first-child, li:nth-child(1) {
    margin-top: 30px;
  }

  #head-line {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  
  
  
}
#youtube {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  font-size: 30px;
  color: #fff;
}