@import url("font-awesome.min.css");
body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
  }

ul::marker {
    content: none;
}

.red-text {
  color: #c32029;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.heading_container h2::before {
  content: "";
  width: 40px;
  height: 7px;
  background-color: #0c0c0c;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*header section*/
.hero {
    display: flex;
    height: 80vh;
    min-height: 100%;
    background: url(../images/hero-bg.jpg) no-repeat center center;
    background-size: cover;
  }
  
  .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .logo, .date {
    text-align: center;
    max-width: 400px;
    background-color: #ffffff;
    padding: 48px;
  } 
  
  .logo {
    position: relative;
  }
  
  .logo::after {
    content: ' ';
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100px;
    left: 0;
    bottom: -99px;
    clip-path: polygon(0 0, 0 60%, 100% 0);
  }
  
  .logo > img {
    width: 100%;
    max-width:300px;
  }
  
  .hero_area {
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  
  .hero_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .hero_bg_box .img-box {
    width: 100%;
  }
  
  .hero_bg_box .img-box img {
    min-width: 100%;
    min-height: 100%;
  }
  
  .hero_bg_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.15)));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  }
  
  .sub_page .hero_area {
    min-height: auto;
  }
  
  .sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding-bottom: 21px;
  }
  
  .hero_area.sub_pages {
    height: auto;
  }
  
  .header_section {
    padding: 0;
    border-top:10px solid #fff;
  }
  
  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  
  .header_section .nav_container {
    margin: 0 auto;
  }
  
  .header_top {
    background-color: #1c1c1c;
    padding: 15px 0;
  }
  
  .header_top .contact_link-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .header_top .contact_link-container a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    font-size: 15px;
  }
  
  .header_top .contact_link-container a i {
    font-size: 20px;
    color: #c22028;
    margin-right: 5px;
  }
  
  #navbarSupportedContent {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .custom_nav-container {
    z-index: 99999;
    padding: 0;
  }
  
  .custom_nav-container .navbar-nav {
    margin-left: auto;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 0;
    padding: 35px 15px 10px 15px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  
  .custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
    background-color: #1c1c1c;
  }
  
  a,
  a:hover,
  a:focus {
    text-decoration: none;
  }
  
  a:hover,
  a:focus {
    color: initial;
  }
  
  .btn,
  .btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top:0px !important;
    border: 0;
  }
  
  .navbar-brand span {
    font-weight: bold;
    color: #ffffff;
    font-size: 24px;
    background-color: #fff;
    padding: 48px;
  }
  
  .navbar-brand span::after {
      content: "";
      position: absolute;
      left: 0;
      height: 100px;
      width: 396px;
      top: 261px;
      background-color: #ffffff;
      clip-path: polygon(0 0, 0 50%, 100% 0);
  }
  
  .navbar-brand span img {
    width: 300px;
  }
  
  .custom_nav-container .navbar-toggler {
    outline: none;
  }
  
  .custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .custom_nav-container .navbar-toggler span {
    display: block;
    width: 32px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 15px;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    transition: all 0.3s;
  }
  
  .custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    top: -10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  
  .custom_nav-container .navbar-toggler span::after {
    top: 10px;
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  
  .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 0;
  }
  

/*end header section*/
/* slider section */
.slider_section {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #ffffff;
  }
  
  .slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section .detail-box {
    width: 100%;
    margin: 0 auto;
  }
  
  .slider_section .detail-box h1 {
    text-transform: uppercase;
    font-size: 3rem;
    color: #c22028;
    font-weight: 600;
    background-color: #fff;
    width: auto;
    display: inline-block; 
    padding: 0 40px 0 10px ;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  
  }
  
  .slider_section .detail-box h1 span {
    color: #c22028;
  }
  
  .slider_section .detail-box span {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
  }
  
  .slider_section .detail-box p {
    margin-top: 25px;
  }
  
  .slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  
  .slider_section .detail-box .btn-box a {
    width: 180px;
    text-align: center;
    margin: 5px;
  }
  
  .slider_section .detail-box .btn-box .btn-1 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #ffffff;
    color: #000000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .slider_section .detail-box .btn-box .btn-1:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
  }
  
  .slider_section .detail-box .btn-box .btn-2 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #c22028;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .slider_section .detail-box .btn-box .btn-2:hover {
    background-color: transparent;
    border-color: #c22028;
    color: #c22028;
  }
  
  .date {
    padding: 32px 32px 0 48px;
    text-align: left;
    position:relative;
  }
  
  .date::before {
    content: ' ';
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 100px;
    left: 0;
    top: -99px;
    clip-path: polygon(100% 40%, 0 100%, 100% 100%);
  }
  
  .date h1 {
    text-transform: uppercase;
    font-size: 32px;
    color: #c22028;
    font-weight: 600;
    margin: 0;
  }
  
  .date span {
    color: #0c0c0c;
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .date > .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    width: 100%;
    gap:16px;
  }
  
  
  
  .date > .btn-box .btn-1 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #ffffff;
    color: #000000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid #cbcbcb;
  }
  
  .date > .btn-box .btn-1:hover {
    background-color: transparent;
    border-color: #c22028;
    color: #c22028;
  }
  
  .date > .btn-box .btn-2 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #c22028;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
  }
  
  .date > .btn-box .btn-2:hover {
    background-color: transparent;
    border-color: #c22028;
    color: #c22028;
  }
  




.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .idicator_container {
  position: relative;
}

.slider_section ol.carousel-indicators {
  margin: 0;
  bottom: -75px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider_section ol.carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  background-color: #c22028;
  opacity: 1;
  border: none;
  margin: 0 4px;
}

.slider_section ol.carousel-indicators li.active {
  background-color: #ffffff;
}

/* programme section */
.programme {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.programme ul {
    list-style-type: none;
    padding: 0;
}

.programme-start {
    text-align: center;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 24px;
    color: #e74c3c;
    text-transform: uppercase;
    margin-bottom: 10px;
}

header h2 {
    width: 100%;
    font-size: 18px;
    color: #333333;
    background-color: #000000;
    color: white;
    padding: 5px;
    margin-bottom: 20px;
    display: inline-block;
}

.session, .break {
    margin-bottom: 20px;
}

.session-header {
    background-color: #f0f0f0;
    text-align: center;
    font-style: italic;
    padding: 10px;
    border-bottom: 2px solid #000000;
}

.session-header p {
    padding-left: 2px;
    margin: 0;
    font-size: 16px;
}

.session-header strong {
    float: left;
}

.session-header .time {
    float: right;
}

.session ul li {
    margin-bottom: 10px;
}

.break {
    text-align: center;
    font-size: 18px;
    color: #e74c3c;
    font-weight: bold;
}

.break .time {
    margin-top: 5px;
    font-size: 16px;
    color: #000000;
}

.break p {
    margin: 5px 0;
}

.programme-end {
    border-bottom: 2px solid black;
    color: #c32029;
}

/* information section */
 .information_section {
    margin-top: 10px;
    text-align: center;
  }
  
  .information_section .detail-box {
    background-color: #ffffff;
    align-items: center;
    padding: 45px 25px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    margin-left: -45px;
  }
  
  .information_section .detail-box p {
    margin-top: 5px;
  }
  
  .information_section .detail-box a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #c22028;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
  }
  
  .information_section .detail-box a:hover {
    background-color: transparent;
    border-color: #c22028;
    color: #c22028;
  }

/* contact section */
.contact_section {
  position: relative;
  color: #ffffff;
}

.contact_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_section .contact_form-container {
  margin-top: 35px;
}

.contact_section .contact_form-container input {
  border: none;
  border-radius: 8px;
  outline: none;
  color: #000000;
  height: 45px;
  width: 100%;
  margin: 15px 0;
  padding-left: 15px;
  background-color: #ffffff;
}

.contact_section .contact_form-container input::-webkit-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input:-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::-ms-input-placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input::placeholder {
  color: #000000;
  text-transform: uppercase;
}

.contact_section .contact_form-container input.message_input {
  height: 120px;
}

.contact_section .contact_form-container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.contact_section .contact_form-container button {
  display: inline-block;
  padding: 10px 60px;
  background-color: #c22028;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_section .contact_form-container button:hover {
  background-color: transparent;
  border-color: #c22028;
  color: #c22028;
}

.contact_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_bg_box .img-box {
  width: 100%;
}

.contact_bg_box .img-box img {
  min-width: 100%;
  min-height: 100%;
}

.contact_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.35)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
}

/* end contact section */

/* footer section*/
footer {
    margin-top: 5px;
}

footer h1{
  color: #c22028;
}

@media screen and (max-width: 375px) {
  .logo {
    padding: 20px 20px 20px 20px;
  } 

  .logo::after {
    display: none;
  }

  .logo img {
    max-width: 240px;
  }


  .information {
    padding: 20px 20px 0px 20px;
  } 

  .information::before {
    display: none;
  }
}

@media screen and (max-height: 768px) {
  .hero {
      height: 100vh;
  } 
}  
.success-message {
  display: none;
  color: white;
  background-color: green;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
}

.error-message {
  display: none;
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}

#error-message {
  display: none;
  color: white;
  background-color: darkred; /* Daha koyu bir arka plan rengi */
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  border: 2px solid white; /* Beyaz sınır ekleyerek daha belirgin hale getirme */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Gölge ekleyerek daha belirgin hale getirme */
}
/* end footer section*/
/*# sourceMappingURL=style.css.map */