@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body{
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
}

.bg {
    /* The image used */
    background-image: url("../background.jpg");
  
    /* Full height */
    height: 100%;
  
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

.container {
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}

header {
    width: 100%;
    height: 75px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    z-index: 10;
}

nav{
    height: inherit;
    max-width: 1300px;
    width: 100%;
    -webkit-box-pack: 0 auto;
        -ms-flex-pack: 0 auto;
            justify-content: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
}

/*Styling logo*/
.logo{
    padding: 10px 0;
    text-align: center;
}
.logo img {
    height: 100%;
}

/*Styling Links*/
.nav-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none; 
    width: 88vw;
    padding: 0 0.7vw;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
}
.nav-links li a {
    text-decoration: none;
    margin: 0 30px;
    color:#fff;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}
.nav-links li a:hover {
    color: #d4d4d4;
    text-decoration: underline;
}
.nav-links li {
    position: relative;
}

.nav-links li a:hover::before{
    width: 80%;
}

/*Styling Buttons*/
.join-button{
    border: none;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    margin-left: 30px;
    color: #fff;
    background: #CD0001;    
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.join-button:hover {
    background-color: #aa0303;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

.top1 {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    position: relative;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.top1 h1 {
    font-size: 54px;
    line-height: 65px;
}

.top1 h1 span {
    font-size: 54px;
    font-weight: 400;
}

.top1 p {
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    margin: 30px 0 40px;
    line-height: 28px;
}

.top1-anchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.top1-anchor a:first-child {
    color: #fff;
    background: #CD0001;    
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: 600;
}


.top1-anchor a:first-child:hover {
    background: #aa0303;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.top1-anchor a:last-child {
    color: #fff;
    background: none;
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    font-weight: 600;
}

.top1-anchor a:last-child:hover {
    color: rgb(223, 221, 221);
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.top1-anchor a:last-child span {
    content: "";
    height: 2px;
    width: 13px;
    background-color: #CD0001;
    margin-right: 10px;
}

.bg .scroll-down-img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
}

header.scrolled {
    background-color: rgba(0,0,0,0.85);
    -webkit-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    -webkit-box-shadow: 2px 13px 43px -13px rgba(0,0,0,0.16);
            box-shadow: 2px 13px 43px -13px rgba(0,0,0,0.16);
}

.usluge {
    position: relative;
}

.naslov {
    text-align: center;
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin: 100px 0 15px;
}

.crtica {
    content: "";
    background: #CD0001;
    position: absolute;
    height: 3px;
    width: 50px;
    left: 50%;
    -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
            transform: translate(-50%);
}

.opis-naslova {
    text-align: center;
    max-width: 600px;
    margin: 0px auto 60px;
    padding-top: 20px;
}

.services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.services h2 {
    line-height: 24px;
}

.services div div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}

.services div img {
    width: 40px;
    margin-right: 20px;
}

.services .services-1 {
    background: #fff9f9;
}

.services-1,
.services-2 {
    padding: 50px 55px;
    width: 33%;
}

.services p {
    color: #241010;
    font-size: 15px;
}

.buttons-call-action {
    text-align: center;
    margin: 50px 0 0;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.buttons-call-action a:first-of-type {
    color: #fff;
    background: #CD0001;   
    display: -webkit-inline-box;   
    display: -ms-inline-flexbox;   
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 150px;
    height: 53px;
    margin-right: 10px;
    font-weight: 600;
}

.buttons-call-action a:first-of-type:hover {
    background: #aa0303;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.buttons-call-action a:last-of-type {
    color: #000;
    border: 2px solid #CD0001;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 150px;
    height: 50px;
    margin-left: 10px;
    font-weight: 600;
}

.buttons-call-action a:last-of-type:hover {
    border-color: #000;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.uvod {
    margin: 75px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.uvod .uvod-1, 
.uvod .uvod-2 {
    width: 50%;
}

.uvod-1 {
    max-width: 395px;
}

.uvod h2 {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 20px;
}

.uvod-2 .buttons-call-action {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
}

.uvod-2 p {
    color: #5e5e5e;
}

.termin {
    background: #222222;
    padding: 45px 0;
}

.termin .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.termin h2 {
    color: #CD0001;
}

.termin p {
    color: #fff;
    font-size: 15px;
}

.termin a {
    border: none;
    margin-left: 60px;
    color: #fff;
    background: #CD0001;
    width: 150px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.termin a:hover {
    background: #aa0303;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.action-section {
    margin: 150px 0 75px;
}

.section-img {
    max-width: none;
}

.section-1,
.section-2 {
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.action-section .uvod-2 {
    width: 35%;
    margin: 0 auto;
}

.action-section p {
    font-size: 14px;
}

.action-section .buttons-call-action {
    margin: 30px 0 0;
}

.mapa {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
}

.mapa iframe {
    width: 100%;
    margin-top: 30px;
}

footer {
    background: #171616;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 50px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.footer img {
    max-width: 150px;
    margin: 0 auto;
}

.footer h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 800px;
    max-width: 750px;
    text-align: center;
    margin: 50px 0;
}

.footer .footer-phone {
    font-size: 68px;
    color: #fff;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: 1px solid #4c4c4c;
    border-bottom: 1px solid #4c4c4c;
    padding: 30px 0;
}

.footer .footer-phone i {
    margin-right: 50px;
}

.footer .footer-phone:hover {
    color: #CD0001;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.footer-info {
   width: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-orient: horizontal;
   -webkit-box-direction: normal;
       -ms-flex-direction: row;
           flex-direction: row;
   -webkit-box-pack: justify;
       -ms-flex-pack: justify;
           justify-content: space-between;
   border-bottom: 1px solid #4c4c4c;
   padding: 50px 0;
}

.footer-info div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
}

.footer-info div a {
    color: #fff;
    font-size: 14px;
}

.footer-info div a:hover {
    color: #CD0001;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.footer-info .footer-location {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer-info .footer-location a:nth-of-type(2) {
    text-decoration: underline;
}

.footer-info .footer-social {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.footer-info .footer-social a i {
    font-size: 30px;
}

.footer-info .footer-social a:nth-of-type(2) {
    margin: 0 20px;
}

.footer-info .footer-working-hours {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 14px;
}

.footer-bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px 0;
}

.footer-bottom a {
    color: #fff;
    font-size: 14px;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.footer-bottom .footer-menu a:hover {
    color: #CD0001;
    border-bottom: 1px solid #CD0001;
}

.footer-bottom .footer-menu a:nth-of-type(2) {
    margin: 0 20px;
}

.footer-bottom .footer-creator span,
.footer-bottom .footer-creator-mobile span {
    background-color: #007bff;
    padding: 10px 20px;
    margin-left: 5px;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 500;
    -webkit-transition: all linear .2s;
    -o-transition: all linear .2s;
    transition: all linear .2s;
}

.footer-bottom .footer-creator span:hover,
.footer-bottom .footer-creator-mobile span:hover {
    background-color: #0063cc;
}

.footer-creator-mobile {
    display: none;
}

.usluge-top {
    width: 100%;
    height: 200px;
    background-image: url(../picture1.jpg);
    padding-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 40px;
    margin-bottom: 100px;
}

.kontakt-top {
    background-image: url(../picture2.jpg);   
}

.usluge-top h1 {
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.kontakt-naslov {
    margin-top: 0 !important;
}














/* ------ @media ----- */

@media screen and (max-width: 970px) {
    .uvod {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .uvod .uvod-1, 
    .uvod .uvod-2 {
        width: 100%;
    }

    .uvod-2 {
        margin-bottom: 70px;
    }

    .section-1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .section-1 .uvod-2,
    .section-2 .uvod-2 {
        width: 90%;
        margin: 90px 0;
    }
}




/*Stying for small screens*/
@media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        -webkit-transform: translate(-5%, -50%);
            -ms-transform: translate(-5%, -50%);
                transform: translate(-5%, -50%);
        z-index: 2;
        -webkit-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        -webkit-transition: all 1s ease-out;
        -o-transition: all 1s ease-out;
        transition: all 1s ease-out;
        pointer-events: none;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .join-button {
        margin: 20px 30px 0;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
        margin: 30px 0;
    }
    .nav-links li:nth-child(1){
        -webkit-transition: all 0.5s ease 0.2s;
        -o-transition: all 0.5s ease 0.2s;
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        -webkit-transition: all 0.5s ease 0.4s;
        -o-transition: all 0.5s ease 0.4s;
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        -webkit-transition: all 0.5s ease 0.6s;
        -o-transition: all 0.5s ease 0.6s;
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        -webkit-transition: all 0.5s ease 0.7s;
        -o-transition: all 0.5s ease 0.7s;
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        -webkit-transition: all 0.5s ease 0.8s;
        -o-transition: all 0.5s ease 0.8s;
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        -webkit-transition: all 0.5s ease 0.9s;
        -o-transition: all 0.5s ease 0.9s;
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        -webkit-transition: all 0.5s ease 1s;
        -o-transition: all 0.5s ease 1s;
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
}

@media  screen and (max-width:768px) {
    .top1 h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .top1 h1 span {
        font-size: 34px;
    }

    .services {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }

    .services-1, .services-2 {
        padding: 50px 55px;
        width: 100%;
        box-sizing: border-box;

    }

    .naslov {
        font-size: 32px;
        margin: 70px 0 15px;
    }

    .termin h2 {
        font-size: 22px;
    }

    .termin p {
        font-size: 14px;
    }

    .nav-links li a {
        font-size: 28px;
    }

    .action-section {
        margin: 100px 0 0;
    }

    .footer h2 {
        font-size: 22px;
    }
    
    .footer .footer-phone {
        font-size: 40px;
    }

    .footer .footer-phone i {
        margin-right: 30px;
    }
}

@media  screen and (max-width:700px) {
    .footer-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .footer-info div:nth-of-type(2) {
        margin: 50px 0;
    }

    .footer-info div {
        -webkit-box-align: start !important;
            -ms-flex-align: start !important;
                align-items: flex-start !important;
    }

    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .footer-creator {
        display: none;
    }

    .footer .footer-phone {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .footer img {
        margin: 0;
    }

    .footer {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .footer h2 {
        text-align: start;
    }

    .footer-creator-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 40px;
        line-height: 45px;
    }
}

@media screen and (max-width: 590px) {
    .termin .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: stretch;
            -ms-flex-pack: stretch;
                justify-content: stretch;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .termin a {
        margin: 25px 0 0;
    }
}

@media screen and (max-width: 425px) {
    .uvod h2 {
        font-size: 28px;
    }
    
    .uvod-2 p {
        font-size: 14px;
    }

    .section-1 .uvod-2, 
    .section-2 .uvod-2 {
        margin: 50px 0;
    }

    .footer h2 {
        font-size: 19px;
    }

    .footer .footer-phone {
        font-size: 34px;
    }

    .footer .footer-phone i {
        margin-right: 20px;
    }
}




/*Animating Hamburger Icon on Click*/
.toggle .line1{
    -webkit-transform: rotate(-45deg) translate(-5px,6px);
        -ms-transform: rotate(-45deg) translate(-5px,6px);
            transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    -webkit-transform: rotate(45deg) translate(-5px,-6px);
        -ms-transform: rotate(45deg) translate(-5px,-6px);
            transform: rotate(45deg) translate(-5px,-6px);}