 @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Trocchi&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Montagu+Slab:wght@100;200;300;400;500;600&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Caladea:ital,wght@0,400;0,700;1,400;1,700&display=swap");
 @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');


 @font-face {
   font-family: 'Pacifico';
   font-style: normal;
   font-weight: 400;
   src: local('Pacifico Regular'), local('Pacifico-Regular'),
     url(https://demo4.mintyazilim.com/static/assets/fonts/pacifico.woff2) format('woff2');
   font-display: swap;
 }



 /* font-family: "Montserrat", sans-serif; */
 /* font-family: "Roboto Condensed", sans-serif; */
 /* font-family: 'Raleway', sans-serif; */
 /* font-family: 'PT Serif", serif; */
 /* font-family: 'DM Serif Display', serif; */
 /* font-family: 'Trocchi', serif; */
 /* font-family: 'Montagu Slab', serif; */
 /* font-family: 'Caladea', serif; */
 /* font-family: 'Playfair Display', serif; */
 /* font-family: 'Inter', sans-serif; */

 /* BURGER MENU START */
 .menu-wrap .toggler {
   position: absolute;
   top: 0;
   right: 0;
   z-index: 12;
   cursor: pointer;
   width: 30px;
   height: 30px;
   margin: 15px 0px;
   opacity: 0;
 }

 .menu-wrap .popup {
   float: right;
   color: #fff;
   border: 1px solid #fff;
   padding: 5px 20px;
   border-radius: 20px;
   margin: 13px 55px 13px 0px;
   cursor: pointer;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
 }

 .menu-wrap .popup i {
   margin-left: 6px;
 }

 .menu-wrap .popup:hover {
   background: #282828;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
 }

 .header-fixed .menu-wrap .popup {
   padding: 2px 20px;
   margin: 7px 55px 7px 0px;
 }

 .menu-wrap .modal .gonder {
   width: 100%;
   background: #000;
   text-transform: uppercase;
   font-size: 17px;
   color: #fff;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
 }

 .menu-wrap .modal .gonder:hover {
   background: #424242;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
 }

 .menu-wrap .hamburger {
   position: absolute;
   top: 0;
   right: 0;
   z-index: 11;
   width: 30px;
   height: 30px;
   margin: 15px 0px;
   background: var(--primary-color);
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .menu-wrap .hamburger>div {
   position: relative;
   flex: none;
   width: 100%;
   height: 3px;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.4s ease;
 }

 .menu-wrap .hamburger>div::before,
 .menu-wrap .hamburger>div::after {
   content: "";
   position: absolute;
   z-index: 1;
   top: -10px;
   width: 100%;
   height: 3px;
   background: inherit;
 }

 .menu-wrap .hamburger>div::after {
   top: 10px;
 }

 .menu-wrap .toggler:checked+.hamburger>div {
   transform: rotate(135deg);
 }

 .menu-wrap .toggler:checked+.hamburger>div:before,
 .menu-wrap .toggler:checked+.hamburger>div:after {
   top: 0;
   transform: rotate(90deg);
 }

 .menu-wrap .toggler:checked:hover+.hamburger>div {
   transform: rotate(225deg);
 }

 .menu-wrap .toggler:checked~.menu {
   visibility: visible;
 }

 .menu-wrap .toggler:checked~.menu>div {
   transform: scale(1);
   transition-duration: var(--menu-speed);
 }

 .menu-wrap .toggler:checked~.menu>div>div {
   opacity: 1;
   transition: opacity 0.4s ease 0.4s;
 }

 .menu-wrap .menu {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   padding: 60px;
   visibility: hidden;
   overflow: hidden;
   z-index: 2;
 }

 .menu-wrap .menu ul.menuler li a {
   text-decoration: none;
   transition: color 0.4s ease;
   font-size: 36px;
   line-height: 60px;
   font-weight: bold;
   text-transform: lowercase;
   color: #c0c0c0;
   display: block;
 }

 .menu-wrap a {
   color: #fff;
 }

 .ilet {
   margin-bottom: 20px;
   font-size: 18px;
 }

 .header1 {
   position: absolute;
   left: 0;
   top: 0;
   right: 0;
   z-index: 9999;
 }

 .header4 .menu-wrap .menu ul.menuler li a {
   line-height: 55px;
   padding: 0px;
 }

 /* BURGER MENU FINISH */

 /***********mobilbar start***************/
 .mobil-nav ul {
   margin: 0;
   column-count: 5;
 }

 .mobil-nav ul li {
   text-align: center;
   height: 50px;
   font-weight: 500;
   vertical-align: middle;
   padding: 7px 0;
   border-left: 1px solid #bcbaba;
   border-top: 1px solid #ccc;
 }

 .mobil-nav ul li small {
   display: block;
   font-size: 9px;
   line-height: 7px;
 }

 .mobil-nav {
   position: fixed;
   bottom: 0;
   top: auto;
   left: 0;
   right: 0;
   box-shadow: 6px 0 10px rgba(0, 0, 0, 0.5);
   background: #fff;
   z-index: 9999;
 }

 .mobil-nav ul li.active a,
 .mobil-nav ul li.active i {
   color: #5c8600;
 }

 .mobil-nav svg,
 .mobil-nav i {
   font-size: 17px;
   margin-bottom: 6px;
   color: #616161;
 }

 /***********mobilbar finish***************/
 .tracer-nav .navbar .navbar-brand img {
   max-width: 215px;
   max-height: 120px;
   padding: 5px 0px;
 }

 .tracer-responsive-nav .logo,
 .tracer-responsive-nav .logo img {
   max-width: 200px;
   max-height: 120px;
   width: inherit;
   padding: 3px 0px;
   -webkit-transition: 0.3s;
   transition: 0.3s;
 }

 .mean-container .mean-bar {
   height: 100%;
   display: flex;
   align-items: center;
 }

 .tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav {
   position: absolute;
   top: 52px;
   margin-top: 0px;
 }

 .tracer-responsive-nav .logo img {
   object-fit: contain;
 }


 .mean-container a.meanmenu-reveal {
   padding-top: 0px;
 }

 .tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav ul {
   display: block;
   box-shadow: inherit;
   overflow: inherit;
   max-height: 85vh;
 }

 .navbar-area.is-sticky .topbar {
   display: none !important;
 }

 .navbar-area.is-sticky .tracer-nav .navbar .navbar-nav .nav-item a {
   padding-top: 10px;
   padding-bottom: 10px;
 }

 .navbar-area.is-sticky .logo img {
   max-height: 35px;
   width: inherit !important;
   margin: 5px 0px;
 }

 .navbar-area.is-sticky .menu-wrap .hamburger {
   margin: 5px 0px;
 }

 .navbar-area .logo img {
   max-width: 215px;
   max-height: 120px;
   padding: 5px 0px;
 }

 .navbar-area.is-sticky .menu-wrap .popup {
   margin: 5px 55px 5px 0px
 }

 .navbar-area.is-sticky .tracer-nav .navbar .navbar-nav .nav-item .dropdown-menu {
   top: 40px
 }

 .navbar-area.is-sticky .tracer-nav .navbar .navbar-brand img {
   max-height: 45px;
 }

 .navbar-area.is-sticky .tracer-responsive-nav .logo,
 .navbar-area.is-sticky .tracer-responsive-nav .logo img {
   max-height: 50px;
   -webkit-transition: 0.3s;
   transition: 0.3s;
 }

 .navbar-area.is-sticky .tracer-responsive-nav .logo {
   margin: 5px 0px;
 }

 .tracer-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
   margin-top: 4px;
 }

 /* .anasayfa header.fixed {
   background: transparent;
 } */

 header .single-footer-widget .social-link li a:hover {
   color: #fff;
 }

 header ul.headilet li {
   float: left;
   list-style-type: none;
   margin-left: 30px
 }

 header ul.headilet li:first-child {
   margin-left: 0px;
 }

 header .social-link {
   height: 30px;
 }

 header ul.headilet li i {
   position: relative;
   top: 2px;
 }

 header ul.headilet {
   line-height: 31px;
 }

 header .single-footer-widget .social-link li a {
   background-color: #e6e6e6;
   color: #333333;
 }

 header.header5 ul.headilet {
   line-height: 100px;
 }

 header.header5 .navbar.navbar-dark {
   background: #e1e1e11f;
 }

 header.header5 .nav-item {
   border-right: 1px solid #ffffff38;
 }

 header.header5 .is-sticky ul.headilet {
   line-height: 40px;
 }

 header.header5 ul.headilet a,
 header.header5 ul.headilet i {
   color: #fff;
 }

 header .topbar {
   padding-top: 5px;
   border-bottom: 1px solid #ccc;
 }

 .mean-container .mean-nav ul li a {
   color: #333;
 }

 /* .fixed .navbar-area.navbar-style-two.is-sticky {
   background: #fff;
 }

 .fixed .navbar-area.navbar-style-two.is-sticky .navbar .navbar-nav .nav-item a {
   color: #333;
 } */

 .anasayfa header.fixed {
   position: fixed;
   left: 0;
   right: 0;
   top: 0;
   z-index: 9;
 }

 @media (max-width: 767px) {
   body .main-banner-item {
     height: 535px;
   }

   .tracer-responsive-nav .logo,
   .tracer-responsive-nav .logo img {
     max-height: 95px;
   }

   .navbar-area.is-sticky .tracer-responsive-nav .tracer-responsive-menu.mean-container .mean-nav {
     margin-top: 0px;
     top: 50px;
   }

   body .yuvarlakfoto {
     width: 300px;
     height: 300px;
     margin: 0px auto
   }

   .mintlogo img {
     margin: 10px auto;
   }

   .sabitilet {
     position: fixed;
     bottom: 10px;
     left: 10px;
     z-index: 99;
   }

   body .icerikzemin {
     width: 100%;
     padding-left: 0px !important;
   }

   body .page-title-area {
     padding: 30px 0px;
   }

   body .m1 .minthizmet1,
   body .m1 .minthizmet2 {
     width: 100%;
     float: inherit;
     height: inherit;
   }

   body .m1 .minthizmet2 {
     padding: 10px;
   }

   body .m1 .d-flex {
     display: inherit !important;
   }

   body .minthizmet2 h2 {
     font-size: 38px;
     line-height: 44px;
   }

   .navbar-area .logo {
     display: flex !important;
     align-items: center;
     height: 100%;
   }

   .navbar-area .logo img {
     max-width: 140px;
   }

   body .anaslider .slide {
     height: inherit;
   }

   body.anasayfa header.fixed {
     position: inherit;
   }

   body .anaslider .item {
     height: inherit;
   }

   body .anaslider .slidetext .textcizik {
     display: none;
   }

   body .anaslider .slidetext h1 {
     font-size: 40px;
     line-height: 40px;
   }

   body .anaslider .slidetext div {
     font-size: 14px;
   }

   body .single-services-item {
     padding: 5px;
   }

   body .single-services-item h3 {
     font-size: 15px;
   }

   body .single-services-item p {
     font-size: 14px;
     line-height: 19px;
   }

   body .default-btn {
     padding: 5px 10px 5px 30px;
     font-size: 12px;
   }

   body .default-btn i {
     left: 9px;
   }

   body .single-projects-box .content {
     padding: 10px;
   }

   body .referanslogolar {
     column-count: 2;
   }

   body .referanslogolar .refe {
     margin-right: 0px;
   }

   body .single-projects-box .content h3 {
     font-size: 16px;
   }

   body .single-projects-box .content span {
     font-size: 10px;
   }
 }

 .vitrin1 .d-table {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   bottom: 0;
 }

 body .page-title-area {
   background-color: #f1f1f1;
   padding-top: 30px;
   padding-bottom: 30px;
 }

 .vitrin2 .main-banner-item {
   height: 100vh;
   /* height: calc(100vh - (138px)); */
   background-repeat: no-repeat !important;
   background-size: cover !important;
 }

 .main-banner-item {
   background-color: transparent;
 }

 .vitrin1 .main-banner-item {
   height: auto !important;
 }

 .single-services-box-item .image img,
 .single-what-we-do-box .image img,
 .single-featured-services-box .image img {
   width: 70%;
 }

 .sidezemin {
   width: 30%;
 }

 .icerikzemin {
   width: 70%;
 }

 .icerikzemin.float-end {
   padding-left: 30px;
 }

 .icerikzemin.float-start {
   padding-right: 30px;
 }

 .process-content .single-box-item h3 {
   font-size: 19px;
   font-weight: 600;
 }

 .temp6 .about-content .content ul li {
   position: relative;
   margin-bottom: 35px;
   padding-left: 53px;
   font-size: 19px;
   font-weight: 600;
   list-style: none;
 }

 .temp6 .about-content .content ul li:before {
   content: "\f10f";
   font-family: Flaticon;
   position: absolute;
   left: 0;
   top: 50%;
   -webkit-transform: translateY(-50%);
   transform: translateY(-50%);
   border-radius: 3px;
   width: 40px;
   height: 40px;
   line-height: 41px;
   text-align: center;
   -webkit-transition: 0.5s;
   transition: 0.5s;
   background-color: #deecf4;
   font-size: 20px;
   z-index: 999;
 }

 .single-services-item h3,
 .single-projects-box .content h3,
 .single-services-box h3,
 .single-process-box h3,
 .single-solutions-box h3,
 .single-featured-services-box h3,
 .single-services-box-item h3,
 .single-what-we-do-box h3,
 .single-featured-services-item h3 {
   font-size: 20px;
 }

 .yuvarlakfoto {
   width: 500px;
   height: 500px;
   overflow: hidden;
   background-repeat: no-repeat !important;
   background-size: cover !important;
   border: 5px solid #fff;
   /* box-shadow: 0px 0px 20px #969696; */
   border-radius: 50%;
 }

 .referanslogolar {
   column-count: 4;
 }

 .referanslogolar .refe {
   margin-right: 10px;
 }

 .referans {
   border: 1px solid #ccc
 }

 .mintlogo img {
   width: 90px;
 }

 .sabitilet {
   position: fixed;
   bottom: 10px;
   left: 10px;
   z-index: 99;
 }

 .sabitilet a {
   margin: 0px 5px;
   text-align: center;
   float: left;
 }

 .whatsabit {
   width: 45px;
   height: 45px;
   z-index: 999;
   background: #10b418;
   border-radius: 50%;
 }

 .whatsabit i {
   text-align: center;
   line-height: 46px;
   font-size: 51px;
   color: #fff;
   position: relative;
   margin-left: -3px;
   text-shadow: 2px 0 0 #10b418, -2px 0 0 #10b418, 0 2px 0 #10b418,
     0 -2px 0 #10b418, 1px 1px #10b418, -1px -1px 0 #10b418, 1px -1px 0 #10b418,
     -1px 1px 0 #10b418;
 }

 .sabittel i {
   text-align: center;
   line-height: 45px;
   font-size: 33px;
   color: #fff;

 }

 .sabittel {
   width: 45px;
   height: 45px;
   z-index: 999;
   background: #fd7f00;
   border-radius: 50%;
 }

 .single-services-item .yataybox .image {
   float: left;
   width: 40%;
 }

 .single-services-item .yataybox .content {
   float: right;
   width: 60%;
   text-align: left;
 }

 .dropdown-hover:hover>.dropdown-menu {
   display: inline-block;
 }

 .dropdown-hover>.dropdown-toggle:active {
   /*Without this, clicking will make it sticky*/
   pointer-events: none;
 }

 .megamenu .dropdown-menu {
   width: 100%;
   left: 0;
   right: 0;
 }

 .navbar-dark .navbar-nav .nav-link {
   color: rgb(255 255 255);
 }

 .header5 .navbar-dark .navbar-nav .nav-link {
   padding: 15px
 }

 .bar {
   width: 20px;
   height: 1.3px;
   position: relative;
   top: -5px;
   display: inline-block;
   margin-right: 5px;
 }

 .bar:before {
   width: 100%;
   height: 1.3px;
   content: "";
   margin-top: -6px;
   position: absolute;
 }

 .bar:after {
   width: 100%;
   height: 1.3px;
   content: "";
   margin-top: 6px;
   position: absolute;
 }

 .navbar-dark .bar,
 .navbar-dark .bar:before,
 .navbar-dark .bar:after {
   background: #fff;
 }

 .navbar-light .bar,
 .navbar-light .bar:before,
 .navbar-light .bar:after {
   background: #000;
 }

 .product-card-kurumsal {
   border: 1px solid #ccc;
 }

 .product-card-kurumsal .product-title {
   padding: 10px
 }

 .product-card-kurumsal .product-title h4 {
   font-size: 14px;
   font-weight: 600;
   min-height: 34px;
 }

 .product-card-kurumsal span {
   margin-left: 10px;
 }

 .accordion .accordion-button {
   background: transparent;
   padding: 12px;
   color: inherit;
 }

 .accordion-body {
   padding: 10px;
 }

 ul li {
   list-style: none;
 }

 .single-gallery-item {
   border: 1px solid #ccc;
 }

 .baslik h2 {
   letter-spacing: 5px;
   text-transform: uppercase;
   font-size: 25px;
   margin-bottom: 20px;
   font-weight: 600;
 }

 /* SLIDER START */
 section.anaslider {
   padding: 0px;
 }

 .anaslider .slide {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;
 }

 .anaslider .item {
   height: 100vh;
   display: flex;
   align-items: center;
 }

 .anaslider .slidetext {
   position: relative;
   padding: 30px 30px 30px 30px;
   margin: 20px 50px 0px 0px;
 }

 .anaslider .slidetext h1 {
   animation-duration: 0.8s;
   font-weight: 700;
   font-size: 60px;
   line-height: 60px;
 }

 .anaslider .slidetext div {
   animation-duration: 0.5s;
   animation-delay: 0.5s;
   font-size: 20px;
   line-height: 27px;
   margin: 25px 0px;
   color: #fff;
 }

 .anaslider .slidetext p {
   color: #fff;
 }

 .anaslider .slidetext .detayli {
   animation-duration: 0.5s;
   animation-delay: 1s;
   padding: 5px 20px;
   border: 1px solid;
   display: inline-block;
   border-radius: 3px;
 }

 .anaslider .slidetext:hover .detayli {
   background: #fff;
   color: #424242 !important;
   -webkit-transition: all 0.6s;
   transition: all 0.6s;
 }

 .anaslider .slidetext .textcizik {
   position: absolute;
   transform: rotate(-10deg);
   width: 100%;
   height: 100%;
   top: -20px;
 }

 .anaslider .slidetext .textcizik:before {
   content: "";
   position: absolute;
   z-index: 0;
   top: 0;
   right: 0;
   bottom: 0;
   width: 29%;
   height: 100%;
   border-color: #fff !important;
   border-top: 4px solid;
   border-right: 4px solid;
   border-image: -webkit-linear-gradient(to right,
       transparent 55%,
       var(--primary-color) 55%,
       var(--primary-color) 100%) 30;
   border-image: linear-gradient(to right,
       transparent 55%,
       var(--primary-color) 55%,
       var(--primary-color) 100%) 30;
   transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
   transition-duration: 0.6s;
   transition-property: opacity, transform;
 }

 .anaslider .slidetext .textcizik:after {
   content: "";
   position: absolute;
   z-index: 1;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 15%;
   border-color: #fff !important;
   border-left: 4px solid;
   border-bottom: 4px solid;
   border-image: -webkit-linear-gradient(to bottom,
       transparent 83%,
       var(--primary-color) 83%,
       var(--primary-color) 100%) 30;
   border-image: linear-gradient(to bottom,
       transparent 83%,
       var(--primary-color) 83%,
       var(--primary-color) 100%) 30;
   transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
   transition-duration: 0.6s;
   transition-property: opacity, transform;
 }

 .anaslider .owl-dots {
   position: absolute;
   bottom: 20px;
   left: 0;
   right: 0;
 }

 .anaslider .owl-theme .owl-dots .owl-dot span {
   width: 14px;
   height: 14px;
 }

 .anaslider .owl-item.active .slidetext h1 {
   animation: zoomIn 0.8s ease 0s both;
 }

 .anaslider .owl-item.active .slidetext p {
   animation: zoomIn 0.8s ease 0.5s both;
 }

 .anaslider .owl-item.active .slidetext .detayli {
   animation: zoomIn 0.8s ease 1s both;
 }



 /* SLIDER FINISH */

 /*ILETISIM DETAYI START*/
 .adres {
   border: 1px solid #ccc;
   padding: 20px;
   position: relative;
   background: white;
   margin-bottom: 31px;
 }

 .adres p {
   display: inline-block;
   margin: 0px 0px 0px 10px;
   font-size: 18px;
   line-height: 25px;
 }

 .adres .phone {
   margin: 20px 0px 0px 10px;
 }

 .adres i {
   width: 50px;
   height: 50px;
   border: 1px solid #ccc;
   border-radius: 50%;
   font-size: 26px;
   line-height: 50px;
   text-align: center;
   margin: 0px auto 5px auto;
   display: block;
 }

 .adres h5 {
   margin: 0px;
   font-size: 12px;
   text-align: center;
 }

 .iletdiv {
   padding: 25px;
   background: #e0e0e0 !important;
 }

 .adres .float-start {
   width: 20%;
 }

 .adres .float-end {
   width: 80%;
 }

 #map {
   width: 100%;
 }

 #map .ymaps-2-1-77-map {
   height: 250px !important;
 }

 /*ILETISIM DETAYI FINISH*/






 /*MİNT YAZLIMA ÖZEL*/
 .m1 .minthizmet1,
 .m1 .minthizmet2 {
   width: 50%;
   display: flex;
   align-items: center;
   float: left;
   height: 100%;
 }

 .m1 .minthizmet2 a {
   display: -webkit-box;
   -webkit-line-clamp: 7;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 .m1:nth-child(2n) .minthizmet1 {
   float: right;
 }

 .minthizmet2 {
   border: 20px solid #6dbcab;
   padding: 45px;
 }

 .minthizmet2 h2 {
   font-size: 50px;
   line-height: 50px;
   margin-bottom: 20px;
 }

 .minthizmet2 ul li:before {
   content: "\ebe7";
   font-family: 'boxicons';
   font-weight: 900;
   margin-right: 5px;
 }

 .minthizmet2 ul li {
   font-weight: 700;
 }

 .minthizmet2 ul {
   padding-left: 0px;
 }

 .minthizmetkat .col-md-4:nth-child(1) {
   background-color: #e7d5aa70;
 }

 .minthizmetkat .col-md-4:nth-child(2) {
   background-color: #ecb9af70;
 }

 .minthizmetkat .col-md-4:nth-child(3) {
   background-color: #c2da9e70;
 }


 .minthizmetkat .col-md-4:nth-child(4) {
   background-color: #f1d2f170;
 }

 .minthizmetkat .col-md-4:nth-child(5) {
   background-color: #abe6e870;
 }


 .minthizmetkat .col-md-4:nth-child(6) {
   background-color: #c9beda70;
 }

 .minthizmetkat .single-services-item {
   background-color: transparent;
   box-shadow: inherit;
   margin-bottom: 0px;
   padding: 30px 30px 20px 30px;
 }

 .minthizmetkat h3,
 .minthizmetkat p,
 .minthizmetkat .default-btn {
   color: #393939;
 }

 .minthizmetkat img {
   width: 190px;
   filter: grayscale(100%);
 }

 .minthizmetkat .single-services-item:hover img {
   filter: inherit;
 }