* {
    margin: 0;
    padding: 0;
}

.special_ie--container{
    text-align: center;
}

.container {
    max-width: 1868px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    color: #141e50;
}

/* FONTS */

h1,
h2,
h4 {
    font-family: "Tabac - G 1 Medium";
    font-weight: 400;
}

h1 {
    font-size: 120px;
    font-weight: 400;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h3,
p {
    font-family:'Lato', sans-serif;
}

p {
    font-size: 18px;
    font-weight: 400;
}

p.verdena {
    font-family: Verdana;
}

.white {
    color: #ffffff;
}

/* FONTS END */

/* HEADER */

.container {
    position: relative;
}

.header__container {
    height: 200px;
    background-color: #fff;
    position: fixed;
    z-index: 500;
    width: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
body.gin--horizontal-toolbar .header__container {
    top: 40px;
}

.header__container.sticky {
    height: 100px;
}

.sticky + .main {
    margin-top: 100px;
}

.main {
    margin-top: 200px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.header--logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__logo {
    width: 266px;
    -webkit-transition: width .5s;
    transition: width .5s;
}

.sticky .header__logo {
    width: 200px;
}

.header__content {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__nav {
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__nav ul {
    list-style: none;
}

.header__nav ul li {
    display: inline-block;
    padding: 7px 27px;
    border-left: 1px solid #e1e8e7;
}

.header__nav ul li:last-child {
    padding: 7px 0px 7px 27px;
    border-left: 1px solid #e1e8e7;
}

.header__nav ul li:nth-child(2) {
    border-left: none;
}

.header__nav ul li:last-child:not(:nth-child(2)) {
    border-left: 1px solid #e1e8e7;
}

.header__nav--alink {
    display: block;
    text-decoration: none;
    color: inherit;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: normal;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.header__nav--alink:hover,
.header__nav--alink:active {
    text-decoration: none;
    color: #006EFA;
    border-bottom: 2px solid #006EFA;
}

/* HAMBURGER MENU */

#hamburger {
    width: 50px;
    height: 47px;
    position: relative;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: none;
    margin-left:auto;
}

#hamburger span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: #0066CC;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
    top: 0px;
}

#hamburger span:nth-child(2),
#hamburger span:nth-child(3) {
    top: 14px;
}

#hamburger span:nth-child(4) {
    top: 28px;
}

#hamburger.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}

#hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}

.hamburgerMenu {
    border: none;
    background: transparent;
}

.hamburgerMenu:focus {
    outline: none;
}

/* HAMBURGER MENU END */

/* HEADER END */

/* FOOTER */

.footer {
    background-color: #d3f2ff;
    margin-top: 7%;
}

.footer__container {
    color: #141e50;
    max-width: 1135px;
    margin: 0 auto;
    padding: 4% 0;
}

.footer__first_row,
.footer__second_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__first_row {
    margin: 20px 0 80px;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.adress--logo {
    max-width: 100%;
    height: auto;
}
.adress__info {
    max-width: 500px;
}

.adress__info * {
    font-family: "Tabac - G 1 Medium";
}

.adress__info p {
    font-size: 22px;
}

.adress__info a {
    font-family: Verdana;
    color: #141e50;
    font-size: 15px;
    font-weight: 700;
}

.adress__copyright {
    max-width: 385px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.adress__copyright--link {
    font-family:'Lato', sans-serif;
    font-size: 12px;
}

.social__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 345px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.social--link {
    background-color: #0066CC;
    height: 62px;
    width: 62px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social--image {
    width: 29px;
    height: 29px;
}

.social__links--text {
    max-width: 161px;
    font-family: Verdana;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.52px;
}

.social__nav {
    max-width: 320px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 80px;
}

.social__nav--link {
    font-family:'Lato', sans-serif;
    font-size: 12px;
}

/* FOOTER END */

/* RESPONSIVNESS */

@media screen and (min-width: 1992px) {
    .footer {
        margin-top: 200px;
    }
}

@media screen and (min-width: 993px) and (max-width: 1440px) {
    .header__container {
        height: 150px;
    }
    .header__container.sticky {
        height: 80px;
    }
    .main {
        margin-top: 150px;
    }
    .sticky + .main {
        margin-top: 80px;
    }
    .footer__container {
        max-width: 800px;
        margin: 0 auto;
    }
    .social__links {
        max-width: 300px;
    }
    .social__nav {
        margin-right: 0px;
    }
}

@media screen and (max-width: 992px) {
    .social__nav {
        margin-right: 0px;
    }
    .company-container .company__details--phone{
        color: #141e50;
    }
    .company-container .company__details--tax-information{
        color: #141e50;
    }
    .user__container{
        width: auto !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .header__container {
        height: 120px;
    }
    .header__container.sticky {
        height: 70px;
    }
    .main {
        margin-top: 120px;
    }
    .sticky + .main {
        margin-top: 70px;
    }
    .sticky .header__logo {
        width: 80%;
    }
    .header__nav ul li {
        padding: 0 15px;
    }
    .header__nav ul li:last-child {
        padding: 0 0 0 15px;
    }
    .footer__container {
        max-width: 800px;
        margin: 0 auto;
        padding: 50px 20px;
    }
    .social__links {
        max-width: 300px;
    }
    .adress__copyright {
        margin-right: 10px;
    }
}

@media screen and (min-width: 769px) {
   .header__nav ul li:nth-child(1) {
       display: none;
   }
   .adress__copyright--link {
       font-size: 10px;
   }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 30px;
    }
    h3,
    h4 {
        font-size: 20px;
    }
    p {
        font-size: 16px;
    }
    .header__container {
        height: 80px;
    }
    .header__container.sticky {
        height: 60px;
    }
    .main {
        margin-top: 80px;
    }
    .sticky + .main {
        margin-top: 60px;
    }
    .sticky .hamburgerMenu {
        margin-top: 15px;
    }
    .header__logo {
        position: absolute;
        top: 25%;
        z-index: 99999;
    }
     #hamburger {
        display: block;
    }
    .header__nav {
        position: fixed;
        top: 80px;
        -webkit-transition: .2s ease;
        transition: .2s ease;
        overflow-x: hidden;
        width: 90%;
        z-index: 9999;
        display: block;
        opacity: 0;
        left: 100%;
    }
    .header__nav.responsive {
        left: 10%;
        opacity: 1;
    }
    .sticky .header__nav {
        top: 60px;
    }
    .header__nav.responsive ul li {
        display: block;
        background-color: #fff;
        border-bottom: 1px solid #006EFA;
        padding: 15px 10px;
        border-left: none;
    }
    .header__nav.responsive ul li:nth-of-type(1) {
        border-top: 1px solid #006EFA;
    }
    .header__nav.responsive ul li:last-child {
        border-bottom: none;
    }
    .header__nav ul li:last-child:not(:nth-child(2)) {
        border-left: 0;
    }
    .header__nav--alink {
        padding-bottom: 0;
        border-bottom: none !important;
        font-family: "Tabac - G 1 Medium";
    }
    .header__nav--alink:hover,
    .header__nav--alink:active {
        border-bottom: none !important;
    }
    .footer {
        background-image: none;
    }
    .footer * {
        margin: 0;
        padding: 0;
    }
    .footer__container {
        padding: 0 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    .footer,
    .footer__first_row,
    .footer__second_row,
    .adress__copyright {
        display: block;
    }
    .adress--logo {
        margin-top: 50px;
    }
    .footer__first_row {
        margin: 50px 0;
    }
    .footer__second_row {
        padding-bottom: 50px;
    }
    .adress__info,
    .adress__copyright {
        margin-bottom: 50px;
    }
    .adress__copyright {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .adress__info--adress {
        margin-bottom: 10px;
    }
    a.menu-item.header__nav--alink.menu-item--active-trail.is-active {
        color: white !important;
    }
    li.menu-li--active-trail{
        background-color:#006EFA !important;
    }
    nav#nav ul li a.menu-item.header__nav--alink{
        text-transform: capitalize;
    }
    nav#nav ul{
        border-left: 1px solid #006EFA;
        border-right: 1px solid #006EFA;
    }
    nav#nav ul:last-child{
        border-bottom: 1px solid #006EFA;
    }
}

@media screen and (max-width: 576px) {
    .user__container input#edit-pass, .user__container input#edit-name{
        width:400px;
    }
}

@media screen and (max-width: 480px) {
    .header__container {
        height: 90px;
    }
    .header__nav {
        top: 90px;
    }
   .header__logo {
       width: 150px;
       position: static;
   }
   .sticky .header__logo {
       width: 130px;
   }
   .sticky .header__nav {
       top: 60px;
   }
   .header__container.sticky {
       height: 60px;
   }
   .sticky .hamburgerMenu {
       margin-top: 0;
   }
   .social__links {
       -ms-flex-wrap: wrap;
       flex-wrap: wrap;
       -webkit-box-pack: start;
       -ms-flex-pack: start;
       justify-content: flex-start;
   }
   .social__links p {
       margin-top: 10px;
   }
   #hamburger {
       width: 25px;
       height: 18px;
   }
   #hamburger span {
       height: 3px;
   }
   #hamburger span:nth-child(2), #hamburger span:nth-child(3) {
       top: 8px;
   }
   #hamburger span:nth-child(4) {
       top: 16px;
   }
   .footer__container {
       padding: 0 40px;
   }
   .adress--logo {
       width: 200px;
   }
   .adress__info p {
       font-size: 13px;
       line-height: 18px;
   }
   .adress__info a {
       font-size: 9px;
       line-height: 16px;
   }
   .social__links {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
   }
   .social--link {
       width: 36px;
       height: 36px;
       margin-right: 10px;
   }
   .social--image {
       width: 13px;
       height: 13px;
   }
   .social__links p {
       margin-left: 10px;
       font-size: 12px;
       line-height: 14px;
       width: 120px;
   }
   .adress__copyright {
       width: 240px;
   }
   .adress__copyright a {
       font-size: 7px;
       line-height: 16px;
   }
   .social__nav {
       -webkit-box-pack: start;
           -ms-flex-pack: start;
               justify-content: flex-start;
   }
   .social__nav a {
       font-size: 7px;
       line-height: 16px;
       margin-right: 10px;
   }
   .user__container input#edit-pass, .user__container input#edit-name{
        width:260px;
    }
}

a.menu-item.header__nav--alink.menu-item--active-trail.is-active {
    border-bottom: 2px solid #006EFA;
    color: #006EFA;
}

nav#nav ul{
    font-family: 'Lato', sans-serif;
}

.user__container{
    margin: 0 auto;
    width: 1120px;
    padding: 50px 25px;
}

.user__container label[for="edit-pass"], .user__container label[for="edit-name"]{
    display: flex;
    flex-direction: row;
    font-family: "Tabac - G 1 Medium";
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 5px;
}

.user__container #edit-submit{
    font-family: "Tabac - G 1 Medium";
    font-size: 20px;
    padding: 2px 12px;
    margin: 15px 0;
}

.user__container input{
    padding: 5px;
}

.user__container p{
    font-size: 0.85em;
    font-family: 'Lato', sans-serif;
}

.user__container .tabs a.is-active{
    background-color: #eee;
    color: #006EFA;
}