/*Weather Header*/
.header-section .header-top .weather-wrapper .weather{
    margin-left: 30px;
    color: white;
    font-weight: 400;
    font-size: 13px;
}


.weat-soc {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 970px;
    margin: 0 auto 10px;
    background: url("/includes/client_public/assets/images/weather-pattern.png")center/contain repeat;
}

.weat-soc .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 20px;    
    background-color: rgba(238,234,225, 0.6);
}

.weat-soc .item:first-child {
    border-bottom: 4px solid #c59e4b;
}

.weat-soc .item .content {
    text-align: center;
}

.weat-soc .item .content span {
    display: block;
    text-transform: uppercase;
}

.weat-soc .item .title1 {
    font-family: proxima-nova-condensed,sans-serif;
    color: #05497b;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.weat-soc .item .title2 {
    font-family: proxima-nova,sans-serif;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.weat-soc .weather .temp {
    font-family: proxima-nova,sans-serif;
    color: #c59e4b;
    font-size: 36px;
    font-weight: bold;
}

.weat-soc .weather .weather-icon {
    color: #c59e4b;
    font-size: 36px;
}

.weat-soc .social-icons.hide {
    display: flex !important;
    visibility: visible !important;
}

.weat-soc .social-icons .social-icon {
    height: 40px;
    width: 40px;
    margin-right: 15px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: normal;
    background-color: #c59e4b;
}

.weat-soc .social-icons .social-icon:last-child {
    margin-right: 0;
}

@media (min-width: 40.063em) {
    .weat-soc {
        flex-direction: row;
        margin-bottom: 60px;
    }

    .weat-soc .item {
        width: 50%;
    }

    .weat-soc .item:first-child {
        border-bottom: 0;
        border-right: 4px solid #c59e4b;
    }
    .weat-soc .item:first-child .inner {
        flex: none;
    }
}

@media (min-width: 64.063em) {
    .weat-soc {
        margin: 0 auto 60px;
    }

    .weat-soc .item {
        flex-direction: row;
    }

    .weat-soc .item .content {
        text-align: left;
        margin-right: 25px;
    }

    .weat-soc .item .title1 {
        font-size: 20px;
    }

    .weat-soc .item .title2 {
        font-size: 24px;
    }

    .weat-soc .weather .temp {
        font-size: 52px;
    }
}