/* Theming */
@font-face {
    font-family: 'Louis-George-Cafe-Light';
    src:url('fonts/Louis-George-Cafe-Light.woff') format('woff'),
          url('fonts/Louis-George-Cafe-Light.woff2') format('woff2'),
          url('fonts/Louis-George-Cafe-Light.svg#Louis-George-Cafe-Light') format('svg'),
          url('fonts/Louis-George-Cafe-Light.eot'),
          url('fonts/Louis-George-Cafe-Light.eot?#iefix') format('embedded-opentype'),
          url('fonts/Louis-George-Cafe-Light.ttf') format('truetype');
  
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
@font-face {
    font-family: 'philosopherregular';
    src: url('fonts/philosopher-regular-webfont.woff2') format('woff2'),
         url('fonts/philosopher-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'vogueregular';
    src: url('fonts/vogue-webfont.woff2') format('woff2'),
         url('fonts/vogue-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

:root{
--white: #ffffff;
--darkgrey: #36383F;
--grey: #85888C;
--black: #000000;
--orange: #E94F1C;
--green: #39706D;
--yellow: #FFEC9F;
--lightgrey: #B3BEC4;
}
html {
    scroll-behavior: smooth;
  }
/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    
    font-family: 'Louis-George-Cafe-Light';
    font-size: 17px;
}
a{
    text-decoration: none;
    
}

ul{
    list-style: none;
}

/* Header */
.header{
    background-color: var(--white);
    box-shadow: 1px 1px 5px 0px var(--grey);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
}

/* Logo */
.logo{
    display: inline-block;
}

/* Nav menu */
.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--white);
    overflow: hidden;
    z-index: 1;
    
    
}

.menu a{
    display: block;
    padding-right:20px;
    padding-left:20px;
    padding-top:40px;;
    padding-bottom:35px;
    color: var(--black);
    font-family: 'Louis-George-Cafe-Light';
    text-transform: uppercase;
}

.menu a:hover{
    background-color: var(--orange);
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

/* Menu Icon */

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}


.hamb-line {
    background: var(--black);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after{
    background: var(--black);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before{
    top: 5px;
}

.hamb-line::after{
    top: -5px;
}


.side-menu {
    display: none;
}

/* Toggle menu icon */

.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;

}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/* Responsiveness */

@media (min-width: 1200px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
        color: var(--white);
    }

    .menu li{
        float: left;
        color: var(--white);
    }

    .menu a:hover{
        background-color: transparent;
        color: var(--orange);
        
    }
    
    .hamb{
        display: none;
    }

}


.head-content {
    margin-top:90px;
    position: relative;
    padding:0px;
    background-color: transparent;
}
.content {
    margin-top:0px;
    position: relative;
    padding:20px;
}
.body_content {
    margin: 35px;
}
.img_header {
    width: 200px;
    padding:5px;
    margin-left: 45px;
}
.footer {
    background:var(--green);
    padding:0px;
    color:var(--white);
    width:100%;
    bottom: 0px;
    margin-top: auto;
    left: 0;
    bottom: 0;
    width: 100%;
   
    font-family: 'Louis-George-Cafe-Light';
}
.bg_right {
    
    padding:5px;
    
    width:100%;
    bottom: 40px;
    position: fixed;
    z-index: -999;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: right;
    font-family: 'Louis-George-Cafe-Light';
}
.footer_text {
    padding:5px;
    text-align: center;
}
.social {
    text-align: right;
}
.bottom {
    padding:0px !important;
}
.design {
    padding:20px !important;

}
.socail_media_footer {
    width: 25px !important;
    margin-left:5px !important;
}

.links {
color:var(--yellow);
}

.container {

    width:100%;
    height:100vh;
overflow-y: scroll;
scroll-snap-type: y mandatory;

}

.slides {
    width:100%;
    height:100vh;
    color:var(--white);
    scroll-snap-align: start;
}
.slides h1 {
    width: 300px;
}

.slide_1 {
   
    background-image: url("images/slider/slider_1.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
    background-position: center center;
    
}
.slide_2 {

    
    background-image: url("images/slider/slider_2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
     background-position: center center;
}
.slide_3 {


    background-image: url("images/slider/slider_3.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
   
     background-position: center center;
}
.slide_4 {

   
    background-image: url("images/slider/bottom.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    
     background-position: center center;
}

* {
    box-sizing: border-box;
  }
  
  /* Create two equal columns that floats next to each other */
  .column {
    float: left;
    width: 50%;
    padding: 10px;
  }
.col3 {
    float: left;
    width: 20%;
    padding: 4px;
  }
.soundcloud {  
  width:58%;
}
.orange_right {
    width:57%;
    text-align: right;
  }
  .column_talent{
    float: left;
    width: 24%;
    padding: 10px;
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
    .column_talent {
        width: 100%;
      }
.col3 {
 width: 100%;
  }
  .soundcloud {  
  width:100%;
}
.orange_right {
    width:100%;
     text-align: right;
   
  }
  .slides {
    width:100%;
    height:100%;
}

.footer_text {
    padding:5px;
    text-align: center;
}
.social {
    text-align: center;
}
.bottom {
    padding:0px !important;
}
.design {
    padding:10px !important;

}
.socail_media_footer {
    width: 25px !important;
    margin-left:5px !important;
}
.mobileft {
   text-align: center !important; 
}
.slide_1 {
        
     background-image: none;
    }
    .slide_2 {
        background-image: none;
        background-color:#3A716E;
     
        
    }
    .slide_3 {
    
        background-image: none;
        background-color:#3A716E;
       
    }
.slide_4 {

        display: none !important;
    }
     .mobile {
        
        
    }
    .slides h2 {
        padding:5px;
        
        margin-top:10px !important;
    }
    .slides a {
        
    }
  }

  .slide_1 .row .column h2 {
    color:var(--yellow);
    text-align: center;
    font-size: 40px;
    
  }
  
  .home {
   margin-top:100px;   
  }
  .home_2 {
   margin-top:20px;   
  }
 .slide_1 .row .column p {
    padding-top: 30px;
    color:var(--white);
    text-align: justify;
    font-size: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 30px;
  }

.slide_1 .row .column a {
    
    color:var(--yellow);
    text-align: left;
    font-size: 23px;
    padding-left: 50px;
  }
  
  .slide_2 .row .column h2 {
    color:var(--yellow);
    text-align: center;
    font-size: 40px;
    margin-top:150px;
  }
 .slide_2 .row .column p {
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
    color:var(--white);
    text-align: right;
    font-size: 20px;
    padding-bottom: 30px;
  }

  .slide_2 .row .column a {
    
    color:var(--yellow);
    
    font-size: 25px;
    padding-left: 50px;
  }

  .slide_3 .row .column h2 {
    color:var(--yellow);
    text-align: left;
    padding-left: 35;
    font-size: 40px;
    margin-top:150px;
  }
 .slide_3 .row .column p {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 50px;
    color:var(--white);
    text-align: left;
    font-size: 20px;
    
    padding-bottom: 30px;
  }

.slide_3 .row .column a {
    padding-left: 30px;
    color:var(--yellow);
    text-align: left;
    font-size: 25px;
    
  }

  .image {
    display: none;
  }

  /*www.oguzhansengul.com*/
  #rcbrandDemo1, #rcbrandDemo2, #rcbrandDemo3 {
    display:none;
    }
    
    .rc-rcbrand-container {
        position:relative;
        max-width:100%;
        margin-bottom: 20px;
    }
    .rc-rcbrand-ul {
        position:relative;
        width:99999px;
        margin:0px;
        padding:0px;
        list-style-type:none;   
        text-align:center;  
        overflow: auto;
    }
    
    .rc-rcbrand-inner {
        position: relative;
        overflow: hidden;
        float:left;
        width:100%;
        background: #ffffff;;
        border:0px solid #ccc;
        border-radius:5px;
        -moz-border-radius:5px;
        -webkit-border-radius:5px;  
    }
    
    .rc-rcbrand-item {
        float:left;
        margin:0px;
        padding:0px;
        cursor:pointer;
        position:relative;
        line-height:0px;
    }
    .rc-rcbrand-item img {
        max-width: 100%;
        cursor: pointer;
        position: relative;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .rc-rcbrand-nav-left,
    .rc-rcbrand-nav-right {
        padding:5px 10px;
        border-radius:50%;    
        position: absolute;
        cursor: pointer;
        z-index: 4;
        top: 50%;
        transform: translateY(-50%);   
        background: rgb(255, 102, 0, 0.5);
        color: #fff;     
    }
    
    .rc-rcbrand-nav-left {
        left: 10px;
    }
    
    .rc-rcbrand-nav-left:before {
        content: "<"
    }
    
    .rc-rcbrand-nav-left.disabled {
        opacity: 0.4;
    }
    
    .rc-rcbrand-nav-right {
        right: 5px;    
    }
    
    .rc-rcbrand-nav-right:before {
        content: ">"
    }
    
    .rc-rcbrand-nav-right.disabled {
        opacity: 0.4;
    }

    .cards {
        background-color: #DCE1E4;
        padding:10px;
        height:115px;
    
    }

.cards li {
    display: flex;
    align-items: center;
    padding:2px;
}

    .cards a{
        color:var(--black);
        font-size: 15px;
        vertical-align: middle;
    }
    .cards a:hover {
        color:var(--orange);
    }
    .clear li {
        display: flex;
        align-items: center;
        padding:2px;
    }
    .clear a{
        color:var(--black);
        font-size: 15px;
        vertical-align: middle;
    }
    .clear a:hover {
        color:var(--orange);
    }
.space {

    margin-top:30px;
    display: inline-block;
    margin-right:25px;
    margin-left:45px;
    width: 200x; 
    color: rgba(0,0,0,0.0) !important;
}
    /* Formatting search box */
    .search-box{
        font-family: 'Louis-George-Cafe-Light';
        position: fixed;
        top:32px;
        right:50px;
        width: 100x;
        z-index: 9;
        display: inline-block;
        font-size: 15px;
    }
    .search-box input[type="text"]{
        font-family: 'Louis-George-Cafe-Light';
        height: 32px;
        padding: 5px 10px;
        border: 1px solid #000000;
        font-size: 15px;
        border-radius: 10px;
        background: url("images/search.png") center right no-repeat;
        background-size: 25px 20px;

padding-right:25px;  
    }
    .result{
        font-family: 'Louis-George-Cafe-Light';
        position: relative;
        z-index: 999999;
        top: 100%;
        left: 0;
        background: #fff;
    }
    .search-box input[type="text"], .result{
        font-family: 'Louis-George-Cafe-Light';
        width: 100%;
        box-sizing: border-box;
    }
    /* Formatting result items */
    .result p{
        font-family: 'Louis-George-Cafe-Light';
        margin: 0;
        padding: 7px 10px;
        border: 1px solid #CCCCCC;
        border-top: none;
        cursor: pointer;
    }
    .result p a{
color:var(--black);
    }
    .result p a:hover{
        color:var(--orange);
            }
    .result p:hover{
        font-family: 'Louis-George-Cafe-Light';
        background: #f2f2f2;
        
    }
    @media screen and (max-width: 600px) {
        .search-box {
            display: none;
        }
      }

      .columnls {

      width: 30%;
      float: left;
      padding:10px;
      }

      .columnrs {
width:60%;
float: left;
padding:10px;
      }