/*
 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;
	text-transform: uppercase;
}
:root :where(.wp-element-button, .wp-block-button__link)
{background-color: #f71212;}
:root :where(.wp-element-button, .wp-block-button__link):hover
{background-color: #e32727;}
.inside-header{padding: 10px 20px;}
.site-info {
  background-color: #f71212;
	color: #fff;
  font-weight: 600;
}
.main-navigation .main-nav ul li:not([class*="current-menu-"]):hover > a{color: #f71212;}

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

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

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.dos-contact-left,
.dos-contact-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dos-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    text-decoration: none;
    white-space: nowrap;
	font-weight: 600;
}

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

.dos-icon {
    width: 20px;
    height: 20px;

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

    flex-shrink: 0;
    color: #fff;
}

.dos-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    fill: currentColor;
}

.dos-separator {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    opacity: 0.9;
}

@media (max-width: 1050px) {
    .dos-top-bar-inner {
        padding: 10px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 25px;
    }

    .dos-contact-left,
    .dos-contact-right {
        gap: 12px;
    }

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

@media (max-width: 700px) {
    .dos-top-bar-inner {
        flex-direction: column;
        padding: 12px 15px;
        gap: 10px;
    }

    .dos-contact-left,
    .dos-contact-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .dos-contact-item {
        font-size: 14px;
        white-space: normal;
        text-align: center;
    }

    .dos-separator {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .dos-contact-left,
    .dos-contact-right {
        flex-direction: column;
        gap: 7px;
    }

    .dos-separator {
        display: none;
    }

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