
/** {
    outline: 2px solid red;
}*/
/*HEADER STRAT*/
header {
    background-color: var(--bs-white);
    transition: all 0.8s ease;
    top: 0;
}

header.scrolled {
    background-color: var(--bs-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
    position: relative !important;
    white-space: nowrap;
    flex-wrap: nowrap !important;
}

.navbar-nav .nav-item {
    position: relative;
    flex-shrink: 0;
}

.navbar-nav .nav-item .nav-link {
    color: var(--bs-blue);
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    height: 2px;
    width: 0%;
    background: var(--bs-blue);
    position: absolute;
    left: 0;
    bottom: 0px;
    opacity: 1;
    transition: width 0.3s ease-in-out;
    pointer-events: none;
}

.navbar-nav .nav-item .nav-link:hover::after {
    width: 70%;
    opacity: 1;
}

.navbar-nav .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    margin-top: 0;
    z-index: 1000;
    min-width: 160px;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item {
    color: var(--bs-blue);
}

.navbar-nav .dropdown .dropdown-menu .dropdown-item:hover{
    color: var(--bs-white);
    background-color: var(--bs-blue);
}

/*HEADER END*/

/*MOBILE MENU START*/
#menu_checkbox {
    display: none;
}

/* Основен стил на бутона */
label#mobile_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1051;
}

/* Без фон */
label#mobile_menu:before {
    content: none;
}

/* Линиите на бутона */
label#mobile_menu div {
    width: 100%;
    height: 3px;
    background-color: var(--bs-blue);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s ease transform, 0.3s ease opacity;
}

/* Анимация при checked */
#menu_checkbox:checked + label#mobile_menu div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#menu_checkbox:checked + label#mobile_menu div:nth-child(2) {
    opacity: 0;
}

#menu_checkbox:checked + label#mobile_menu div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);

}
.burger .burger-back,
.burger .phone-back {
    background-color: var(--bs-blue);
}

.burger .burger-back .image {
    width: 35px;
    height: 35px;
    transform: rotate(180deg);
}

.burger .phone-back .image {
    width: 35px;
    height: 35px;
}

.offcanvas .navbar-nav .nav-item .nav-link {
    color: var(--bs-blue) !important;
}

.offcanvas .navbar-nav .nav-item .collapse .custom-dropdown-item {
    color: var(--bs-blue);
}

.offcanvas .navbar-nav .nav-item .collapse .custom-dropdown-item:active {
    background: transparent;
}

.offcanvas .navbar-nav .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    margin-top: 0;
    z-index: 1000;
    min-width: 160px;
}

.offcanvas .offcanvas-body .button {
    color: var(--bs-white) !important;
    background-color: var(--bs-blue);
}

.offcanvas .navbar-nav {
    list-style: none;
    padding-left: 0;
}

.offcanvas .navbar-nav ul {
    list-style: none;
    padding-left: 0;
}

.offcanvas .navbar-nav li {
    list-style: none;
}

#mobileMenu .custom-dropdown-item,
#mobileMenu .custom-dropdown-item:focus,
#mobileMenu .custom-dropdown-item:active,
#mobileMenu .custom-dropdown-item:hover {
    background-color: transparent !important;
    color: var(--bs-blue) !important;
}

#mobileMenu .services-toggle { 
    position: relative; 
    display: inline-block; 
}
#mobileMenu .services-toggle .arrow-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100%, -50%);
}

/*MOBILE MENU END*/

/*FOOTER START*/
footer .container-fluid {
    background-color: var(--bs-blue);
}

footer .container-fluid .container .row .col .navbar-nav .nav-item .nav-link {
    color:var(--bs-white) !important;
    transition: all 0.2s ease-out;
}

footer .container-fluid .container .row .col .navbar-nav .nav-item .nav-link:hover {
    color:var(--bs-white) !important;
    transform: scale(1.05);
}

footer .container-fluid .container .row .col .buttons .footer-btn {
    border: 2px solid var(--bs-white);
}

footer .container-fluid .container .row .col .buttons .call .phone-img .image,
footer .container-fluid .container .row .col .buttons .email .email-img .image {
    width: 24px !important;
    height: 24px !important;
}

footer .container-fluid .behind-img .image {
    width: 100%;
    height: 340px;
    opacity: 0.1;
}

footer .footer-down .footer .text-footer .text {
    color: var(--bs-blue) !important;
    font-size: 0.9rem !important;
}

footer .footer-down .footer .text-footer .text .link {
    color: var(--bs-blue);
    text-decoration: none;
}

footer .footer-down .footer .text-footer .text .link:hover {
    color: var(--bs-blue);
}

footer .buttons .call:hover {
    transform: scale(1);
}
/*FOOTER END*/

/*BUTTONS START*/
.btnWhite {
    background-color: var(--bs-white);
    color: var(--bs-blue);
    padding: 0.7rem 2rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btnWhite:hover {
    background-color: transparent;
    color: var(--bs-white);
    border: 2px solid var(--bs-white);
}

.btnWhiteWithBlueBorder {
    background-color: transparent;
    color: var(--bs-blue);
    padding: 0.7rem 2rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid var(--bs-blue);
    transition: all 0.3s ease;
}

.btnWhiteWithBlueBorder:hover {
    background-color: var(--bs-blue);
    color: var(--bs-white);
    border: 2px solid var(--bs-blue);
}

.btnBlueWithWhiteBorder {
    background-color: var(--bs-blue);
    color: var(--bs-white);
    padding: 0.7rem 2rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid var(--bs-white);
    transition: all 0.3s ease;
}

.btnBlueWithWhiteBorder:hover {
    background-color: var(--bs-white);
    color: var(--bs-blue);
    border: 2px solid var(--bs-white);
}

.btnBlue {
    background-color: var(--bs-blue);
    color: var(--bs-white);
    padding: 0.7rem 2rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btnBlue:hover {
    background-color: transparent;
    color: var(--bs-blue);
    border: 2px solid var(--bs-blue);
}

.btnBlueWithPlane {
    background-color: var(--bs-blue);
    color: white;
    padding: 0.5rem 2rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.btnBlueWithPlane:hover {
    background-color: var(--bs-blue);
    color: white;
}

.add-padding {
    padding-left: 4rem;
    padding-right: 4rem;
}
.img-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--bs-blue);
    color: var(--bs-white);
    border: none;
    cursor: pointer;
    padding: 0.5rem 1.7rem;
    gap: 10px;
    transition: all 0.3s ease;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}

.img-btn .btn-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    transition: transform 0.4s ease;
    transform: translateX(25px);
}

.img-btn .plane {
    position: absolute;
    left: 0;      
    bottom: 0; 
    transition: left 1s cubic-bezier(0.77, 0, 0.175, 1); 
    z-index: 3;
}

.img-btn .plane .image {
    height: 35px; 
    padding:  0 0.1rem;
    display: block;
    object-fit: contain;
    transform: translateY(1.25px);               
    transition: transform 0.4s ease !important;
}

.img-btn:hover .plane {
    left: calc(95% - 45px - 15px);
}

.img-btn:hover .btn-text {
    transform: translateX(-25px);
}

.footer-btn{
    border: 1px solid rgba(255,255,255,0.2);
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}

.footer-btn:hover,
.footer-btn:focus-visible{
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.4);
    transform: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    text-decoration: none;
    outline: none;
}

/*BUTTONS END*/


/*HERO INDEX START*/
.hero-index {
    min-height: calc(50vh - 20px);
    position: relative;
}

.hero-index .container-fluid {
    height: 100%;
    padding: 0;
    position: relative;
}

.hero-index .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-index::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #29468A 54%, #E1F4FD 100%);
    opacity: 0.76;
    z-index: 1;
    pointer-events: none;
}
/*HERO INDEX END*/

/*HEROS START*/
.hero-3 .section-name,
.hero-3 .title,
.hero-2 .section-name,
.hero-2 .title,
.section-name {
    color: var(--bs-blue);
    }


/*HEROS END*/

/*ABOUT US SECTION START*/
.about-us-light .section-name {
    color: var(--bs-blue);
}

.about-us-light .image-frame {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-us-light .image-frame .background-div {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(10%);
    width: 50%;
    height: 120%;
    border: 3px solid var(--bs-blue);
    z-index: 1;
    border-radius: 40px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-us-light .image-frame .image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.about-us-dark .section-name {
    color: var(--bs-blue);
}

.about-us-dark .image-frame {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-us-dark .image-frame .background-div {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-10%);
    width: 50%;
    height: 120%;
    border: 3px solid var(--bs-blue);
    z-index: 1;
    border-radius: 40px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-us-dark .image-frame .image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

/*ABOUT US SECTION END*/

/*GET QUOTE START*/

.get-quote .text-block,
.text-block-2 .text-block  {
    min-height: 360px;
    background-color: var(--bs-blue);
    background-image: linear-gradient(135deg, rgba(41,70,138,0.95), rgba(197,215,223,0.8));
}

.get-quote .behind-img .image, 
.text-block-2 .text-block .behind-img .image {
    width: 100%;
    height: 340px;
    opacity: 0.1;
    transform: rotate(180deg);
}

.get-quote .buttons {
    width: max-content;         
}

.get-quote .buttons .button {     
    width: 100%;
}

.get-quote .buttons .button > a {
    display: block;
    width: 100%;
    text-align: center;      
}

/*GET QUOTE END*/

/*CARDS NEWS START*/

.news-section .cards .card {
    transition: transform 0.4s ease;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.news-section .cards .card:hover {
    transform: scale(1.03);
    z-index: 1;
}

.news-section .cards .card .card-body .card-title .link {
    color: var(--bs-black);
}

.news-section .cards .card .card-body .card-title .link:hover {
    color: var(--bs-blue);
}

.news-section .section-name {
    color: var(--bs-blue);
}

.linear-gradient {
    background-image: linear-gradient(135deg, #29468A, #c5d7df); 
    opacity: 0.6;
    pointer-events: none;
}

/*CARDS NEWS END*/

/*ABOUT OUR COMPANY START*/

.about-our-company .section-name {
    color: var(--bs-blue);
}

.about-our-company .image-frame {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-our-company .image-frame .background-div {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-100%) translateX(-15%);
    width: 40%;
    height: 60%;
    border: 3px solid var(--bs-blue);
    z-index: 1;
    border-radius: 40px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-our-company .image-frame .image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.about-our-company .image-frame-second {
    position: relative;
    width: 100%;
    height: 400px;
}

.about-our-company .image-frame-second .background-div {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(0%) translateX(15%);
    width: 40%;
    height: 60%;
    border: 3px solid var(--bs-blue);
    z-index: 1;
    border-radius: 40px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-our-company .image-frame-second .image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

/*ABOUT OUR COMPANY END*/

/*CERTIFICATIONS & APPROVALS START*/

.certification-and-approvals .section-name {
    color: var(--bs-blue);
}

.certification-and-approvals .images-column .image-item {
    position: relative;
}

.certification-and-approvals .images-column img {
    width: 180px;
    height: 200px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.certification-and-approvals .images-column img:hover {
    transform: scale(1.05);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox .close {
    position: fixed;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox .close:hover {
    color: var(--bs-secondary);
}

/*CERTIFICATIONS & APPROVALS END*/

/*CARDS START*/

.plane-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: auto;
}

.card {
    min-height: 200px;
}



.card img.logo-dark {
    height: 100px;
    width: auto;
    transition: transform 0.4s ease, opacity 0.2s ease, filter 0s ease-in;
}

.card .logo-dark  { 
    transform: rotate(270deg) translateX(-100px) translateY(44px);
    opacity: 0.15;
    filter: brightness(1.8) hue-rotate(345deg);
    transition-delay: 0s, 0s, .4s;
}

.card:hover .logo-dark  { 
    transform: rotate(270deg) translateX(-50px) translateY(44px);
    opacity: 1;
    filter: none;
    transition-delay: 0s, 0s, 0s;
}

.our-services-slider .tns-transparent.tns-slide-active {
    visibility: visible;
    opacity: 1;
}

.card .card-body {
    position: relative;
    z-index: 2;
}

.cards-our-services-plane-down .card .plane-wrapper .logo-dark  { 
    transform: translateX(-100px) translateY(0px);
    opacity: 0.15;
    filter: brightness(1.8) hue-rotate(345deg);
    transition-delay: 0s, 0s, .4s;
}

.cards-our-services-plane-down .card:hover .plane-wrapper .logo-dark { 
    transform: translateX(-50px) translateY(0px);
    opacity: 1;
    filter: none;
    transition-delay: 0s, 0s, 0s;
}

.cards-our-services-plane-down .card {
    min-height: 300px;
}

.services .tns-outer {
    display: flex;
    flex-direction: column;
}
.services .tns-outer .tns-ovh { 
    order: 1; 
}
.services .tns-outer .tns-controls {
    order: 2;
    position: static !important;
    margin-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}
/*CARDS END*/


/*LINE START*/

.line {
    width: 5%;
    color: var(--bs-black);
}

/*LINE END*/

/*SLIDER START*/

.my-slider .image-item .image {
    display: block;
    width: 100%;
    height: 350px;
}

/*SLIDER END*/

.width-sm-100-md-75 {
    width: 75% !important;
} 


/*tns start*/
.our-services-slider .tns-outer { 
    position: relative; 
}

.our-services-slider .tns-controls {
    top: auto;
    bottom: 12px;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    justify-content: center;
    gap: 12px;
}

/*TNS END*/

/* NEW CONTACT FORM START*/

.container.form-container {
    background: linear-gradient(110deg, #29468A 30%, #4E6FAB 60%, #E1F4FD 100%);
}

/* Floating label styles*/
.floating-label{
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--bs-white);
    color: var(--bs-white);
    font-size: 16px;
    outline: none;
    border-radius: 0;
}

.floating-label:focus,
.floating-label:active,
.floating-label:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: var(--bs-white);
    color: var(--bs-white);
}


input::placeholder, 
textarea::placeholder, 
.floating-label::placeholder {
    color: transparent;
}


.floating-label::placeholder {
    color: transparent;
    transform: scale(1);

}

.form-group label {
    position: absolute;
    color: var(--bs-white);
    pointer-events: none;
    transition: all 0.2s ease;
    transform: scale(1);
}

.form-group { 
    position: relative; 
}

.form-group:focus-within label,
.form-group:has(.floating-label:not(:placeholder-shown)) label,
.form-group:has(.floating-label:valid) label {
    color: var(--bs-white);
    transform: translateY(-1em) scale(0.8);
    pointer-events: none;
}

option {
    color: var(--bs-blue);
}
small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

input::file-selector-button {
    background: transparent !important;
    color: var(--bs-white) !important;
    padding: 0.5em;
    margin-top: 0.1rem !important;
    margin-bottom: 0.1rem !important;   
    border: 1px solid var(--bs-white) !important;
    border-radius: 20px !important;
}

.plane-right-1 {
    transform: rotate(270deg) scale(1) translateX(-150px) translateY(132px); 
    height: 320px; 
    opacity: 1;
    pointer-events: none;
}

.plane-left-1 { 
    transform: rotate(270deg) scale(1, -1) translateX(-150px) translateY(132px);
    height: 320px; 
    opacity: 1;
    pointer-events: none;
}

.container.verefication-container {
    display: none;
    background: linear-gradient(110deg, #E1F4FD 5%, #4E6FAB 40%, #29468A 60%);
}


.verefication-container .form-group label {
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.form-container,
.verefication-container {
    min-height: 25vh;
}


/*NEW CONTACT FORM END*/
@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.our-services .image-container.back {
    position: relative;             
    border-radius: 10px;            
    overflow: visible;
}

.our-services .image-container.back::after {
    content: '';
    position: absolute;
    inset: -6px;                    
    padding: 6px;                   
    border-radius: inherit;
    pointer-events: none;
    z-index: 2;                     
    background: conic-gradient(from var(--angle), transparent 0 330deg,var(--bs-cyan) 330deg 356deg, var(--bs-white) 356deg 360deg);
    -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    animation: spin 10s linear infinite;
}

.our-services .image-container.back::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: radial-gradient(closest-side, rgba(125,211,255,.25), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    z-index: 1;
}

@keyframes spin{
    to { --angle: 360deg; }
}
/**/
.card {
    user-select: none;
}

/*login form*/

.sign-up-container {
    background-color: var(--bs-blue);
}

.sign-up-container form.width-cols {
    width: 50%;
}

/* CERTIFICATION */
.certification .image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.certification .image-holder {
  flex: 1 1 30%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
}

.certification .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.certification .image:hover {
  transform: scale(1.05);
}

.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.image-modal.open {
  display: flex;
}

.image-modal .modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.close:hover {
  color: #bbb;
}

.img-container {
    border-radius: .5rem;
}

.lg-backdrop.in {
    opacity: .7 !important;
}

.lg-thumb-outer { background-color: rgba(13, 10, 10, .7) !important; }

@media (max-width: 1920px) {
    .navbar-nav .nav-item .nav-link {
        padding: 0.1rem 0.25rem;
        font-size: 16px;
    }
    header .logo .image {
        width: 350px;
        height: auto;
        transition: all 0.35s ease;
    }
    header.scrolled .logo .image {
        width: calc(350px * 0.8);
    }
}

@media (max-width: 1500px) {
    .about-us-light .image-frame .background-div,
    .about-us-dark .image-frame .background-div {
        height: 110%;
    }
}

@media (max-width: 1400px) {
    header .logo .image {
        width: 300px;
        height: auto;
    }
    header.scrolled .logo .image {
        width: calc(300px * 0.8);
    }
    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .navbar-nav .nav-item .nav-link {
        padding: 0.5rem 0.75rem;
    }
    header .logo .image {
        width: 260px;        
        height: auto;
    }
    header.scrolled .logo .image {
        width: calc(260px * 0.8);
    }
    footer .logo .image {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .navbar-nav .nav-item .nav-link {
        padding: 0.5rem 0.5rem;
    }
    header.scrolled .logo .image {
        width: calc(260px * 0.8);
    }
    header.scrolled {
        background-color: none;
        box-shadow: none;
    }
    header .logo .image {
        width: 260px;        
        height: auto;
    }
    .certification .image-holder {
        flex: 1 1 45%;
    }
}

@media (max-width: 990px) {
    .container.verefication-container,
    .container.form-container,
    .sign-up-container {
        background: var(--bs-blue);
    }
}
@media (max-width: 768px) {
    header .logo .image {
        width: 220px;
    }
    header.scrolled .logo .image {
        width: calc(250px * 0.8);
    }
    .burger .burger-back .image,
    .burger .phone-back .image {
        width: 30px;
        height: 30px;
    }
    .width-sm-100-md-75 {
        width: 100% !important;
    }
    header .logo {
        transform: translateX(-15px);
    }
}

@media (max-width: 576px) {
    .certification .image-holder {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 12px; 
    }
    .form-group { 
        margin-bottom: 5px; 
    }
    .contact-form label { 
        font-size: 16px; 
    }
    .about-our-company .image-frame .background-div,
    .about-our-company .image-frame .background-div {
        height: 55%;
    }
    #formContainer {
        min-height: clamp(460px, 60vh, 720px);
    }
}


@media (max-width: 350px) {

    .burger .burger-back .image,
    .burger .phone-back .image {
        width: 25px;
        height: 25px;
    }
    header .logo .image {
        width: calc(220px * 0.8);
    }
    header.scrolled .logo .image {
        width: calc(220px * 0.8);
    }
}