/*----------------------------------------------------------------------------------------------------------------------

Default Color   #ffffff;

Body copy:		'Poppins', sans-serif; 15px;
Headers:		'Poppins', sans-serif;

----------------------------------------------------------------------------------------------------------------------*/
/***********************************************************************************************************************
A. Basic Styling
***********************************************************************************************************************/

/*-------------------------------------------
  -- Styling - Colors, Font Size, Font Family
-------------------------------------------*/

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #fff;
}
body, html {
    height: 100%;
}

/* html {
    font-size: 80%;
} */
/*-------------------------------------------
  -- Typography
-------------------------------------------*/
h1 {
    font-weight: 700;
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: -50px;
}

h2 {
    font-weight: 500;
    font-size: 1.25rem;
}
h5 {
    font-size:1rem;
    font-weight: 700;
    text-transform: uppercase;
}
p {
    /*line-height: 1.6875rem;
    margin-bottom: 1.875rem;*/
}

/*-------------------------------------------
  -- Animations
-------------------------------------------*/

[data-animate] {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}
/* Scale */

@keyframes ts-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ts-scale {
    animation-name: ts-scale;
    animation-timing-function: ease-in-out;
}



/*-------------------------------------------
  -- Background
-------------------------------------------*/

[data-bg-image] {
    background-size: cover;
    background-position: 50%;
}

.ts-background {
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -2;
}
.ts-background .ts-background {
    height: 100%;
    width: 100%;
    position: relative;
}
.ts-background::before
{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}
.ts-background-image, .ts-img-into-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*-------------------------------------------
  -- Overflow
-------------------------------------------*/

.ts-overflow__hidden {
    overflow: hidden;
}

.ts-overflow__visible {
    overflow: visible;
}


/*-------------------------------------------
  -- Loading Screen
-------------------------------------------*/

body.has-loading-screen:before {
    background-color: #000;
    content: "";
    height: 100%;
    right: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    transition: 1.5s ease;
    opacity: 1;
}

body.has-loading-screen:after {
    content: url("../../assets/img/loading.svg");
    height: 2.5rem;
    width: 2.5rem;
    position: fixed;
    margin: auto;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transform: scale(1);
    transition: 1.5s ease;
    top: 0;
    z-index: 10000;
}

body.has-loading-screen.loading-done:before {
    width: 0;
}

body.has-loading-screen.loading-done:after {
    transform: scale(0);
    opacity: 0;
}

/*-------------------------------------------
  -- Hero
-------------------------------------------*/

#ts-hero {
    color: #fff;
    display: flex;
    position: relative;
}

#ts-hero .ts-background-image {
    background-position: top center;
}
/*-------------------------------------------
  -- Page
-------------------------------------------*/

.ts-page-wrapper {
    height: 100%;
    transition: 1s cubic-bezier(.77, 0, .18, 1);
}

.ts-page-wrapper > .container {
    display: table;
    height: 100%;
}

#header, #footer {
    display: table-row;
    height: .0625rem;
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0px 30px;
    position: relative;
    text-align: center;
}
/* header img
{
    width: 20%;
} */
.ts-page-wrapper
{
    position: relative;
}

#main-content {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 35px;
}

#main-content .ts-content-wrapper {
    display: table-cell;
    vertical-align: middle;
}

#main-content .ts-content-wrapper > .row {
    width: 100%;
}

#footer {
    vertical-align: bottom;
    text-align: center;
}
#footer a
{
    color: #fff;
}


/*-------------------------------------------
  -- Shapes
-------------------------------------------*/

.ts-shapes-canvas:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: .5;
    /*Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100*/
    background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); /*FF3.6-15*/
    background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); /*Chrome10-25,Safari5.1-6*/
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%); /*W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+*/
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0, 0, 0, 0)', endColorstr='#000000', GradientType=1); /*IE6-9 fallback on horizontal gradient*/
}
/* Hero slider height */
.category
{
    display: flex;
    justify-content: space-evenly;
}
.branshes
{
    margin-top: 30px;
}
.branshes h4
{
    margin-bottom: 25px;
    text-transform: uppercase;
}

.main-counties
{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    justify-content: center;
    align-items: center;
    column-gap: 25px;
    row-gap: 15px;
}
.country
{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.country img
{
    width: 30px;
}
.map img
{
    width: 600px;
}
/*** responsive ***/
@media (min-width: 36rem) and (max-width: 47.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-80%);
    }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-70%);
    }

}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-60%);
    }

}

@media (min-width: 75rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-50%);
    }
    html {
        font-size: 100%;
    }  
}

@media (max-width: 35.9375rem) {
    h1 {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 36rem) and (max-width: 61.9375rem) {
    h1 {
        margin-bottom: 1.25rem;
    }

    .ts-title {
        margin-bottom: 1.875rem;
    }

}

@media (min-width: 62rem) {
    h1 {
        margin-bottom: 15px;
    }

    .ts-title {
        margin-bottom: 2.5rem;
    }
    
}

@media (max-width: 480px) {
    .main-counties
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
