/*
 * Main Stylesheet for UKVISA.com
 * Designed to match the original styling of UKETA.com
 */

/* ---------- Reset & Base Styles ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #38434f;
    line-height: 1.6;
    /* background-color: #f8f8f8; */
}

a {
    text-decoration: none;
    color: #122d75;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #122d75;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    padding-top: 50px;
}

h2 {
    font-size: 30px;
    position: relative;
    padding-bottom: 15px;

}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #122d75;
}

p {
    margin-bottom: 15px;
}

/* ---------- Header Styles ---------- */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.logo img {
    max-height: 50px;
}

/* Main Navigation Menu */
.main-menu {
    display: flex;
}

.menu-item {
    margin: 0 12px;
    position: relative;
}

.menu-item a {
    font-size: 14px;
    color: #38434f;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.menu-item a:hover,
.menu-item a.active {
    color: #122d75;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.arrow {
    margin-left: 5px;
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1001;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 12px 15px;
    display: block;
    color: #38434f;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f8ff;
}

.dropdown-menu .apply-link {
    background-color: #122d75;
    color: #fff;
    font-weight: 600;
}

.dropdown-menu .apply-link:hover {
    background-color: #0a1c4d;
}

/* Language Selector */
.language-selector {
    margin-left: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    color: #38434f;
    font-size: 14px;
    font-weight: 500;
}

.lang-switch img {
    width: 20px;
    margin-right: 5px;
}

/* ---------- Hero Section ---------- */
.hero {
    background-color: #fff;
    /* padding: 50px 0; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 40px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-image {
    /* margin-top: 40px; */
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    display: block;
    /* height: 85vh; */
}

/* ---------- Button Styles ---------- */
.btn {
    display: inline-block;
    background-color: #122d75;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0a1c4d;
}

.btn-primary {
    background-color: #122d75;
}

.btn-secondary {
    background-color: #ffffff;
    color: #122d75;
    border: 1px solid #122d75;
}

.btn-secondary:hover {
    background-color: #f5f8ff;
}

.btn-large {
    padding: 14px 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ---------- Section Styles ---------- */
.section {
    padding: 60px 0;
}

.section-light {
    background-color: #fff;
    padding-bottom: 0;
}

.section-dark {
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    display: inline-block;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ---------- Two Column Layout ---------- */
.two-column {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 30px 0;
}

.column {
    flex: 1;
}

/* ---------- Feature Cards ---------- */
.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card a {
    width: 144px;
    height: 54px;
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    flex: 1;
    min-width: 250px;
    max-width: 550px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card.one {
    display: grid;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 88px;
    padding: 17px;
    height: 88px;
    background-color: #f5f8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 90px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 16px;
}

/* ---------- Country List ---------- */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.country-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-name {
    font-size: 12px;
    color: #38434f;
}

/* ---------- Application Process ---------- */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: #122d75;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ---------- Application Form Styles ---------- */
.application-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    margin-top: 40px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h1 {
    padding-top: 0;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #38434f;
}

.required::after {
    content: ' *';
    color: #d32f2f;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #122d75;
    outline: none;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-col {
    flex: 1;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 20px;
}

.radio-item,
.checkbox-item {
    display: flex;
    align-items: center;
}

.radio-item input,
.checkbox-item input {
    margin-right: 8px;
}

.file-upload {
    position: relative;
}

.file-upload .form-control {
    padding-right: 110px;
}

.file-upload .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 7px 15px;
    font-size: 12px;
}

.form-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-example {
    max-width: 300px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.form-section {
    background-color: #122d75;
    color: #fff;
    padding: 15px 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 4px;
    font-weight: 600;
}

/* ---------- Footer Styles ---------- */
footer {
    background-color: #f8f8f8;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    height: 237px;
    overflow: hidden;
    position: relative;
}

.footer-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 50px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 15px;
    gap: 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    flex: 1;
    margin-top: 14px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #122d75;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #38434f;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #122d75;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: #38434f;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info img {
    width: 20px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 15px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 992px) {
    .hero h1 {
        margin-bottom: 15px;
        font-size: 33px;
    }

    .hero-content {
        max-width: 542px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-header h1 {
        line-height: 40px;
    }

    .icon-heading {
        margin-right: 44px !important;
    }

    .header-container {
        flex-wrap: wrap;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .two-column {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .section {
        padding: 40px 0;
    }

    .feature-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: none;
    }

    .footer-links,
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .application-form {
        padding: 20px;
    }
}

.new100 {
    width: "100%";
    height: auto;
}

.centerText {
    text-align: center;
}


.btn-large.btn-large-one {
    padding: 11px 25px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
}

.btn-large-one i {
    font-size: 20px;
    margin-right: 6px;
}

.track-btn {
    background-color: #fff;
    color: #122d75;
    border: 1px solid #122d75;
}

.track-btn:hover {
    background-color: #122d75;
    color: #fff;
}

.offer {
    background-color: #000;
    height: 32px;
    overflow: hidden;
}

.scrolling-text p {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #fff !important;
    letter-spacing: 1.3px !important;
    margin-bottom: 0 !important;
    line-height: 34px !important;
    text-transform: uppercase;
}

.scrolling-text p {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 25s linear infinite;
}

.scrolling-text {
    width: 100%;
    overflow: hidden;
}


.strong-text {
    font-style: italic !important;
    font-weight: 700 !important;
}


@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.hero-image img {
    position: relative;
}

/* .hero-content {
    position: absolute;
    z-index: 500;
    left: 23%;
    top: 33%;
} */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    z-index: 500;
    color: white;
    margin-left: auto;
    margin-right: auto;
}


.hero-content h1 {
    padding-top: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.column p {
    text-align: justify;
}

.two-column.one {
    display: flex;
    align-items: flex-start;
}


.requirement-item,
.time-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.requirement-item img {
    width: 18%;
    background-color: #f5f8ff;
    border-radius: 50%;
    padding: 17px;
}

.imp-note {
    background-color: #f8f8f8;
    padding: 18px 31px 18px 31px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    /* border-radius: 8px; */
}

.imp-note p {
    text-align: center;
    margin-bottom: 0;
}

.decision-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-logo .host,
.footer-logo .host-1 p {
    color: #38434f;
    font-size: 14px;
    transition: color 0.3s;
}

.host {
    font-weight: 500;
    margin-bottom: 6px;
}

.footer-logo span img {
    width: 21px !important;
    height: 18px !important;
    margin-bottom: -4px !important;
    margin-left: 3px !important;
}

.social-icons a i {
    font-size: 18px;
    margin-right: 17px;
    color: #000;
}

.social-icons a i:hover {
    color: #122d75;
}

.social-icons {
    margin-top: 32px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-4 p {
    padding: 20px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.footer-4 {
    width: 100%;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    margin-top: 10px;
}

.accordion-icon {
    float: right;
    font-size: 1.2em;
    cursor: pointer;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item {
    border: 1px solid #cccccc99 !important;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
}

.accordion-item h3 {
    margin-bottom: 0;
    color: #000;
}

.accordion-content p {
    margin-bottom: 0;
    margin-top: 12px;
}

.two-column.two {
    margin-top: 0;
}

.feature-list h3 {
    margin-top: 38px;
}

.keys ul {
    list-style-type: disc;
    padding-left: 20px;
}

.keys {
    display: flex;
}

.keys ul li {
    margin-bottom: 10px;
}

.two-column.three {
    display: flex;
    align-items: flex-start;
}

.work-0 {
    padding: 40px 0;
    margin-bottom: 50px;
}

.content-section .two-column .column ul {
    list-style-type: disc !important;
    padding-left: 20px;
}

.info-- {
    padding-top: 60px;
}

.info-2 {
    padding-top: 80px;
}

.two-column.activities {
    display: block;
}

.imp-note.imp-- {
    background-color: #fff;
}

.info-1 {
    margin-top: 35px;
}

.feature-card p {
    text-align: left !important;
}

.timeline-content h3 {
    margin-bottom: 10px !important;
}

.timeline-content p {
    margin-bottom: 20px !important;
}

.step-description ul li i,
.column.disc ul li i,
.example-notes ul li i {
    color: #38434f;
    font-size: 14px;
    margin-right: 6px;
}

.feature-card {
    margin-top: 30px !important;
}

.icon-heading {
    height: 46px !important;
    width: 53px !important;
    margin-right: 17px !important;
}

.page-header h1 {
    display: flex;
    align-items: start;
}

.content-section .two-column .column.disc ul {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.content-section .two-column .column .example-notes ul {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.info-requirements ul,
.acc-one ul {
    list-style-type: decimal;
    padding-left: 11px;
}

.imp-note.imp--.many p {
    text-align: left !important;
}

.prop-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.two-column.requ {
    align-items: start !important;
    gap: 115px !important;
}

.al-col {
    padding-top: 70px;
}

.feature-card p b {
    font-weight: 600;
}

.des-item {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.des-item img {
    background-color: #f5f8ff;
    border-radius: 50%;
    width: 19%;
    padding: 22px;
}

.section-title-1 {
    text-align: left;
    margin-bottom: 40px;
}

.status-info-card ol {
    list-style-type: disc;
    padding-left: 20px;
}

.sec-1 ol,
.sec-1 ul {
    list-style-type: disc;
    padding-left: 20px;
}

.sec-1 ul li strong {
    font-weight: 600;
}

.page-header p {
    text-align: justify;
}






/* 
.body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px;
    background-color: #fff;
    color: #000;
} */

/* .contact-form {
    max-width: 600px;
    margin: auto;
} */

.contact-container {
    padding-top: 30px;
}

.contact-form-1 h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-top: 0;
}

.contact-form-1 p {
    margin-bottom: 20px;
    color: #555;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: #f2f2f2;
    resize: none;
}

textarea {
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 400;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-row input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-row a {
    color: #122d75;
    font-weight: 500;
}

.checkbox-row a:hover {
    text-decoration: underline;
}

button {
    width: 195px;
    padding: 15px;
    font-size: 16px;
    background-color: #122d75;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.contact-form i {
    font-size: 14px;
}



/* .contact-container {
  max-width: 500px;
  margin: 50px auto;
  padding: 20px;
} */

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    color: #122d75;
    font-size: 24px;
    margin-right: 15px;
}

/* .icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-top: 3px;
  filter: invert(36%) sepia(94%) saturate(3569%) hue-rotate(7deg) brightness(97%) contrast(97%);
} */

.contact-item h4 {
    margin: 0;
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.contact-item p {
    margin: 5px 0 0;
    font-size: 15px;
    color: #333;
}

/* .contact-main-1 {
    display: flex;
    justify-content: space-between;
} */

.contact-page {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.form-row input:focus-visible,
textarea:focus-visible {
    outline: 0;
    border: 1px solid #122d75;
}

.accordion-content ul {
    list-style-type: disc;
    margin-top: 11px;
    padding-left: 20px;
}

.buttons-top {
    display: flex;
    gap: 17px;
}

.footer-col {
    display: flex;
    justify-content: space-evenly;
    flex: 1;
    gap: 120px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.buttons-top {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .main-menu.menu-2 {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .main-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .main-menu li {
        padding: 9px 20px;
    }

    .main-menu li a {
        text-decoration: none;
        color: #333;
    }
}


@media screen and (max-width: 1200px) {
    nav {
        display: none;
    }

    .buttons-top {
        display: flex;
        gap: 17px;
        flex-wrap: wrap;
    }

    .footer-col {
        display: flex;
        justify-content: space-between;
        margin-top: 7px;
        padding: 9px;
    }

    .responsive-space {
        padding: 0 25px 0 25px;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        margin-bottom: 8px;
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-col {
        display: block;
    }

    .footer-column {
        margin-top: 25px;
    }

}

@media screen and (max-width: 575px) {
    .btn-large.btn-large-one {
        padding: 9px 23px !important;
        font-size: 13px !important;
    }

    .btn-large-one i {
        font-size: 14px;
        margin-right: 6px;
    }

    .hero p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .btn {
        padding: 9px 23px;
        font-size: 12px;
    }

    .hero h1 {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .btn-large {
        padding: 9px 23px;
        font-size: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-header h1 {
        font-size: 24px;
        line-height: 35px;
    }

    .icon-heading {
        margin-right: 68px !important;
    }


}

.d-none {
    display: none !important
}

.countries-list {
    margin: 50px 0 40px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, 1fr);
}

.countries-list .country {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    color: #13161f;
    background-color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    transition: all ease .3s;
}

.countries-list .country .country-title {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: center;
}


.countries-list .country img {
    display: block;
    object-fit: contain;
    width: 30px;
    height: 30px;
    transition: all ease .3s;
}

.contact-container p a {
    color: #000;
}

.contact-container p a:hover {
    color: #122d75 !important;
}

.top-bar {
    background-color: #122d75 ;
    padding: 8px 0;
    font-size: 14px;
    color: #fff;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.left-contact span,
.right-contact span {
    display: flex;
    align-items: center;
}

.right-contact span i {
    margin-right: 10px;
}

.uk-flag {
    width: 17px;
    margin-right: 11px;
}
