/*
Theme Name: inlogtheme
Theme URI: inlogistics.kz
Description: Theme created by webspark and adapted by akukaz.
Version: 1.0
Author: webspark+akukaz
Author URI: webspark.kz
*/

/*  ==========  GENERAL STYLES  ==========  */

:root{
    --logo-orange: rgba(241,88,42);
    --text-title: #374957;
    --text-gray: #5f7d95;
    --link-blue: #0099CC;
    --box-shadow: 0 0 40px rgb(95 125 149 / 25%);
}

*{
    margin: 0;
    padding: 0;
}
html{scroll-behavior: smooth; height: 100vh;}
body{font-family: 'Gotham Pro', sans-serif; height: 100%; padding-top: 70px;}


.row{float: left;width:100%;}
.text{color: var(--text-gray) !important;}
.anchor{transform: translateY(-100px);}
.strong{font-weight: 600;}
.flex-centered{width: 100%;display: flex;justify-content: center;}
.box-shadowed{box-shadow: var(--box-shadow);}


.container{
    width: 100%;
    max-width: 1180px;
}
.blackout {
    float: left;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 60%);
}
section{
    width: 100%;
    padding: 50px 0;
}
.button{
    float: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 28px;
    padding-right: 64px;
    box-sizing: border-box;
    border-radius: 100px;
    border: 1px solid transparent;
    background: var(--logo-orange);

    color:  #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s all;
}
.button .right-arrow{
    position: absolute;
    right: 14px;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 32px;
    height: 32px;
    border-radius: 100px;
    background: #fff;
    color: #000;
}
.button:hover{background: #f0f0f0; color:  var(--logo-orange);}

.text-header{
    width: 100%;
    font-size: 28px;
    padding-bottom: 40px;
    color: var(--logo-orange);
}

.page_header{
    width: 100%;
    margin-bottom: 70px;
    position: relative;
    overflow: hidden;
}
.page_header span{
    float: left;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
}
.page_header span:before, .page_header span:after{
    content: '';
    width: 80px;
    height: 3px;
    background: var(--text-title);
    position: absolute;
    top: 50%;
}
.page_header span:before{
    left: 0;
    transform: translate(-130%, -50%);
}
.page_header span:after{
    right: 0;
    transform: translate(130%, -50%);
}
.orange-light{color: #F1582A;text-shadow: 0 0 25px rgba(241,88,42,.5);}
i.iconed{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 7px;
    box-sizing: border-box;
    background: #fff;
    color: var(--logo-orange);

    font-size: 22px;
    text-decoration: none;
}


input.invalid_input{border-left: 4px solid red !important}
form .alert-box{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    max-height: 350px;
}
form .alert-box .alert{
    float: left;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    margin: 0;
    padding: 14px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    color: #fff !important;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}
form .alert-box .alert.error{background-color: #f55;}
form .alert-box .alert.no_error{background-color: #8ce99a;}
@media screen and (max-width: 1200px){.container{padding: 0 20px;box-sizing: border-box;}}
@media screen and (max-width: 650px){*{cursor: default;}h2.page_header span{text-align:center;}}
/*  ==========  END GENERAL STYLES  ==========  */





/*  ==========  HEADER STYLES  ==========  */
header{
    width: 100%;
    height: 70px;
    padding: 10px 20px;

    display: flex;
    align-items: center;

    box-sizing: border-box;
    box-shadow: 0 0 10px rgb(95 125 149 / 25%);
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
}
header .hide{
    width: 100%;
}
header .desktop{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
header .mobile{
    width: 100%;
}

header .logo img{height: 48px;}


header .menu ul{
    display: flex;
    gap: 18px;
    list-style: none;
}
header .menu li a{
    text-transform: uppercase;
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .5s all;
}
header .menu li a:hover{
    color: #000;
}


header .language select{
    font-size: 16px;
    border: none;
    padding: 8px;
    outline: none;
    cursor: pointer;
}


header .phone{
    display: flex;
    flex-direction: column;
}
header .phone .number{
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    transition: .3s;
}
header .phone .number:hover{color: #f1582a}
header .phone .order-call{
    background: transparent;
    border: none;

    color: #f1582a;
    cursor: pointer;
}
header .phone .order-call:hover{color: #f7ab94}

header .contact-me{position: relative;}
header .contact-me .close{
    color: #999;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
header .contact-me .close:hover{color: red;}
header .contact-me .top{
    color: var(--link-blue);
    border-bottom: 1px dashed var(--link-blue);
    cursor: pointer;
}
header .contact-me .dropdown{
    position: absolute;
    top: -10px;
    right: 0;
    width: 230px;
    background: #fff;
    padding: 40px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid #ddd;
}
header .contact-me .line{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
header .contact-me .name{font-weight: 700;}
header .contact-me a{
    color: var(--link-blue);
    text-decoration: none;
}
header .contact-me a:hover{
    border-bottom: 1px dashed var(--link-blue);
}


@media screen and (max-width: 1150px){
    header .menu ul{gap: 7px;}
    header .menu li a{font-size: 12px;}
    header .phone .number{font-size: 17px;}
}
@media screen and (max-width: 980px){
    header .logo img{height: 32px;}
    header .desktop .contact-me{display: none !important;}
}
@media screen and (max-width: 780px){
    body{padding-top: 50px;}
    header{height: 50px;}
    header .logo img{height: 50px;}
    header .hide{
        display: none;
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: max-content;
    }
    header .desktop{
        padding: 50px 10px;
        box-sizing: border-box;
        gap: 25px;

        flex-direction: column;
        justify-content: unset;

        background: #EAEAEA;
        box-shadow: 0 0 10px rgb(95 125 149 / 25%);
    }
    header .menu ul{flex-direction: column;}
    header .menu li a{font-size: 18px;}

    header .mobile{
        display: flex !important;
        justify-content: space-between;
        z-index: 2;
    }
}
/*  ==========  END HEADER STYLES  ==========  */





/*  ==========  FOOTER STYLES  ==========  */
footer{
    display: flex;
    justify-content: center;

    width: 100%;
    background: #222733;

    color: #93959b; 
}

footer .container{
    display: flex;
    flex-direction: column;
}

footer .line{
    width: 100%;
    border-bottom: 1px solid #4e5058;
    padding: 20px 0;
    
    display: flex;
    justify-content: space-between;
}

footer .line:first-child img{height: 40px;}

footer .line:first-child div{
    display: flex;
    align-items: center;
}
footer .form-wrap{
    width: 290px;
}
footer .form-wrap label{
    color: #fff;
    font-size: 12px;
}

footer #footer-number{
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;

    position: relative;
}

footer #footer-number input{
    width: 100%;
    padding: 15px;
    padding-right: 48px;
    box-sizing: border-box;
    border-radius: 100px;
    outline: none;
    border: 0;
}
footer #footer-number input:focus{
    background: #ccddff
}

footer #footer-number button{
    position: absolute;
    top: 2.5px;
    right: 4px;
    padding: 0;

    width: 40px;
    height: 40px;
}

footer #footer-number button .right-arrow{
    left: 3px;
}


footer .line:nth-child(2){
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

footer .part{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer .part .title{
    width: 100%;
    font-size: 28px;
    color: #FFF;
}

footer .part span.text{
    display: block;
    margin-top: 20px;
    width: 100%;
    color: #93959b !important;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer a:hover{border-bottom: 1px dashed #fff;}
@media screen and (max-width: 780px){
    footer .line:nth-child(2){grid-template-columns: 1fr;}
}
@media screen and (max-width: 480px){
    footer .line{flex-direction: column; gap: 10px;}
    footer .form-wrap{width: 100%;}
    footer .line{font-size: 14px;}
}
/*  ==========  END FOOTER STYLES  ==========  */





/*  ==========  SPECIAL OFFER SECTION  ==========  */
#special-offer{
    margin: 100px 0;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 20px;

    position: relative;
}
#special-offer:before{
    content: '';
    width: 15vw;
    height: 15vw;
    max-width: 200px;
    max-height: 200px;
    border-radius: 100px;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-35%, -30%);
    z-index: -1;
    background: linear-gradient(to bottom, #EFC120, #E9285F);
    box-shadow: 0 0 65px rgba(241,88,42,1);

    animation: rotator 4s infinite;
}
@keyframes rotator {
    0%{
        transform: translate(-35%, -30%) rotate(0deg);
    }
    50%{
        box-shadow: 0 0 65px rgba(241,88,42,.5);
    }
    100%{
        transform: translate(-35%, -30%) rotate(360deg);
    }
}
#special-offer .title{
    font-size: 27px;
    color: var(--logo-orange);
}
#special-offer #interview-form{
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px;
}
#special-offer .input-wrap{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
#special-offer .group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#special-offer .group input{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 20px 12px;
    box-sizing: border-box;
    font-family: 'Gotham Pro', sans-serif;
    outline: none;
}
#special-offer .group input:focus{background: #f9f9f9}

#special-offer .button{
    float: right;
    border: 0;
    padding: 14px 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer
}
#interview-form .alert-box{
    width: 100%;
    max-width: 450px;
    max-height: 350px;
}
#interview-form .alert-box .alert{
    width: 100%;
    margin-top: 15px;
    text-align: center;
    margin: 0;
    padding: 14px 12px;
    box-sizing: border-box;
    border-radius: 4px;
    color: #fff !important;
    font-size: 14px;
    font-family: 'Gotham Pro', sans-serif;
}
#interview-form .alert-box .alert.error{background-color: #f55;}
#interview-form .alert-box .alert.no_error{background-color: #8ce99a;}

@media screen and (max-width: 800px){
    #special-offer .title{font-size: 24px;}
    #special-offer .text{font-size: 14px;}
    #special-offer .input-wrap{grid-template-columns: 1fr; gap: 20px;}
    #special-offer .group span{font-size: 14px;}
    #special-offer .button{width: 100%;justify-content: center;}
}
/*  ==========  END SPECIAL OFFER SECTION  ==========  */





/*  ==========  ABOUT STYLES  ==========  */
#about p{
    font-size: 20px;
}
#about .block{
    width: 100%;
    display: flex;
    gap: 25px;
}
#about img{
    width: 280px;
}
#about ul{
    margin-top: 25px;
    padding-left: 25px;
    box-sizing: border-box;
    font-size: 22px;
    color: var(--text-gray);

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

#counters .block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#counters .block .item{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    box-sizing: border-box;
    /* border: 1px solid rgba(0 0 0 / 10%); */
    background-color: #f0f5f9;
}
#counters .block h3{
    font-size: 28px;
    text-align: center;
    color: var(--logo-orange);
    text-shadow: 0 0 65px rgb(241 88 42);
}
#counters .block span{
    text-align: center;
    font-size: 18px;
}
@media screen and (max-width: 780px){
    #about img{display: none;}
    #about ul{grid-template-columns: 1fr 1fr}
    #counters .block{grid-template-columns: 1fr 1fr}
}
@media screen and (max-width: 480px){
    #about ul{grid-template-columns: 1fr;}
    #counters .block{grid-template-columns: 1fr;}
}
/*  ==========  END ABOUT STYLES  ==========  */





/*  ==========  SRVICE STYLES  ==========  */
img{max-width: 100%;}
.service-header{
    width: 100%;
    font-size: 28px;
}
.service-header i{
    color: var(--logo-orange);
}
.service{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.service img{border-radius: 10px;}
.service article p{
    padding-bottom: 20px;
    text-indent: 20px;
}
.service article ul{padding-left: 20px;}
.button-wrap{
    display: flex;
    justify-content: flex-end;
    padding-bottom: 50px;
}
@media screen and (max-width: 780px){
    .service{
        grid-template-columns: 1fr;
    }
}
/*  ==========  END SRVICE STYLES  ==========  */





/*  ==========  SERVICES STYLES  ==========  */
.hovered-boxes .box-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}
.hovered-boxes .box-wrap:before, .hovered-boxes .box-wrap:after{
    content: '';
    position: absolute;
    background: #ddd;
}
.hovered-boxes .box-wrap:before{
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.hovered-boxes .box-wrap:after{
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.hovered-boxes .box-background{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 40% !important;
    transition: 0.3s;
    filter: saturate(0);
}
.hovered-boxes .mobile-img{display: none;}
.hovered-boxes .box{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    box-sizing: border-box;
    transition: .3s;
    border: 1px solid transparent;

    background-repeat: no-repeat !important;
    background-size: 45% !important;
    background-position: right bottom !important;
    position: relative;
}
.hovered-boxes .box.active .sub{
    color: #708086;
}

.hovered-boxes .title{
    font-size: 18px;
    font-weight: 600;
}
.hovered-boxes .sub{
    width: 80%;
    font-size: 12px;
    color: transparent;
    transition: 0.3s;
}
.hovered-boxes .link{
    color: var(--logo-orange);
    text-decoration: none;
    font-size: 12px;
    transition: .3s all;
}
.hovered-boxes .link:hover{
    color: var(--link-blue);
}
@media screen and (max-width: 780px){
    .hovered-boxes .box-wrap{
        grid-template-columns: 1fr;
    }
    .hovered-boxes .box-wrap:before, .hovered-boxes .box-wrap:after{display: none;}
    .hovered-boxes .box{border-bottom: 1px solid #ddd;}
    .hovered-boxes .mobile-img{
        display: block;
        width: 100px;
        position: absolute;
        top: -35px;
        left: 40px;
        filter: saturate(0);
    }
    .hovered-boxes .box-background{display: none;}
    .hovered-boxes .sub{color: #708086;}
}
@media screen and (max-width: 480px){
    .hovered-boxes .box{padding: 40px 20px;}
    .hovered-boxes .mobile-img{
        top: unset; 
        left: unset; 
        bottom: 40px;;
        right: 20px;
    }
}
/*  ==========  END SERVICES STYLES  ==========  */





/*  ==========  CONTACT STYLES  ==========  */
#orderform .sub-title{color: #646464;}
#contact-form{
    display: flex;
    flex-direction: column;
    gap: 7px;

    width: 500px;
    margin-top: 20px;
}
#contact-form input{
    padding: 15px;
    box-sizing: border-box;
    
    border: 1px solid #d3d3d3;
    outline: none;
    font-size: 16px;
    font-family: 'Gotham Pro', sans-serif;
}
#contact-form .group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
#contact-form .order-text{
    text-align: right;
    color: #646464;
}
#contact-form button{
    border: none;
    padding: 15px 50px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    background-color: var(--logo-orange);
    cursor: pointer;
    transition: .3s all;
}

#contacts .title, #orderform .title{
    font-size: 32px;
}
#contacts .boxes{
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 18px;
    color: #646464;
}
#contacts .box{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#contacts .box b{color: #000;}
#contacts .box a{
    color: var(--link-blue);
    text-decoration: none;
}
#contacts .box a:hover{color: var(--logo-orange);}
@media screen and (max-width: 540px){
    #contact-form{width: 100%;}
    #contact-form .group{grid-template-columns: 1fr;}
    #contacts .boxes{grid-template-columns: 1fr; gap: 45px;}
}
/*  ==========  END CONTACT STYLES  ==========  */





/*  ==========  EMOLOYERS STYLES  ==========  */
#employers .block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
#employers .card{
    background: #f6f7f8;
    border-radius: 15px;
    padding: 22px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
#employers .name{
    font-weight: 700;
    font-size: 22px;
}
#employers .role{
    color: var(--logo-orange);
    margin-top: -15px;
}
#employers .contacts{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#employers .contacts a{
    padding: 16px;
    box-sizing: border-box;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-left: 2px solid var(--link-blue);
    border-radius: 5px;
    background: #fff;
}
#employers .contacts a:nth-child(2){
    border-left: 2px solid #4DC247;    
}
#employers .contacts a:nth-child(2) .big{
    color: #4DC247;
}
#employers .contacts .big{
    font-weight: 700;
    font-size: 14px;
    color: var(--link-blue);
}
#employers .contacts .mini{
    font-size: 12px;
    color: #708086;
}
@media screen and (max-width: 980px){
    #employers .block{grid-template-columns: 1fr 1fr}
}
@media screen and (max-width: 530px){
    #employers .block{grid-template-columns: 1fr}
}
/*  ==========  END EMOLOYERS STYLES  ==========  */





/*  ==========  HEADER STYLES  ==========  */

/*  ==========  END HEADER STYLES  ==========  */





/*  ==========  HEADER STYLES  ==========  */

/*  ==========  END HEADER STYLES  ==========  */





/*  ==========  HEADER STYLES  ==========  */

/*  ==========  END HEADER STYLES  ==========  */

/*  ==========  MAIN BANNER STYLES  ==========  */
#main-banner{
    display: flex;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;

    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
#main-banner .background{
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: url('./assets/main-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* filter: saturate(0); */
}
#main-banner .text-block{
    display: flex;
    flex-direction: column;
    gap: 30px;

    width: 550px;
    background: rgba(0 0 0 / 25%);
    border-radius: 10px;
    padding: 25px;
    box-sizing: border-box;

    color: #fff;
}
#main-banner .title{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
}
#main-banner .icons{
    display: flex;
    gap: 20px;
}
#main-banner .icons a{
    text-decoration: none;
}
@media screen and (max-width: 600px){
    #main-banner .text-block{width: 100%;}
    #main-banner .title{font-size: 28px;}
    #main-banner i.iconed{font-size: 18px;}
}
/*  ==========  END MAIN BANNER STYLES  ==========  */


/*  ==========  SHORT STYORY STYLES  ==========  */
#short-story{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
#short-story img{
    width: 100%;
    border-radius: 10px;
    filter: saturate(0);
}
#short-story h2{
    font-size: 38px;
}
#short-story h2 span{
    color: var(--logo-orange);
    text-shadow: 0 0 65px rgb(241 88 42);
}
#short-story .block{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media screen and (max-width: 780px){
    #short-story{grid-template-columns: 1fr;}
}
/*  ==========  END SHORT STYORY STYLES  ==========  */





/*  ==========  HEADER STYLES  ==========  */

/*  ==========  END HEADER STYLES  ==========  */