@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap&subset=latin-ext');

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

html, body{
    overflow-x: hidden;
}

a{
    color: #fff;
    display: block;
    text-decoration: none;
}

.reset{
    margin: 0 !important;
    padding: 0 !important;
}

/* Slider */
.slider{
    height: 100%;
}

.carousel-item {
    height: 100vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.carousel-caption{
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 150px;
    right: auto;
    text-align: left;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carousel-caption:after{
    content: '';
    position: absolute;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: -35px;
    width: 3px;
    height: 325px;
    background-color: #fff;
}

.carousel-caption h2{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 900;
}

.carousel-caption h3, .carousel-caption h4{
    font-size: 33px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.carousel-control-next, .carousel-control-prev{
    opacity: 1;
}

.carousel-control-next:hover, .carousel-control-prev:hover{
    opacity: .5;
}

/* Sağ Form */
.sag{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9;
    padding: 30px 0 0 0;
    background-color: #fff;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    height: 100vh;
    text-align: center;
}

.sag {
    overflow-y: auto;
    overflow-x: hidden;
}
.sag::-webkit-scrollbar-track {
    background-color: #fff;
}
.sag::-webkit-scrollbar {
    width: 6px;
    background-color: #fff;
}
.sag::-webkit-scrollbar-thumb {
    background-color: #1e1e1e;
}

.logo{
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.tel a{
    color: #000;
    font-weight: 700;
    font-size: 27px;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
}

.tel a:hover{
    text-decoration: none;
    color: #1e1e1e;
}

.bilgi{
    padding: 20px 40px 0 40px;
    color: #000;
}

.bilgi p{
    font-size: 15px;
    font-weight: 500;
    margin:0;
}

.bilgi span{
    display: block;
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
}

.bilgi i{
    font-size: 22px;
    margin:10px 0;
}

.forms{
    padding: 0 40px;
}

.form-group input{
    width: 100%;
    padding: 7px 10px;
    border-radius: 4px;
    border:1px solid #1e1e1e;
    font-weight: 500;
    font-size:14px;
    color: #1e1e1e;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
    -o-transition: 250ms all;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.form-group textarea{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border:1px solid #1e1e1e;
    font-weight: 500;
    color: #1e1e1e;
    outline: none;
    overflow: hidden;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
    -o-transition: 250ms all;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.form-group input:hover, .form-group input:focus, .form-group textarea:hover, .form-group textarea:focus{
    border-color: #1e1e1e;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.form-group input::placeholder, .form-group textarea::placeholder{
    color: rgba(20, 58, 83, 0.7);
}

.form-group{
    margin-bottom: 20px;
}

.container{
    position: relative;
    cursor: pointer;
    text-align: left;
    color: #000;
}

.container span{
    font-size: 13px;
    display: inline-block;
}

.container span a{
    color: #000;
    font-weight: 600;
    margin-left: 15px;
    display: inline-block;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #1e1e1e;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #1e1e1e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-group button{
    background-color: #1e1e1e;
    padding: 7px 50px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid transparent;
    font-size: 15px;
    outline: none;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
    -o-transition: 250ms all;
}

.form-group button:hover{
    border-color: #1e1e1e;
    color: #1e1e1e;
    background-color: transparent;
}

/* Menü */
.menu{
    position: absolute;
    top: 50px;
    left: 115px;
    z-index: 999;
}

.menu-open {
    top: 5%;
    z-index: 999;
    left: 2%;
    height: 27px;
    width: 58px;
    cursor: pointer;
    transition: opacity .25s ease;
}
.menu-open:hover {
    opacity: .7;
}
.menu-open.active .top {
    -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
    transform: translateY(10px) translateX(0) rotate(45deg);
    background: #FFF;
}
.menu-open.active .middle {
    opacity: 0;
    background: #FFF;
}
.menu-open.active .bottom {
    -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.menu-open span {
    background: #fff;
    border: none;
    height: 3px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.menu-open span:nth-of-type(2) {
    top: 10px;
}
.menu-open span:nth-of-type(3) {
    top: 20px;
}

.full-menu{
    position: fixed;
    background: #1e1e1e;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    z-index: 99;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
}

.full-menu.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
}

.full-menu.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}
.full-menu.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}
.full-menu.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}
.full-menu.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.full-menu nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}

.full-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.full-menu ul li {
    display: block;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
}

.full-menu ul li a {
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    overflow: hidden;
}

.full-menu ul li a:hover:after, .full-menu ul li a:focus:after, .full-menu ul li a:active:after {
    width: 100%;
}

.full-menu ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    transition: .35s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/* Section #1 */
.content1{
    background-color: #fff;
    padding: 150px 50px 150px 150px;
}

.icerik{
    padding-right: 80px;
}

.icerik h5{
    font-weight: 700;
    color: #1e1e1e;
    font-size: 17px;
    margin-top: 30px;
}

.icerik p{
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 80px;
    color: #000;
    line-height: 27px;
}

/* Section #2 */
.content2{
    background-color: #c6d2d3;
    padding: 100px 0;
}

.content2 h1{
    font-size: 60px;
    color: #1e1e1e;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.content2 h1:after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    margin:0 auto;
    right: 0;
    width: 200px;
    height: 5px;
    background-color: #1e1e1e;
}

.urunler{
    padding: 50px 150px;
}

.item{
    text-align: center;
    background-color: #fff;
    outline: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.item img{
    width: 100%;
    height: 230px;
}

.slick-initialized .slick-slide{
    margin: 0 35px;
    padding: 15px 15px 100px 15px;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
}

.slick-center {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
    padding: 15px !important;
}

.slick-list {
    padding:100px 0 !important;
    cursor: pointer;
}

.item h3{
    display: block;
    text-align: center;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 30px 0 40px 0;
    color: #1e1e1e;
    position: relative;
}

.item h3:after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 80px;
    height: 1px;
    background-color: #1e1e1e;
}

.item p{
    color: #1e1e1e;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    display: none;
}

.slick-current p{
    display: block;
}

.slick-prev, .slick-next{
    width: 32px;
    height: 54px;
    transition: 250ms all;
    -webkit-transition: 250ms all;
    -moz-transition: 250ms all;
}

.slick-prev:hover, .slick-next:hover{
    opacity: 0.5;
}

.content3{
    padding: 170px 0;
}

.content-3-icerik{
    position: relative;
    text-align: right;
    color: #1e1e1e;
}

.content-3-icerik:after{
    content: '';
    position: absolute;
    top: -85px;
    right: 100px;
    width: 2px;
    height: 100px;
    background-color: #1e1e1e;
}

.content-3-icerik:before{
    content: '';
    position: absolute;
    bottom: -85px;
    right: 100px;
    width: 2px;
    height: 100px;
    background-color: #1e1e1e;
}

.content-3-icerik h4{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 40px 0;
}

.content-3-icerik p{
    font-size: 13px;
    font-weight: 400;
}

.footer-cont{
    /*background-image: url("../img/footer-img.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;*/
    height: 100vh;
}

.footer-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-overlay img{
    width: 100%;
    height: 100%;
}

.footer{
    position: relative;
    padding: 50px;
}

.footer-top{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top ul{
    list-style: none;
}

.footer-top ul li{
    float: left;
}

.footer-top ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 40px;
    margin: 0 40px;
    transition: 250ms all;
}

.footer-top ul li a:hover{
    -webkit-filter: blur(1.5px);
}

.footer-bottom{
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-left{
    text-align: right;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    padding: 0 70px;
    position: relative;
    top: 50%;
}

.ft-left:before{
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 2px;
    height: 120px;
    background-color: #fff;
}

.ft-right{
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    padding: 17px 70px 0 70px;
}

.ft-right p{
    line-height: 16px;
}

.iletisim-buton{
    display: none;
}

.mobile-show{
    display: none;
}

.galeri{
  position: relative;
  padding: 0;
  border: 1px solid #1e1e1e;
  margin:20px 0;
}

.galeri a img{
  display: block;
  //height: 270px;
  width: 100%;
}

.galeri a{
  display: block;
  color: #fff;
  font-size:14px;
  background-color: #1e1e1e;
  transition: 250ms all;
  -webkit-transition: 250ms all;
  -moz-transition: 250ms all;
  -ms-transition: 250ms all;
}

.galeri b{
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  border-left:1px solid #1e1e1e;
  border-right:1px solid #1e1e1e;
  border-bottom:1px solid #1e1e1e;
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 999;
}

.galeri a:hover{
  background-color: #1e1e1e;
  color:#fff;
  text-decoration:none;
}

.galeri a:hover .galeri-overlay{
  height: 100%;
}

.galeri-overlay{
  position: absolute;
  margin: 0;
  left: 0;
  top: 50% !important;
  text-align: center;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 99;
  height: 0;
  background-color: #1e1e1e;
  opacity: 0.7;
  transition: 250ms all;
  -webkit-transition: 250ms all;
  -moz-transition: 250ms all;
  -ms-transition: 250ms all;
}

.dmlogo{
  position:absolute;
  bottom:10px;
  left:50%;
  display:block;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 991px) {

    .mobile-show{
        display: block;
    }

    .sag{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0%;
        opacity: 0;
        z-index: 9999;
        padding-bottom: 60px;
        visibility: hidden;
        transition: opacity .35s, visibility .35s, height .35s;
    }

    .sag.open {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }

    .modal{
        z-index: 99999;
    }

    .modal-backdrop{
        z-index: 99998;
    }

    .menu{
        left: 40px;
    }

    .carousel-caption{
        left: 80px;
    }

    .carousel-caption:after{
        left: -40px;
    }

    .carousel-caption h2{
        font-size: 40px;
    }

    .carousel-caption h3, .carousel-caption h4{
        font-size: 20px;
        font-weight: 400;
    }

    .carousel-caption:after{
        height: 200px;
    }

    .full-menu ul li{
        margin-bottom: 30px;
    }

    .full-menu ul li a{
        font-size: 20px;
    }

    .icerik{
        -ms-flex-order: 1;
        order: 1;
        margin-top: 60px;
    }

    .content1{
        padding: 50px;
    }

    .content2{
        padding: 0;
    }


    .content3 {
        padding: 50px 0;
    }

    .content2 h1{
        font-size: 40px;
        margin-top: 50px;
    }

    .urunler{
        padding: 40px;
    }

    .slick-prev, .slick-next {
        width: 20px;
        height: 31px;
    }

    .content-3-icerik {
        text-align: left;
        padding: 0 40px;
        margin: 100px 0;
    }

    .content-3-icerik:before, .content-3-icerik:after{
        left: 100px;
        right: auto;
    }

    .content-3-icerik:before{
        bottom: -115px;
    }

    .content-3-icerik p{
        font-size: 14px;
    }

    .footer-top ul li a {
        font-size: 25px;
        margin: 0 15px;
    }

    .ft-left, .ft-right{
        text-align: center;
    }

    .ft-left:before {
        content: '';
        position: absolute;
        top: auto;
        bottom: -35px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 250px;
        height: 1px;
    }

    .ft-right{
        margin-top: 50px;
    }

    .carousel-control-next img, .carousel-control-prev img{
        width: 20px;
    }

    .item img{
        height: auto;
    }

    .icerik{
        padding: 0;
    }

    .iletisim-buton{
        display: block;
        width: 100%;
        background-color: #fff;
        z-index: 99999;
        //border-top: 1px solid #ccc;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    }

    .iletisim-buton a{
        padding: 15px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 16px;
        background-color: #1e1e1e;
        transition: 250ms all;
    }

    .iletisim-buton a:hover{
        transform: scale(1.2);
    }

    .carousel-item{
        height: auto;
        min-height: auto;
        background-image: none !important;
    }

    .logo a img{
      width: 180px;
    }

    .galeri a img{
      display: block;
      height: auto;
      width: 100%;
    }

    .footer-cont{
      height: 75vh;
    }

    .dmlogo{
      bottom:65px;
    }

    .footer-bottom{
      bottom: 120px;
    }
}

/* Laptop */
@media all and (min-width: 1025px) and (max-width: 1599px) {

    .slick-initialized .slick-slide{
        padding: 15px;
    }

    .item p{
        display: block;
    }

    .logo{
        text-align: center !important;
        padding: 0 !important;
    }

    .logo a img{
        width: 220px;
    }

    .tel a{
        font-size: 20px;
    }

    .bilgi p{
        font-size: 15px;
    }

    .form-group input{
        padding: 7px;
    }

    .form-group textarea{
        height: 60px;
        min-height: 60px;
    }

    .form-group button{
        font-size: 12px;
    }

    .bilgi{
        padding: 20px 40px 0 40px;
    }

}

.baslik{
    font-size: 60px;
    color: #1e1e1e;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.baslik:after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    margin:0 auto;
    right: 0;
    width: 200px;
    height: 5px;
    background-color: #1e1e1e;
}

.heading-big{
  text-align: center;
  font-size: 70px !important;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-text-stroke: 3px #222;
  -webkit-text-fill-color: white;
  margin-bottom: 20px;
}

.kapat-form{
  display: none;
}

@media(max-width:991px){
  .heading-big{
    font-size: 40px !important;
    -webkit-text-stroke: 2px #222;
  }

  .kapat-form {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 30px;
    color: #222;
    z-index: 99999;
  }

  .kapat-form:hover {
    color: rgba(0,0,0,0.7);
  }
}

.butonlar{
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.butonlar .iletisim-buton{
  flex: 25%;
}

.butonlar .iletisim-buton:first-child{
  flex: 50%;
}

.butonlar .iletisim-buton:first-child a i{
  font-size: 16px;
}

.butonlar .iletisim-buton a i{
  font-size: 20px;
}

.butonlar .iletisim-buton:first-child a, .butonlar .iletisim-buton:nth-child(2) a{
  border-right: 1px solid rgba(255,255,255,0.2);
}

.col-centered{
    float: none;
    margin: 0 auto;
}

.video iframe{
  transition: 300ms all;
  border-radius: 10px;
  width: 100%;
  height: 450px;
  margin-top: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

@media(max-width:991px){
  .video iframe{
    height: 250px;
  }
}

.urun-resimleri{
  margin:0 0 70px 0;
  padding: 0;
}

.urun-resimleri > div{
  margin:10px 0;
}

.urun-resimleri .col-lg-4:first-child{
  padding-left: 0;
}

.urun-resimleri .col-lg-4:nth-child(2){
  padding: 0 7.5px;
}

.urun-resimleri .col-lg-4:last-child{
  padding-right: 0;
}

@media (max-width:991px){
  .urun-resimleri .col-lg-4:first-child{
    padding: 0px;
  }

  .urun-resimleri .col-lg-4:nth-child(2){
    padding: 0px;
  }

  .urun-resimleri .col-lg-4:last-child{
    padding: 0px;
  }
}

.urun-resimleri a{
  display: block;
  border:1px solid #e5e5e5;
}

@media (max-width:991px){
  .baslik{
    font-size: 30px;
  }

  .icerik-yg{
    margin-top: 0;
  }

  .urun-resimleri div{
    padding: 0;
  }

  .content-yg{
    padding: 0 40px;
  }
}

.urun-item a{
  position: relative;
}

.urun-item a:hover{
  color: #fff;
  text-decoration: none;
}

.urun-baslik{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms all;
  -webkit-transition: 300ms all;
  -moz-transition: 300ms all;
  -ms-transition: 300ms all;
  -o-transition: 300ms all;
}

.urun-baslik h3{
  position: relative;
  z-index: 9999;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 25px;
}

.urun-item a:hover .urun-baslik{
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.merkez{
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 30px;
}

.adres2{
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.adres2 h3{
  font-weight: 700;
}

.adres2 p{
  font-weight: 600;
  font-size: 22px;
}

.footer-top{
  position: relative;
}

@media (max-width:991px){
  .adres2{
    position: static;
    top: auto;
    left: auto;
    transform: none;
  }

  .adres2 h3{
    font-size: 17px;
  }

  .adres2 p{
    font-size: 14px;
  }

  .footer-top{
    flex-direction: column;
  }
}
