/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.main-navigation a
{
	font-weight: 600;
  font-size: 16px;
}
:root :where(.wp-element-button, .wp-block-button__link)
{background-color: #063486;}
:root :where(.wp-element-button, .wp-block-button__link):hover
{background-color: #08b9dc;}
.inside-header{padding: 10px 20px;}

.dos-top-bar {
    background: #1d3155;
    width: 100%;
    color: #fff;
    font-size: 16px;
}

.dos-top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 50px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.dos-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.dos-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.dos-contact-item:hover {
    color: #fff;
    text-decoration: none;
}

.dos-icon {
    color: #08b9dc;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dos-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    display: block;
}
.dos-social-icons a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    display: block;
}

.dos-social-icons a svg rect {
    fill: none;
}

.dos-social-icons a svg circle {
    fill: none;
}

.dos-social-icons a svg circle:last-child {
    fill: currentColor;
    stroke: none;
}

.dos-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dos-social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.10);
    color: #fff;

    font-size: 18px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.dos-social-icons a:hover {
    background: #08b9dc;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .dos-top-bar-inner {
        min-height: auto;
        padding: 12px 20px;
    }

    .dos-contact-info {
        gap: 12px 20px;
    }

    .dos-contact-item {
        font-size: 14px;
    }

    .dos-social-icons a {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 650px) {

    .dos-top-bar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .dos-contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .dos-contact-item {
        white-space: normal;
        justify-content: center;
        font-size: 15px;
    }

    .dos-social-icons {
        justify-content: center;
    }

    .dos-social-icons a {
        width: 36px;
        height: 36px;
    }
}