/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */


.site-logo-container {
	position: absolute;
	bottom: -20px;	
	padding: 10px;
	height: 110px !important;
	
}
.site-logo-container svg {
	max-height:110px;
}
.widget-title {
	color: #fff;
}

.industries-button {
  display: none;
}

.industries-column:hover .industries-button {
  display: block;
  transition: all 1.5s ease; 
  opacity: 0; 
  animation: fadeInDown 0.5s ease forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-container {
  position: relative; 
  transform: translateY(27px);
  transition: transform 0.5s ease-in-out; 
}

.industries-column:hover .inner-container {
   transform: translateY(0px); 
}


/*Contact sayfası form css*/

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-right: 15px;
}

.form-group.full-width {
    flex: 100%;
    margin-right: 0;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #ccc;
}

.consent {
    font-size: 12px;
    color: #666;
	font-weight: 400!important;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #0056b3;
}


/*Anasayfa TPE-TPU gibi başlıklar için*/
.homepage-heading-size strong{
	font-size: 22px;
	font-weight: 500;
}

/*Linklerin Underline'i kaldırmak için*/
a:link {
 text-decoration: none; 
}

/*TAbloların stili*/
.wp-block-table {
    font-size: 14px;
}
.wp-block-table thead th {
    background-color: #f6f6f6;
}

.wp-block-table tbody tr:nth-child(odd) {
    background-color: #e5e5e5;
}

.wp-block-table tbody tr:nth-child(even) {
    background-color: #f2f2f2; 
}
.wp-block-table th, 
.wp-block-table td {
    padding: 10px; 
	text-align: center; 
   vertical-align: middle; 
}

.custom-category-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding:0 0 50px 0;


}

.custom-category-posts .custom-post-item {
   overflow: hidden;
    border: 1px solid #0345ae;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.custom-category-posts .custom-post-item img {
    max-height: 300px;
    object-fit: cover;

}
.custom-category-posts .custom-post-item h2 {
    margin: 10px 0;
}
.custom-category-posts .custom-post-item h2,
.custom-category-posts .custom-post-item p {
    padding:0 10px;
    color:#222222;
}
.custom-category-posts .custom-post-item a {
    color:#222222;

}
.custom-category-posts .custom-post-item:hover {
    box-shadow: 0px 0px 10px 10px rgba(3, 69, 174, 0.13);
}
@media screen and (max-width: 767px) {
    .wp-block-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wp-block-table table {
        width: 100%;
       /* min-width: 600px;*/
        display: block;
    }

    .wp-block-table th, .wp-block-table td {
        white-space: nowrap;
    }
    .custom-category-posts {
        grid-template-columns: repeat(1, 1fr);
    }

}