body
{
    display: flex;
    margin: auto;

}
main 
{
    width: 100%;
    
}
header 
{
    background-color: white;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute; /* fixed */
}

img.logo
{
    float: left;
}

/* scrollbar */
::-webkit-scrollbar
{
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-thumb
{
    background: linear-gradient(
        to bottom,
        #ff850a,
        #ff3474
    );
    border-radius: 50px;
}

::-webkit-scrollbar-track
{
    background: #474747;
}

a.menu:hover
{
    color: black;
}

/* menu */
@media screen and (min-width: 1025px)
{
    ul.menu
    {
        float: right;
        list-style-type: none;
        display: inline-flex;
        padding-right: 250px;
        padding-top: 25px;
    }
    a.menu
    {
        text-decoration: none;
        font-size: 30px;
        padding: 10px;
        color: black;
        margin: 0px;
        display: inline-flex;
        position: relative;
        font-weight: 600;
        
        
    }
    /*a.menu:hover
    {
        color: red;
        text-decoration: overline underline 4px;
    }*/
    a.menu::before, a.menu::after
    {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #e65454;
        transform: scaleX(0);
        transition: transform .25s;
    }
    a.menu::before
    {
        top: -3px;
        transform-origin: left;
    }
    a.menu::after
    {
        bottom: -3px;
        transform-origin: right;
    }
    a.menu:hover::before, a.menu:hover::after
    {
        transform: scaleX(1);
    }
}

/* scroll top */
#myBtn {
    display: fixed;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}
  
#myBtn:hover {
    background-color: #555;
}

/* hamburger menu */
/*----------------------------------------------------------*/
.sidenav 
{
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #111; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

  
/* The navigation menu links */
.sidenav a 
{
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
  
/* When you mouse over the navigation links, change their color */
.sidenav a:hover 
{
    color: #f1f1f1;
}
  
/* Position and style the close button (top right corner) */
.sidenav .closebtn 
{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
  
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main
{
    transition: margin-left .5s;
    padding: 20px;
}
  
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) 
{
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}

@media screen and (max-width: 1024px)
{
    ul.menu
    {
        display: none;
    }
    a.menu
    {
        display: none;
    }
    span.open
    {
        float: right;
        padding-top: 35px;
        padding-right: 30px;
    }
    div.bar
    {
        width: 35px;
        height: 5px;
        background-color: black;
        margin: 5px;
    
    }
}
/*----------------------------------------------------------*/

div.section
{
    /*background-color: rgb(179, 32, 32);*/
    background-color: rgb(102,28,45,255);
    height: 1500px;
}

/*-----------------------*/
.footer-main{
    padding-top: 90px;
}

.address-main > div.col-lg-4 {
    border-bottom: dotted 1px #999;
}
.address-box {
    padding: 10px 0;
    margin-bottom: 30px;
}
.add-icon{
    float: left;
    width: 60px;
    display: block;
    padding: 0px 5px;
}
.address-box .add-icon {
    background: #27303b;
    height: 75px;
    line-height: 75px;
    width: 75px;
    margin-right: 20px;
    text-align: center;
}
.add-icon img{
    width: 100%;
}
.address-box .add-icon img {
    max-width: 40px;
}
.add-content{
    padding-left: 70px;
}
.add-content h5 {
    font-size: 22px;
    color: #ffffff;
    padding: 0;
    font-weight: 500;
    margin-bottom: 10px;
}
.add-content p {
    font-size: 22px;
    color: #999999;
    font-weight: 300;
}
.add-content p a{
    font-size: 22px;
    color: #999999;
    font-weight: 300;
    word-wrap: break-word;
}
.add-content p a:hover{
    color: #ffb32d;
}


