@import url(font.css);
@import url(reset.css);
@import url(animate.css);
@import url(menu.css);



/** MAIN **/
input:disabled {
  background: #dddddd;
}
.mobile{
    display: none;
}
.desktop{
    display: block;
}
html{
    scroll-behavior: smooth;
}
body{
    overflow-x: hidden!important;
}
a {
    text-decoration: none;
}
#home h1{
    font: normal normal normal 80px/90px Arial;
    letter-spacing: 0px;
    color: #0b5a9b;
    text-transform: uppercase;
    opacity: 1;
    margin-bottom: 40px;
}
#home p{
    font: normal normal 300 21px/30px Arial;
    letter-spacing: 0px;
    color: #000000;
    text-transform: none!important;
    opacity: 1;
    text-align: justify;
    /* padding-left: 18%; */
}
.bigsize{
    color: #ef7e0d;
    font-size: 70px;
}
.big{
    width: 100%;
}
.clear{
    clear: both;
}
.text-container{
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1% 0;
}
.absolute{
    position: absolute;
}
#Wrapper{
    position: relative;
    height: 100vh;
}
.content{
    display: block;
    left: 0;
    right: 0;
    float: none;
}
.section {
    position: relative;
    display: block;
}
.content-section{
    padding-left: 156px;
    padding-right: 156px;
    padding-top: 50px;
    padding-bottom: 100px;
} 
.image-section{
    padding-left: 78px;
    padding-right: 78px;
}
.full-width{
    width: 100%;
}
.parallax-img{
    width: 100%;
    max-width: 758px;
    /* box-shadow: 0 55px 60px -14px rgb(53 57 74 / 30%); */
}
.flexbox-container{
    max-width: 1200px;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
#Footer img{
    margin: 0 auto;
    display: block;
    max-width: 400px;
    width: 60vw;
}
#landscape{
    display: none;
    background: #1f1f1f;
    height: 100vh;
    font-family: 'BarlowCondensedBold';
    text-align: center;
    color: #fff;
    font-size: 1.5em;
    line-height: 1.3;
}
#landscape div{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#landscape div img{
    width: 15vw;
    margin-top: 2vw;
}
.half{
    width: 50%;
    float: left;
}
.page-title{
	position: absolute;
    width: 100%;
    text-align: center;
    top: 90px;
    font-family: Arial;
    font-size: 40px;
	letter-spacing: 5px;
    color: #fff;
}

.scroll-container {
	width: 100%;
    position: absolute;
    bottom: 15px;
}

.field {
	display: flex;
    align-items: center;
    justify-content: center;
}

.mouse {
	width: 30px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 60px;
    position: relative;
}
.mouse::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  animation: wheel 2s infinite;
  -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}
/* @media only screen and (min-width: 300px) and (max-width: 1200px) and (orientation: portrait) {
    .flexbox-container{
        padding: 0!important;
        margin: 0 auto!important;
        width: 100%!important;
    }
    .absolute{
        position: absolute;
        width: 100%;
    }
    .right, #Footer, #mobile, .info{
        display: block;
    }
    #landscape{
        display: none;
    }
}
@media only screen and (min-width: 300px) and (max-width: 1200px) and (orientation: landscape) {
    #landscape{
        display: block;
    }
    .right, #Footer, #mobile, .info{
        display: none;
    }
} */


/** RIGHT FORM **/

.right-form-container{
    position: fixed;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    z-index: 111;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 24px 24px 0 24px;
    width: 100%;
    max-width: 25vw;
    min-width: 290px;
    background: #fff;
    transition-delay: 300ms;
    transition: all 300ms ease-in-out;
}
.right-form-container.active {
    right: 0;
}
.right-form-container .inner{
	position:relative;
}
.right-form-container .close {
    position: absolute;
    left: -14px;
    top: -14px;
    display: inline-block;
    padding: 9px;
    border: 2px solid #ef7e0d;
    border-radius: 3px;
	font-family: Arial;
    font-size: 18px;
    font-weight: bold;
    color: #ef7e0d;
    cursor: pointer;
    text-align: center;
}
.right-form-container .form-wrapper {
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 17px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.right-form-container .form-wrapper .form-title {
    width: 100%;
    color: #243060;
    font-weight: bold;
    font-size: 18px;
    margin: 30px auto;
    text-align: center;
    font-family: Arial;
    line-height: 21px;
}
.right-form-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 18px 0;
    width: 100%;
}
.right-form-container .form-group {
    display: inline-block;
    width: 100%;
}
.right-form-container .form-wrapper #user-from #name, .right-form-container .form-wrapper #user-from #mail, .right-form-container .form-wrapper #user-from #phone {
    width: 100%;
    height: auto;
    padding: 10px 0;
    color: #ef7e0d;
    border: 1px solid #ef7e0d;
    background: transparent;
    margin-bottom: 15px;
    font-family: Arial;
    font-weight: 400;
    font-size: 14px;
    border-radius: 10px;
}
.right-form-container .form-wrapper #user-from #phone{
	padding-left: 50px;
}
.right-form-container .form-wrapper #user-from #name::placeholder, .right-form-container .form-wrapper #user-from #mail::placeholder, .right-form-container .form-wrapper #user-from #phone::placeholder {
    color: #ef7e0d;
	font-family: Arial;
}
.h55 {
    display: block;
    text-align: center;
    width: 100%;
}
.deficient-data-message {
    display: none;
    -webkit-animation: fadein 1s ease-in alternate infinite;
    -moz-animation: fadein 1s ease-in alternate infinite;
    animation: fadein 1s ease-in alternate infinite;
    color: red;
    font-family: Arial;
    font-weight: 900;
}
.sending-message {
    display: none;
    color: #243060;
    font-family: Arial;
    font-weight: 500;
}
.right-form-container .form-wrapper .btn-default {
    text-align: center;
    color: #243060;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #243060;
    margin-bottom: 40px;
    font: normal normal normal 28px/28px Arial;
    outline: 14px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
}

/** MODAL **/
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
    width: 70vw;
    height: 60vh;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #000;
    padding: 0px 20px;
    padding-right: 0;
}
.close__modal {
    position: absolute;
    top: 14px;
    right: 24px;
    display: inline-block;
    padding: 5px;
    border: 2px solid #000;
    border-radius: 3px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat-ExtraBold';
}
.modal__container {
    display: inline-block;
    padding: 40px 0 40px 0;
    width: auto;
    height: 79%;
    overflow-y: scroll;
}
.modal__container::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.modal__container::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.modal__container::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
.modal__container h3 {
    display: inline-block;
    margin-bottom: 15px;
    width: 100%;
    font-size: 2em;
    line-height: 1.2;
    text-align: left;
    font-family: 'BarlowCondensedBold';
}
.modal__container p {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1.25em;
    line-height: 1.7;
    width: 100%;
    text-align: left;
    font-family: 'BarlowCondensedRegular';
}

/** HEADER **/
header{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
    width: 100vw;
}
.fixed-scroll{
	position:fixed;
	height:100vh;
	max-height:120px;
	transition: all .3s linear;
	background-color:#fff;
}
.fixed-scroll .dilovasi-logo{
	max-width:150px!important;
}
.navbar-btn-container{
	display: flex;
    align-items: center;
}
.navbar-btn-container li{
	margin: 0 10px;
	padding: 1.275vw 1vw;
	font-family:Arial;
	font-size: 1.5em;
	background-color:#ef7e0d;
}
.navbar-btn-container li a{
	color:#fff;
}
@media only screen and (min-width: 300px) and (max-width: 1024px) and (orientation: portrait) {
    .navbar-btn-container li{
        font-size: 15px;
	    padding: 10px 5px;
        margin: 0px 7px 0px 0px;
    }
}

/** SECTION ENTRY **/
.section-entry{
	height: 76vh;
    margin-top: calc(4vw + 6vh + 4vmin);
    overflow: hidden;
}
.hakkinda-page .section-entry, .galeri-page .section-entry, .lokasyon-page .section-entry, .iletisim-page .section-entry{
    height: auto!important;
}
.section-entry .absolute{
    width: 100%;
    text-align: right;
    padding: 2vw 0;
}
.ara-btn{

}
.dilovasi-logo{
    position: absolute;
    max-width: 230px;
    width: 15vw;
    left: 5%;
    z-index: 1;
	transition: all .3s linear;
}
.section-one .flexbox-container{
    max-width: unset;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    bottom: 23.5vh;
}
/** SLIDES **/
.slides {
    transition: all 1s ease-in-out .5s;
    display: flex;
    height: 100vh;
    display: flex;
    align-items: center;
}
.slides .slick-slide {
    transition: all 1s ease-in-out;
    background: #fff;
    /*min-width: 100vw;*/
    height: 100vh;
    transform: scale(0.85);
}
.slides .slick-slide.slick-active {
    transition: all 1s ease-in-out 1s;
    transform: scale(1);
    border-radius: 0;
}
.slides .content {
    display: unset;
    left: unset;
    right: unset;
    float: unset;
}
#slide_1, #slide_2, #slide_3, #slide_4, #slide_5 {
    display: flex;
    justify-content: center;
    align-items: center;
}
#slide_1 {
    background: url(../images/galeri/img-2.jpg) bottom center no-repeat;
    background-size: cover;
}
#slide_2 {
    background: url(../images/galeri/img-8.jpg) bottom center no-repeat;
    background-size: cover;
}
#slide_3 {
    background: url(../images/galeri/img-9.jpg) bottom center no-repeat;
    background-size: cover;
}
#slide_4 {
    background: url(../images/galeri/img-14.jpg) bottom center no-repeat;
    background-size: cover;
}
#slide_5 {
    background: url(../images/galeri/img-3.jpg) bottom center no-repeat;
    background-size: cover;
}
.buttons {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.buttons .button {
    margin: 1rem 0 1rem 1rem;
    background: rgba(0,0,0,.5);
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

.content-btn{
    display: inline-block;
    max-width: 200px;
    width: 100%;
    border: 1px solid #ef7e0d;
    opacity: 1;
    text-align: center;
    font: normal normal 300 33px/40px Arial;
    letter-spacing: 0px;
    color: #ef7e0d;
    text-transform: uppercase;
    opacity: 1;
    padding: 10px;
    border-radius: 20px;
}
.content-btn:hover{
    /* border-color: rgba(203, 166, 114, .1); */
    /* background-color: rgba(203, 166, 114, .1); */
}
.content-btn:hover img{
    margin-left: 30px;
}
.content-btn img{
    margin-left: 10px;
    transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -moz-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -webkit-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -o-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
}

/** SECTION ONE **/

.section-one .flexbox-container{
    max-width: unset;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    bottom: 23.5vh;
}
.section-one .img-container{
    display: inline-block;
    margin-top: -408px;
    position: relative;
    z-index: 10;
    float: right;
}
.section-one .img-container .parallax-img{
    margin-top: 65%;
}
.section-one h1{
    
}
.section-one span{
    color: #ef7e0d;
}
.section-one p{
    font: normal normal 300 1.25em/30px Arial;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
    text-align: justify;
    /* padding-left: 18%; */
}

/** SECTION TWO **/

.section-two .top_circle {
    position: absolute;
    top: 0;
    left: 0;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    top: -500px;
    left: -300px;
    z-index: -1;
}
.section-two .top_circle::after {
    top: 90px;
    right: 90px;
    left: 90px;
    bottom: 90px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: top_circle_loop;
    animation-duration: 6s;
}
.section-two .mid_circle {
    position: absolute;
    top: 50%;
    right: -500px;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    z-index: -1;
}
.section-two .mid_circle::after {
    top: 90px;
    right: 90px;
    left: 90px;
    bottom: 90px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: mid_circle_loop;
    animation-duration: 6s;
}
body.home .section-two .small_circle {
  z-index: 1;
  bottom: 0;
}
.section-two .small_circle {
    position: absolute;
    bottom: 200px;
    right: -80px;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 480px;
    height: 480px;
    border-radius: 100%;
    pointer-events: none;
    z-index: -1;
}
.section-two .small_circle::after {
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 20px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: small_circle_loop;
    animation-duration: 6s;
}



/** SECTION THREE **/
.section-three{
    padding-top: 0;
}
#second_parallax {
    margin-bottom: 80px;
}
.section-three .parallax-img{
    margin-top: -10%;
}
.section-three p{
    padding-left: 0!important;
}



/** SECTION FOUR **/
.section-four .top_circle {
    position: absolute;
    top: 0;
    left: 0;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    top: -120px;
    left: -300px;
    z-index: -1;
}
.section-four .top_circle::after {
    top: 90px;
    right: 90px;
    left: 90px;
    bottom: 90px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: top_circle_loop;
    animation-duration: 6s;
}
body.home .section-four .small_circle {
  z-index: 1;
  bottom: 0;
}
.section-four .small_circle {
    position: absolute;
    bottom: -190px;
    right: -80px;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 480px;
    height: 480px;
    border-radius: 100%;
    pointer-events: none;
    z-index: -1;
}
.section-four .small_circle::after {
    top: 20px;
    right: 20px;
    left: 20px;
    bottom: 20px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: small_circle_loop;
    animation-duration: 6s;
}

/*@media only screen and (min-width: 300px) and (max-width: 767px) and (orientation: portrait) {
    .section-four{
        padding: 1vh 0;
    }
    .section-four .section-title{
        font-size: 1.2em;
        margin-bottom: 8vw;
    }
    .section-four .flexbox-container img{
        width: 27vw;
    }
    .section-four .flexbox-container p{
        font-size: .75em;
    }
    .section-four .flexbox-container span{
        font-size: 1.25em;
    }
    .section-four .section-subtext{
        font-size: .8em;
        margin-top: 4vh;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    .section-four{
        padding: 1vh 0;
    }
    .section-four .section-title{
        font-size: 3vw;
        margin-bottom: 5vw;
    }
    .section-four .flexbox-container{
        width: 70%!important;
    }
    .section-four .flexbox-container img{
        width: 27vw;
    }
    .section-four .flexbox-container p{
        font-size: 1.25em;
    }
    .section-four .flexbox-container span{
        font-size: 1.25em;
    }
    .section-four .section-subtext{
        font-size: 1em;
        margin-top: 4vh;
    }
}*/



/** SECTION FIVE **/

.section-five p{
    padding-left: 0!important;
    padding-right: 5%;
}
#third_parallax{
    margin-bottom: 80px;
}
.section-five .parallax-img{
    margin-top: -50%;
    box-shadow: none;
}


/** SECTION SIX **/
.galeri-page .section-six{
    padding: 150px 100px;
    padding-bottom: 100px;
}
.section-six {
    background-color: #f1f1f1;
    padding: 120px 100px;
    position: relative;
    /* border-top-left-radius: 65% 10%;
    border-top-right-radius: 65% 10%; */
}
.section-six .top_circle {
    position: absolute;
    top: 0;
    left: 0;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    top: -320px;
    left: 0;
    z-index: -1;
}
.section-six .top_circle::after {
    top: 90px;
    right: 90px;
    left: 90px;
    bottom: 90px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: top_circle_loop;
    animation-duration: 6s;
}
.section-six .mid_circle {
    position: absolute;
    top: -18%;
    right: -350px;
    border: solid 0.5px rgba(196, 161, 92, 0.29);
    width: 1180px;
    height: 1180px;
    border-radius: 100%;
    z-index: -1;
}
.section-six .mid_circle::after {
    top: 90px;
    right: 90px;
    left: 90px;
    bottom: 90px;
    border: solid 0.5px #c4a15c;
    position: absolute;
    border-radius: 100%;
    content: " ";
    animation-iteration-count: infinite;
    animation-name: mid_circle_loop;
    animation-duration: 6s;
}
.section-slider .slick-prev {
    position: absolute;
    bottom: -80px;
    left: 0px;
    width: 71px;
    height: 9px;
    background: url("../images/left.png") center center no-repeat;
    text-indent: -9999px;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    background-size: 68px;
    border: none;
}
.section-slider .slick-next {
    position: absolute;
    bottom: -80px;
    right: 0px;
    width: 71px;
    background-size: 68px;
    height: 9px;
    background: url("../images/right.png") center center no-repeat;
    text-indent: -9999px;
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: pointer;
    border: none;
}
.slide-item{
    position: relative;
    margin-right: 20px;
}
.slide-item img{
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.slide-item .dark-bg {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -moz-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -webkit-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -o-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    border-radius: 20px;
}
.slide-item:hover .dark-bg {
    opacity: 1;
}
.slider-text {
    position: absolute;
    left: 50px;
    bottom: 70px;
    right: 50px;
    z-index: 4;
    opacity: 0;
    transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -moz-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -webkit-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
    -o-transition: all cubic-bezier(0.6, 0.18, 0.85, 0.94) 0.2s;
}
.slider-text h3 {
    font: normal normal normal 30px/1.3 Arial;
    letter-spacing: 0px;
    color: #fff;
    text-transform: uppercase;
    opacity: 1;
}
.slide-item:hover .slider-text {
    opacity: 1;
}
.section-six h1{
    text-align: center;
}
.section-six .gallery-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-between;
	position:relative;
	z-index:11;
}
.section-six .gallery-container div{
    margin: 5px;
}
.section-six .gallery-container a{
    cursor: pointer;
}
.section-six .gallery-container img{
    width: 25vw;
    max-width: 300px;
    border-radius: 20px;
}


/** SECTION TANITIM FİLM **/
.tanitim-film{

}
.section-wrapper{
    position: relative;
    padding: 120px 100px;
    background-color: #fff;
}
.section-wrapper img{
    width: 100%;
    border-radius: 70px;
}
.vid-text{
    position: absolute;
    top: 50% !important;
    transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    left: 244px;
    text-align: left;
    font: normal normal normal 4.5em/1 Arial;
    letter-spacing: 0px;
    color: #ef7e0d;
    text-transform: uppercase;
    opacity: 1;
}
.vid-text span{
    color: #fff!important;
    font-size: .65em!important;
}
.play-btn-wrapper{
    width: 114px;
    height: 114px;
    border: 1px solid #ffca61;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.play-btn{
    width: 80px;
    height: 80px;
    background: #ffca61;
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.play-btn i{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}



/** SECTION SEVEN **/
.hakkinda-page .section-seven{
    background-color: rgba(166,129,69,.5)!important;
}
.hakkinda-page .section-seven .flexbox-container .infography{
    width: 100%;
}
.hakkinda-page .section-seven .flexbox-container .infography img{
    width: 40vw;
    max-width: 330px;
    box-shadow: unset!important;
    border-radius: unset!important;
}


.imkanlar-page .section-seven{
    background-color: rgba(166,129,69,.5)!important;
}
.imkanlar-page .section-seven .flexbox-container .infography{
    width: 100%;
}
.imkanlar-page .section-seven .flexbox-container .infography img{
    width: 17vw;
    max-width: 330px;
    box-shadow: unset!important;
    border-radius: unset!important;
}
.iletisim-page .section-seven{
    border-radius: unset!important;
    background-color: unset!important;
    padding-top: 70px!important;
}
.iletisim-page .section-seven .flexbox-container{
    justify-content:center!important;
}
.iletisim-page .iletisim-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    line-height: 2;
}
.iletisim-page .iletisim-flex .iletisim-phone{
    font-family: 'Arial'!important;
    color: #e2650f;
    font-size: 45px;
}
.iletisim-page .iletisim-flex p{
    margin: 0!important;
    font-size: 35px!important;
    color: #0b5a9b!important;
    font-family: 'Arial'!important;
}
.iletisim-page .iletisim-flex .iletisim-mail{
    margin: 0!important;
    font-size: 35px!important;
    color: #0b5a9b!important;
    font-family: 'Arial'!important;
}
.section-seven{
    padding: 5% 0;
    padding-top: 3%;
    background-color: #e4edf4;
    border-top-left-radius: 123% 20%;
    border-top-right-radius: 123% 20%;
    border-bottom-left-radius: 123% 20%;
    border-bottom-right-radius: 123% 20%;
    box-shadow: 0 27px 38px -40px rgb(53 57 74 / 30%);
}
.section-seven h1{
    text-align: center;
    color: #0b5a9b!important;
    margin: 0!important;
}
.section-seven span{

}
.section-seven p{
    text-transform: none!important;
    max-width: 1000px;
    margin: 10px auto;
    margin-bottom: 40px;
    text-align: center!important;
}
.section-seven .flexbox-container{
    max-width: 1600px;
    width: 95vw;
    justify-content: space-between;
    align-items: center;
}
.section-seven .infography{
    display: flex;
    width: 40%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
.section-seven .infography img{
    width: 10vw;
    max-width: 164px;
    box-shadow: 6px 6px 2px 0px rgb(53 57 74 / 30%);
    border-radius: 50%;
    margin: 5px;
}
.section-seven .form-container{
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    position: relative;
}
.section-seven h1{
	font-size: 70px!important;
	color: #e2650f!important;
}
.section-seven .form-container form{
	margin: 0 auto;
    width: 70%;
}
.section-seven .form-container form input[type=text]{
    width: 100%;
	height: 100vh;
    max-height: 50px;
	font-family: Arial;
	font-size:20px;
}
.section-seven .form-container .form-send{
	background-color:#e2650f;
	color:#fff;
	font-family: Arial;
	padding:15px 50px;
	font-size:25px;
    display: block;
    margin: 0 auto;
    border: none;
    cursor: pointer;
}
.section-seven .map-container{
    display: flex;
    width: 50%;
    position: relative;
}
.section-seven .map-container .map-img{
    width: 100%;
}
.map-container .map-btns{
    position: absolute;
    right: 0;
    top: 10px;
    width: 20vw;
    text-align: center;
}
.map-btns img{
    width: 35%;
    margin: 0 5px;
    max-width: 203px;
}

.section-seven .pin{
    animation: bounce 2s ease infinite;
    position: absolute;
    right: 27%;
    bottom: 48%;
    width: 80px;
}
.btn-img{
	opacity: 0;
	transform: translateY(4em) rotateZ(-5deg);
	transition: transform 4s .25s cubic-bezier(0,1,.3,1),opacity .3s .25s ease-out;
	will-change: transform, opacity;
}
.btn-img.is-visible {
  opacity: 1;
  transform: rotateZ(0deg);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

/*@media only screen and (min-width: 300px) and (max-width: 1024px) and (orientation: portrait) {
    .section-seven .absolute div{
        padding: 7vw 0;
        padding-bottom: 1vw;
    }
}*/


/** FOOTER **/

footer{
    /*background-color: #fcebe1;*/
    z-index:11;
	position:relative;
}
.footer-top{
    /* border-top: 1px solid #e1e1e1; */
    padding-top: 60px;
    padding-bottom: 10px;
}
footer .container{
    /*max-width: 1600px;
    margin: 0 auto;*/
    position: relative;
}
.footer-top-title{
    text-align: center;
    font: normal normal normal 50px Arial;
    letter-spacing: 0px;
    color: #434343;
    opacity: 1;
    margin-bottom: 20px;
}
footer form{
    text-align: center;
}
footer form input {
    display: inline-block;
    padding-left: 20px;
    font: normal normal 300 19px/50px Arial;
    letter-spacing: 0px;
    color: #000;
    border: 1px solid #ec7a35;
    background-color: #fff;
    opacity: 1;
    margin-right: 30px;
}
footer form input::placeholder {
    color: #000;
}
footer form #haberdarOlun-btn{
    border: none;
    display: inline-block;
    background: #ec7a35 0% 0% no-repeat padding-box;
    opacity: 1;
    text-align: center;
    font: normal normal 300 25px/50px Arial;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    padding: 0 40px;
    cursor: pointer;
}
footer form button:hover{
    background: #d8a03d 0% 0% no-repeat padding-box;
}
footer .footer-mid{
    /*border-top: 15px solid #ec7a35;
    border-bottom: 5px solid #ec7a35;*/
	padding-top: 30px;
}
footer .flexbox-container{
    max-width: unset;
    width: 100%;
    justify-content: space-around;
	align-items: center;
}
.footer-mid ul li{
    text-align: center;
    font: normal normal 300 19px/45px Arial;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
    width: 50%;
	margin: 0 3vh;
	border: 1px solid #ec7a35;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
	padding: 0 20px;
}
.footer-mid ul li a{
    color: #000;
    text-decoration: none;
	background: #fff;
}
footer .half{
    /*border-right: 1px solid #ffb78f;
    width: 48%;
    padding: 0 1%;*/
	float:none!important;
	width:auto;
	position:relative;
	/*border-right: 3px solid #ec7a35;*/
    padding: 15px 0;
	flex-grow: 1;
}
footer .half:nth-child(2){padding: 21px 0;}
.no-border{border:none!important;}
footer .half .footer-navigation{
	display:flex;
}
footer .half-flex{
    display: flex;
    width: 47%;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 1%;
}
footer .phone{
    text-align: left;
    display: block;
    font: normal normal 400 30px/30px Arial;
    letter-spacing: 1px;
    color: #ec7a35;
    opacity: 1;
    margin-bottom: 27px;
}
footer .address{
    text-align: left;
    font: normal normal 300 25px/18px Arial;
    letter-spacing: 0px;
    color: #000000;
    text-transform: uppercase;
    opacity: 1;
}
footer .social-title{
    
    font: normal normal normal 24px/18px Arial;
    letter-spacing: 0px;
    color: #000;
    opacity: 1;
}
footer .social-icon-container{
    text-align: center;
}
footer .social-icons{
    color: #ec7a35!important;
    margin: 0 1vh!important;
    font-size: 1.3em!important;
	line-height: 15px!important;
	padding: 5px 10px!important;
    border-radius: 20px!important;
}
footer .half .flexbox-container{
    align-items: flex-end;
    justify-content: center;
}
footer .half .flexbox-container a{
    margin:0 3vh;
    font: normal normal 300 19px/45px Arial;
    color: #000000;
    text-transform: uppercase;
	border: 1px solid #ec7a35;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 0 20px;
	background: #fff;
}
footer .footer-bottom{
    padding: 1% 0;
}
footer .footer-bottom .flexbox-container{
    max-width: unset;
    width: 100%;
}
footer .footer-bottom p{
    text-align: center;
    font: normal normal 300 25px/70px Arial;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
}
footer .footer-bottom a{
	font-size:35px;
	color:#ec7a35;
	margin-right:10px;
}
footer .footer-bottom img:nth-child(1){
	max-width: 272px;
    width: 50vw;
}
footer .footer-bottom img:nth-child(3){
	max-width: 310px;
    width: 50vw;
}

@media only screen and (min-width: 300px) and (max-width: 767px) and (orientation: portrait) {
    #home h1{
        font-size: 2.4em;
        line-height: 1;
        margin-bottom: 10px !important;
    }
    #home span{
        font-size: 35px;
        line-height: 1;
    } 
    #home p{
        font-size: 1em;
        text-align: left;
		margin:0 10px 20px; 
    }
    .content-btn{
        font-size: 1.5em;
        line-height: 1;
        max-width: 150px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 1024px) and (orientation: portrait) {
    .section-entry{
        margin-top: 25%;
		height:85vh; 
    }
    .scroll-container{
        display: none;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .dilovasi-logo{
        width: 25vw;
    }
    .absolute{
        right: 14%!important;
        top: 2vh!important;
    }
    .fixed-scroll{
        max-height: 10%;
    }
    .navbar-btn-container li a img{
        width: 24vw!important;
    }
    
    .top_circle,.mid_circle,.small_circle{
        display: none;
    }
    .content-section{
        padding: 20px;
        padding-bottom: 0;
    }
    .half{
        width: 100%;
        float: none;
    }
    .image-section{
        padding: 20px;
    }
    .section-wrapper{
        padding: 20px;
    }
    .section-wrapper img{
        border-radius: 0;
    }
    footer .footer-mid,footer .footer-bottom{
        padding: 5px 0;
        margin: 10px 0;
    }

    .section-one .img-container{
        margin:0;
        float: none;
        text-align: center;
    }
    .section-one .img-container .parallax-img{
        margin-top: 0!important;
    }
    .section-one .img-container .parallax-img,.section-three .img-container .parallax-img{
        width: 70%;
    }
    
    .section-three{
        margin-bottom: 20px;
    }
    .section-three .half div{
        padding: 0!important;
    }
    #second_parallax{
        margin: 0;
        text-align: center;
    }

    .section-six{
        padding: 20px!important;
    }

    .section-seven{
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .section-seven p{
        margin-bottom: unset;
    }
    .section-seven .flexbox-container{
        flex-direction: column;
    }
    .section-seven .form-container{
        width: 100%;
    }
    .section-seven .infography{
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }
    .section-seven .infography img{
        width: 19vw;
        max-width: 224px;
    }
    .section-seven .map-container{
        width: 100%;
    }
    .map-btns img{
        width: 13vw;
    }
    .section-seven .pin{
        right: 21%;
    }
    .footer-top{
        padding-top: 20px;
    }
    .footer-top-title{
        line-height: 1.5;
        margin: 0;
        font-size: 2em;
    }
    footer form a{
        margin-top: 10px;
    } 
    footer .flexbox-container{
        /* flex-direction: column; */
    }
    footer .half{
        width: 100%!important;
    }
    footer form{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer form input{
        margin: 10px 0;
    }
    
    footer form #haberdarOlun-btn{
        margin-top: 20px;
        padding: 0 10px;
        font-size: 20px;
    }
    
    .footer-mid ul li{
        padding: 0 20px!important;
        width: 100%!important;
        max-width: 165px;
        margin-bottom: 10px!important;
    }
    .second-nav{
        display: flex;
        flex-direction: column;
    }
    .second-nav a{
        width: 100%;
        max-width: 207px;
        margin: 0 auto!important;
        margin-bottom: 10px!important;
        padding: 0!important;
        text-align: center;
    }
    footer .half .footer-navigation{
        flex-direction: column;
        align-items: center;
    }
    footer .footer-bottom .flexbox-container{
        flex-direction: column;
    }
    footer .footer-bottom p{
        line-height: 1.5;
        margin: 10px 0;
		font-size:23px;
    }
    footer .footer-bottom a{
        display: block;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
    
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) and (orientation: portrait) {
    
}
@media only screen and (min-width: 300px) and (max-width: 1024px) and (orientation: portrait) {
    footer form input:first-child {
        width: 346px;
    }
}