﻿/*#region Image zoom */

.img-zoom {
    transition: transform 1s; /* Animation */
    padding:20px;
}

    .img-zoom:hover {
        -ms-transform: scale(1.3); /* IE 9 */
        -webkit-transform: scale(1.3); /* Safari 3-8 */
        transform: scale(1.4);
    }

/*#endregion */
.height-120{
    height:120px;
}
.form-group input[type='file'] {
    border: 0;
    border-radius: 5px;
    height: 50px;
    color: #3e4140;
}
/*#region Hide powered by google text */

.goog-logo-link {
    display: none
}
.goog-te-combo {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.goog-te-gadget {
    height: 20px;
}
.skiptranslate {
    visibility: collapse;
}

    .skiptranslate div {
        visibility: visible;
    }

/*#endregion */

/*.logo img{
    width:100%
}*/

.preline {
    white-space: pre-line;
}
.maxh-100{
    max-height:100px;
    overflow:auto;
}
.maxh-200 {
    max-height: 200px;
    overflow: auto;
}

.maxh-300 {
    max-height: 300px;
    overflow: auto;
}
/*
.btn-common.disabled, .btn-common:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}*/

button.disabled, button:disabled {
    opacity: .65;
}










@media screen and (max-width: 992px) {
    .height-550{
        height:400px !important;
    }
}

/* On screens that are 600px wide or less, the background color is olive */
@media screen and (max-width: 600px) {
    .height-550 {
        height: 200px !important;
    }
    .img-zoom:hover {
        -ms-transform: scale(1); /* IE 9 */
        -webkit-transform: scale(1); /* Safari 3-8 */
        transform: scale(1);
    }
}
/* Logo container */


/* Logo text */
.logo-text {
    color: #2D2E99;
    font-weight: bold;
    font-size: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    position: relative; /* reliable vertical adjustment */
    top: 6px; /* move the text down */
}
/* Email specific styling */
/* Contact row (Hotline + Email side by side) */
.contact-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Each item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f9f9f9;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

    .contact-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

/* Icon circle */
.icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* Hotline specific */
.hotline-icon {
    background-color: #007bff; /* blue */
}

.hotline-item strong {
    color: #007bff;
}

/* Email specific */
.email-icon {
    background-color: #28a745; /* green */
}

.email-item strong {
    color: #28a745;
}

/* Links */
.contact-details a {
    color: #000;
    font-weight: normal;
    text-decoration: none;
    margin-left: 4px;
}

    .contact-details a:hover {
        text-decoration: underline;
    }