/*============== web fonts =================*/
@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Light.otf);
    font-weight: 300;
}

@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Semibold.otf);
    font-weight: 600;
}

@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Bold.otf);
    font-weight: 700;
}

@font-face {
    font-family: 'SFPro Text';
    src: url(webfonts/SF-Pro-Text-Black.otf);
    font-weight: 900;
}

@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 12px;
}

img {
    max-width: 100%;
}

body {  
    font-family: 'SFPro Text';
    font-size: 16px;
    font-weight: 400;    
    background: #FFFFFF;
    color: #191919; 
    margin: 0;
    padding: 0;
}

/*========== main-wrapper start ===========*/
.main-wrapper {
    background-image: url(images/main-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 65px 0 46px;
}

.header-part {
    width: 90%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-part button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.toggle span {
    width: 100%;
    height: 3px;
    background: #FFF;
    display: block;
    position: relative;
    cursor: pointer;
    border-radius: 50px;
}

.toggle span:before,
.toggle span:after {
    content:'';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    transition: all 0.3s ease-out;
    border-radius: 50px;
}

.toggle span:before {
    top: -9px;
}

.toggle span:after {
    top: 9px;
}

.toggle span.toggle {
    background: transparent;
}

.toggle span.toggle:before {
    top: 0;
    transform: rotate(-45deg);
    background: #FFF;
    height: 4px;
    border-radius: 50px;
}

.toggle span.toggle:after {
    top: 0;
    transform: rotate(45deg);
    background: #FFF;
    height: 4px;
    border-radius: 50px;
}

.header-part a img {
    max-width: 40px;
    transition: 0.2s all ease;
}

.header-part a img:hover {
    opacity: 0.75;
}

.middle-part {
    margin-top: auto;
    text-align: center;
}

.middle-part img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.bottom-part {
    margin-top: auto;
    text-align: center;
}

.bottom-part p {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/*======== sidebar start ========*/
.sidebar {
    background: #FFFFFF;
    width: 388px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 86px 36px 50px;
    position: fixed;
    top: 0;
    left: -100%;
    transition: 0.45s all ease;
}

.sidebarshow {
    left: 11%;
}

.sidebar-cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #020202;
    margin: 0;
}

.sidebar-item {
    padding-top: 40px;
}

.sidebar-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #020202;
    margin: 0;
}

.sidebar-item ul li {
    padding-top: 21px;
}

.sidebar-item ul li img {
    max-width: 100%;
}

.sidebar-item ul li a {
    transition: 0.2s all ease;
}

.sidebar-item ul li a:hover {
    opacity: 0.8;
}

.sidebar-item span {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.sidebar-item span img {
    max-width: 100%;
}

.sidebar-bottom {
    margin-top: auto;
}

.sidebar-bottom p {
    font-size: 16px;
    font-weight: 400;
    color: #020202;
    margin: 0;
}

.sidebar-bottom p a {
    color: #020202;
    transition: 0.2s all ease;
}

.sidebar-bottom p a:hover {
    opacity: 0.76;
}

/*============ Responsive mode ===========*/
@media screen and (max-width: 1199px) {

    .main-wrapper {
        padding: 54px 0 40px;
    }

    .header-part a img {
        max-width: 35px;
    }

    .middle-part img {
        max-width: 60%;
    }

    .sidebarshow {
        left: 12%;
    }

    .sidebar {
        padding: 70px 35px 40px;
    }

}

@media screen and (max-width: 991px) {
    .header-part {
        width: 92%;
    }
} 

@media screen and (max-width: 700px) {
    .header-part {
        width: 95%;
    }

    .main-wrapper {
        padding: 45px 0 35px;
    }

}

@media screen and (max-width: 540px) {

    .main-wrapper {
        padding: 40px 0 32px;
    }

    .header-part {
        width: 100%;
    }
 
    .header-part a img {
        max-width: 32px;
    }

    .bottom-part p {
        font-size: 13px;
    }

    .sidebar {
        width: 310px;
        left: -110%;
        padding: 45px 20px 30px;
    }

    .sidebarshow {
        left: 14%;
    }

    .sidebar-cnt p {
        font-size: 15px;
    }

    .sidebar-item ul li img {
        max-width: 92%;
    }

    .sidebar-bottom p {
        font-size: 15px;
    }

}     