/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/










.background-image {
    position: relative;
}

.background-image__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff; /* Beyaz renkte yazı. İstediğiniz renge göre değiştirebilirsiniz. */
    font-size: 24px; /* Font boyutunu isteğinize göre ayarlayabilirsiniz. */
    text-align: center;
    z-index: 1;
}

.my-icon:before {
    content: "\f0ac";
}



*{
    font-family: 'DM Sans', sans-serif !important;
}
body {
    color: #12303C;
    font-size: 14px;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #12303c;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Sora", sans-serif;
}

input {
    padding-left: 30px;
    color: #767676;
    font-weight: bold;
}

input::placeholder {
    color: #76767657;
}

.mobil{
    display: none;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #71B32F;
    border-top-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #127cc2;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #169af5;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 35px 0;
    background-color: #fff;
}

.header.header-scrolled {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #432200;
    white-space: nowrap;
    transition: 0.3s;
    padding-left: 30px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 17px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #000000;

}

.navbar a.scrollto {


}





.navbar .getstarted,
.navbar .getstarted:focus {
    background: #4154f1;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #5969f3;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.navbar .nav-link.special-menu{
    background-color: #127CC2;
    font-size: 12px;
    color: #ffffff;
    padding: 5px 30px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    transition: 0.5s;
}
.navbar .nav-link.special-menu:hover{
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #dddddd;
    transition: 0.5s;

}


.dropdown .dropdown-toggle img  {
    width: 60px;
    padding-left: 30px
}

.navbar .dropdown ul.dropdown-menu {

}
.navbar .dropdown ul.dropdown-menu-lang li {
    max-width: 100px;
    min-width: 55px;
}
.navbar .dropdown:hover>ul.dropdown-menu-lang {
    opacity: 1;
    top: 20px;
    visibility: visible;
    left: 20px;
}
.navbar .dropdown ul.dropdown-menu-lang  {
    background: #fff0;
    box-shadow:0 0 0 rgb(0 0 0 / 0%);
}

.navbar .lang{
    padding-left: 25px;
    display: none !important;
}
.navbar .lang a{
    padding-left: 5px;
}
.navbar .lang a img{
    width: 25px;
}



.navbar  .flag-logo img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(90%);
    opacity: 0.5;
    width: 32px;
}
.navbar  .flag-logo img.active {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}



.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
}




/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}



.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}



.menu-bar a:before, .menu-bar a:after {
    content: "";
    position: absolute;
    top: 40%;
    right: 0;
    margin: 0 0 -8px;
    background: #ffffff;
    border-radius: 2px;
}
.menu-bar a:before {
    right: 8px;
    width: 2px;
    height: 15px;
    transition: all 300ms;
    margin-top: -7.5px;
    background: #ffffff;
}
.menu-bar a:after {
    right: 1px;
    width: 16px;
    height: 3px;
    margin-top: -1.5px;
    background: #ffffff;
}
.menu-bar a.expanded:before {
    height: 0;
    margin-top: 0;
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/



.section-bg {
    background-color: #f6f9fd;
}


/*--------------------------------------------------------------
# Sliders
--------------------------------------------------------------*/

:root {
    --swiper-navigation-color: #ffffff;
    --swiper-theme-color: #ef233c;
}

.sliders{
    padding: 0px 0px;

}

.sliders .container{
    position: relative;
}

.sliders .sliders-box{
    background-color: #127CC2;
    opacity: 0.8;
    width: 450px;
    height: 220px;
    position: absolute;
    bottom: 0;
    z-index: 9;
}
.sliders .sliders-box1{
    background-color: #127CC2;
    opacity: 0.8;
    width: 75px;
    height: 220px;
    position: absolute;
    bottom: 0;
    left: -63px;
    z-index: 9;
}

.sliders .sliders-left-text{
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    padding: 50px 8px 5px;
    position: absolute;
    bottom: calc(50% - 100px);
    left: -60px;
    z-index: 9;
    color: #8B8B8B;
}

.sliders .swiper-right {
    width: 5%;
    display: flex;
    justify-content: center;
}

.sliders .swiper-right .social-links {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.sliders .swiper-right .social-links hr {
    transform: rotate(90deg);
    margin: 0px 0px 30px 0px;
}

.sliders .swiper-right .social-links span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    padding: 50px 8px 5px;
}

.sliders .swiper-right .social-links a {
    color: #959595;
    padding: 8px;
    top: 0px;
    background-color: #ffffff !important;
    position: relative;
    font-size: 20px;
    font-weight: 700;
}

.sliders .swiper {
    width: 100%;
    height: 750px;
    min-height: 320px;
    background-color: #46677b;
}

.sliders .swiper-slide {
    font-size: 18px;
    background: #fff;
    display: flex;
}

.sliders .swiper-slide::after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.sliders .title {
    position: absolute;
    bottom: 30px;
    transform: translateY(-50%);
    width: 350px;
    z-index: 1000;
    color: #ffffff;
    left: 50px;
}

.sliders h3 {
    font-size: 30px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 900;
}




.sliders .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sliders .background-image__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /*mix-blend-mode: luminosity;*/
}

.sliders .carousel-container {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: #71B32F;
    width: 100%;
    height: 100px;
	z-index: 2;
}

.sliders .container-left {
    width: 40%;
    background-color: #12303C;
    height: 100%;
}

.sliders h2 {
    color: #fff;
    margin: 0;
    font-size: 48px;
    font-weight: 100;
    padding-left: 100px;
	z-index: 4;
}


/*--------------------------------------------------------------
# Slogan
--------------------------------------------------------------*/

.slogan{
    position: relative;
    bottom: 145px;
    z-index: 9;
}

.slogan .image{
    position: absolute;
    top:-10px;
    left: -10px;

}

.slogan .title{
    position: absolute;
    text-align: center;
    bottom: 10px;
    width: 100%;
    font-size: 25px;
}
.slogan .shape {
    font-size: 50px;
    color: #ffffff;
    transition: 0.5s;
    position: absolute;
    top: 10px;
    right: 50px;

}
.slogan .experienced:hover .shape,.slogan .technological:hover .shape,.slogan .productive:hover .shape{
    transform: translate(35px, 0px);
    color: #ffffff;
    transition: 0.5s;

}

.slogan .experienced,.slogan .technological,.slogan .productive{
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    height: 275px;
    width: 350px;
}


.slogan .experienced{
    background-color: #709f28;

}
.slogan .technological{
    background-color: #9f2828;

}
.slogan .productive{

    background-color: #904828;

}

.btn-color{
	background-color:#709F28;
}

.btn-color:hover{
	background-color:#709F28;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about{
    color:#904828 ;
    font-size: 15px;
}
.about image{
    text-align: center;
}
.about image img{
    width: 70%;
}
.about .title1{
    font-size: 35px;
}
.about .title2{
    font-size: 45px;
    font-weight: 700;
    padding: 10px 0 30px;
}

.about .text{
    line-height: 30px;
    padding-bottom: 30px;
    width: 70%;
}

.about .link a{
    position: relative;
    color:#904828 ;
    font-size: 25px;
    font-weight: 700;

}
.about .link a i{
    font-size: 35px;
    padding-left: 10px;
    position: absolute;
    transition: 0.5s;
    top:-10px;
}

.about .link a:hover i{
    transform: translate(35px, 0px);
    transition: 0.5s;

}

/*--------------------------------------------------------------
# About2
--------------------------------------------------------------*/

.about2{
    position: relative;
}
.about2 .details{
    position: absolute;
    top: 125px;
    right: 250px;
    width: 650px;
    color: #ffffff;

}
.about2 .details .title1{
    font-weight: 700;
    font-size: 40px;

}
.about2 .details .shape{
    top: 200px;
    position: relative;
    background-color: #ffffff;
    padding: 5px;
    border-radius:120px ;
    margin-bottom: 60px;

}
.about2 .details .shape .image{
    background-color: #ff0000;
    padding: 30px;
    border-radius: 100px;
}
.about2 .details .shape .image img{
    width: 75px;
}
.about2 .details .shape .text{
	color: #023F93;
    font-size: 30px;
    font-weight: 700;
    padding-left: 25px;
}


/*--------------------------------------------------------------
# About3
--------------------------------------------------------------*/

.about3{
    position: relative;
    height: 850px;
}
.about3 .details{
    position: absolute;
    top: 125px;
    right: 250px;
    width: 650px;
    color: #ffffff;
}
.about3 .title{
    padding-bottom: 30px;
    width: 70%;
    font-size: 40px;
    font-weight: 700;
}
.about3 .text{
    line-height: 30px;
    padding-bottom: 30px;
    width: 85%;
}
.about3 .link a{
    position: relative;
    color:#ffffff ;
    font-size: 25px;
    font-weight: 700;

}
.about3 .link a i{
    font-size: 35px;
    padding-left: 10px;
    position: absolute;
    transition: 0.5s;
    top:-10px;
}

.about3 .link a:hover i{
    transform: translate(35px, 0px);
    transition: 0.5s;

}

/*--------------------------------------------------------------
# follow
--------------------------------------------------------------*/

.follow{
    background-color: #717171;

}
.follow .container{
    position: relative;
    padding: 0;
}

.follow .title1 {
    padding: 25px;
    color: #ffffff;
    font-size: 35px;
}
.follow .title2 {
    background-color: #ff0000;
    padding: 25px;
    color: #ffffff;
    font-size: 35px;
    width: 360px;
    text-align: center;
}

.follow .social{
    text-align: center;
}
.follow .social a {
    padding-left: 40px;
    font-size: 30px;
    color: #dddddd;
}


.follow .social a:hover.twitter i::before, .follow .social a:hover.facebook i::before, .follow .social a:hover.instagram i::before {
    transform: rotate(360deg);
    transition: 1s;
}
.follow .social a.twitter i::before, .follow .social a.facebook i::before, .follow .social a.instagram i::before {
    transition: 1s;
}
/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.products{
    padding: 150px 0;
    position: relative;
}

.products img{
    width: 220px;
}

.products .swiper-button-prev, .swiper-button-next{
    transition: 1s;
}.products .swiper-button-prev:hover.swiper-button-prev:after, .products .swiper-button-next:hover.swiper-button-next:after{
    color: #ff0000;
    transition: 1s;
}

.products .swiper-button-prev{
    left: 100px;
}

.products .swiper-button-next{
    right: 175px;
}

.products .swiper-button-prev:after, .swiper-button-next:after {
    font-size: 55px;
    color: #717171;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.soner-asma .baskan-message {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 100px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer{
    padding-top: 10px;
    font-weight: 700;
    font-size: 15px;

}

.footer, .footer a{
    color: #4D4D4D;
    font-size: 12px;
}
.footer .container{
    padding: 120px 0px;
    position: relative;

}


.footer ul{
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}


footer .phone-full {
    background-color: #00A044;
    padding: 25px;
    color: #ffffff;
    font-size: 35px;
    position: absolute;
    top: -10px;
    right: 0;
    width: 360px;
}

.footer .title{
    color: #910C18;
    font-size: 13px;
    font-weight: 700;
    padding-bottom: 20px;
}
.footer .marka, .footer .address,.footer .phone,.footer .phone a{
    padding-top: 10px;
    font-weight: 700;
    color: #000;
}


.footer .middle .title{
    padding-left: 45px;
}

.footer .menu-link li{
    padding-left: 45px;
}

.footer .menu-link li, .footer .menu-link li a{
    font-size: 13px;
    color: #000000;
    font-weight: 700;
    padding-bottom: 7px;
}

.footer .menu-link li a:hover{
    color: #910C18;
	
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    /*padding: 130px 0 20px;*/
}

.breadcrumbs .menu{

}

.breadcrumbs .menu ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    border-top-left-radius: 20px;
    font-size: 13px;
    line-height: 2em;
    padding-left: 30px;
}

.breadcrumbs .menu ul li, .breadcrumbs .menu ul li a{
    color: #709f28;
    font-size: 15px;
	text-transform: lowercase;

}
.breadcrumbs .menu ul li+li::before {
    font-family: "bootstrap-icons";
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    content: "\F657";
    vertical-align: middle;
}
.breadcrumbs .menu ul li a{

}

.breadcrumb{
    background-color: #FCFAFB;
    margin-top: 100px;
    height: 75px;
}



/*--------------------------------------------------------------
# Page About
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
.page{
    color: #904828;
}
.desktop .page .line{
    padding-bottom: 100px;
}
.mobil .page .line{
    padding-bottom: 30px;
}
.page .page-detail,.page .image{

}
.page .page-detail h2{
    letter-spacing: 3px;
}
.page .page-detail h3{
    font-size: 40px;
    font-weight: 700;
}
.page .page-detail .description{
    line-height: 27px;
    width: 90%;
}

.page .page-detail .image2{
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
}
.page .page-detail .image2 img{
    position: relative;
    right: 15px;
    width: 175px;
}
.page .image img{
    width: 95%;
}


.page .page-detail .breadcrumbs{
    padding-bottom: 40px;
}
.page .page-detail .breadcrumbs .title{
    padding: 5px 50px;
    color: #ffffff;
    font-size: 20px;
    background-color: #709F28;
    font-weight: 700;
}




.page-detail{

}

/*--------------------------------------------------------------
# Galleries
--------------------------------------------------------------*/
.galleries{
    padding-bottom: 60px;
}

.galleries img{
    padding: 20px 0;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{

}
.contact .contact-detail , .contact .contact-detail a {
    font-size: 17px;
    color: #959595;

}
.contact .contact-detail .title, .content .title{
    font-size: 25px;
    padding-bottom: 30px;
    font-weight: 900;

}

.contact .contact-detail .address{
    width: 70%;
    padding: 15px 0 25px;
}
.contact .contact-detail .text1{
    text-align: center;
    padding-top: 70px;
    width: 100%;
    font-weight: 700;
}



.contact .form{
    background-color: #eeeeee;
    padding: 40px 20px;
    border-radius: 10px;
}
.contact .form input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 10px 20px;
    margin-bottom: 10px;
}
.contact .form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 10px 20px;
    margin-bottom: 20px;
    height: 150px;
}
.contact .form button {
    font-size: 20px;
    padding: 10px 50px;
    border: 0;
    background-color: #709F28;
    color: #fff;
    border-radius: 15px;
    margin-top: 30px;
}

.contact .logos {

    padding-bottom: 45px;
    width: 70%;
    text-align: center;
}

.logos .image {
    margin: 0;
}

.logos img {
    width: 200px;
}

.logos .title {
    padding: 0 50px;
}

.contact .social  {
    padding: 100px 0;

}

.contact .social a {
    padding-left: 15px;
    font-size: 22px;
    color: #dddddd;
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


.map{
    padding: 50px 0 0;
}
.quick-contact.whatsapp {
    bottom: 80px;
    background: #28d366;
}
.quick-contact {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 99;
    background: #20429a;
    color: #fff !important;
    padding: 12px;
    border-radius: 50px;
    font-size: 25px;
    width: 60px;
    height: 60px;
    text-align: center;

}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e41;}

.responsive-title{
	font-size:14px;
}

.button-text{
	font-size:14px;
}

@media (max-width: 576px) { 
	
	.responsive-title{
		font-size:9px;
			}
	.button-text{
		font-size:10px;
	}
}

