*{
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #ffba08;
    --grey: #2a3135;
}

body {
    background-color:  var(--orange);
    margin: 0;
    overflow-x: hidden;
}

/*------------------ nav bar ------------------*/

.nav-bar{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 9;
}

.st-line{
    height: 60px;
    padding: 10px 50px;
    background-color: rgba(42,49,53,.95);
    display: flex;
    justify-content: space-between;
}

.industry{
    color: var(--grey);
    font-size: 22px;
    display: block;
    float: left;
    font-weight: 500;
}

.nd-line{
    height: 30px;
    padding: 15px 50px;
    background-color: var(--orange);
}

.st-line .logo img{
    width: 310px;
    margin-top: -5px;
}

.st-line ul, .nd-line ul{
    list-style-type: none;
}

.st-line ul{
    margin-top: 18px;
}

.st-line li{
    display: inline;
    color: #ffffff;
    margin: 0 20px;
    font-size: 22px;
}

.st-line a{
    color: #ffffff;
}

.st-line i{
    margin-right: 10px;
}

.st-line strong{
    text-transform: uppercase;
}

.nd-line li {
    display: inline;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 24px;
    float: right;
    margin: 0 15px;
}

.nd-line li a{
    text-decoration: none;
    color: var(--grey);
    cursor: pointer;
}

.nd-line li a:hover{
    color: #ffffff;
}

.nd-line li .active{
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.hamburger{
    display: none;
}

@media (max-width: 1180px) {
   .industry{
       display: none;
   }
}

@media (max-width: 1077px) {

    .st-line{
        padding: 10px 0;
        flex-direction: column;
    }

    .st-line .logo img{
        width: 250px;
        margin-top: -5px;
        margin-left: 20px;
    }

    .industry{
        display: block;
        position: absolute;
        left: 220px;
        top: 5px
    }

    #contact-navbar{
        background-color: var(--orange);
        width: 100%;
        padding: 10px 0;
    }

    #contact-navbar li{
        display: block;
        width: 100%;
        font-size: 20px;
    }

    .hamburger{
        color: #FFFFFF;
        font-size: 32px;
        float: right;
        display: block;
        margin-right: 20px;
    }

    .nd-line{
        display: none;
        height: 100vh;
        position: absolute;
    }

    .menu{
        padding-top: 20px;
        width: 100%;
    }

    .nd-line .menu li{
        width: 100%;
        font-size: 32px;
        line-height: 48px;
    }

    .nd-line .menu li a{
        color: #FFFFFF;
    }
}

@media (max-width: 400px) {
    #contact-navbar li{
        font-size: 16px;
    }
    .industry{
        left: 190px;
        font-size: 14px;
        width: 150px;
        top: 0;
        line-height: 16px;
    }
}

/*------------------ header ------------------*/


.header{
    width: 100%;
    height: 100vh;
    background-color: #ffffff
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.intro {
    position: relative;
    padding: 18vw 0 0 5%;
}

.intro-text {
    position: absolute;
}

.rectangle {
    border: 15px solid var(--orange);
    background-color: transparent;
    width: 350px;
    height: 72vh;
}

.intro h1, .intro h2{
    color: #ffffff;
    margin-left: 50px;
}

.intro h1{
    text-transform: uppercase;
    font-size: 84px;
    line-height: 64px;
    font-weight: 900;
    margin-top: 25%;
}

.intro h2{
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 50px;
    padding-left: 10px;
    background-color: rgba(0,0,0,.5);
}

.intro .contact{
    position: relative;
    padding: 15px 35px;
    text-transform: uppercase;
    color: white;
    border: 2px solid var(--grey);
    background-color: var(--grey);
    font-size: 28px;
    font-weight: 500;
    margin-left: 50px;
    cursor: pointer;
}

.intro .contact:hover{
    border: 2px solid var(--orange);
    background-color: var(--orange);
}

.intro a,
.intro a:hover{
    text-decoration: none;
}


@media (max-width: 768px) {
    .header{
        height: 85vh;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    .overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80vh;
        background-color: rgba(0, 0, 0, .2);
        z-index: 1;
    }
    .video-background {
        position: absolute;
        height: 80vh;
        width: auto;
        left: -150px;
    }
    .intro {
         padding: 75vw 0 0 5%;
        z-index: 3;
     }

    .rectangle {
        border: 8px solid var(--orange);
        width: 250px;
        height: 45vh;
    }

    .intro h1, .intro h2{
        margin-left: 30px;
    }

    .intro h1{
        font-size: 42px;
        line-height: 42px;
        font-weight: 900;
        margin-top: 20%;
    }

    .intro h2{
        font-size: 22px;
        margin-bottom: 50px;
    }

    .intro .contact{
        font-size: 22px;
        margin-left: 30px;
    }
}


/*------------------ courses ------------------*/


.courses-offer{
    background-color: #ffffff;
}

.container{
    width: auto;
    padding: 150px 80px 0 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.container .box {
    padding: 20px;
    width: calc(100% / 4 - 55px);
    aspect-ratio: 1 / 1;
    flex: 0 1 calc(100% / 4 - 55px);
    background-color: #18181b;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.container .box a{
    text-decoration: none;
}

.container .box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: filter 0.3s ease;
    filter:  brightness(70%);
}

.container .box:hover img {
    filter: brightness(100%);
}

.container .first{
    background-color: var(--orange);
    justify-content: left;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.container .last{
    background-color: var(--grey);
}

.container .box span {
    font-size: 24px;
    font-weight: 600;
    color: white;
    position: relative;
    z-index: 1;
}

.container .first h2{
    margin-top: auto;
    color: #ffffff;
    font-size: 58px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 58px;
    text-align: left;
}

@media (max-width: 768px) {

    .container{
        padding: 50px 20px 0 20px;
        gap: 10px;
    }

    .container .box {
        width: calc(100% / 2 - 35px);
        flex: 0 1 calc(100% / 2 - 35px);
        padding: 15px;
    }

    .container .box span {
        font-size: 18px;
        font-weight: 600;
    }

    .container .first h2{
        font-size: 32px;
        font-weight: 800;
        line-height: 34px;
    }

    .courses-offer h1{
        margin-top: 50px;
        font-size: 42px !important
    }
    .courses-offer span{
        font-size: 18px !important
    }
}

/*------------------ pricing ------------------*/

.pricing-list{
    margin: auto;
}

.pricing-list a{
    text-decoration: none;
    color: var(--grey);
    cursor: pointer;
}

.pricing-list a:hover{
    color: var(--orange);
}

.pricing-list, .pricing-list td{
    border: 1px solid var(--grey);
    border-collapse: collapse;
}

.pricing-list td{
    padding: 10px 55px 10px 15px;
}

/*------------------ standard-of-training ------------------*/


.standard-of-training{
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #ffffff;
}

.standard-of-training img {
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
}

.standard-of-training .container{
    width: 50%;
    padding: 150px 70px;
    text-align: right;
    margin-left: auto;
    position: absolute;
    top: 50%;
    right:0;
    transform: translate(0, -50%);
    z-index: 1;
}

.standard-of-training .container h2,
.training-locations .container h2,
.contact-us .container h2,
.trust-us .container h2{
    font-size: 52px;
    color: #ffffff;
    margin-left: auto;
    display: block;
    width: 100%;
    line-height: 52px;
}

.hr-line{
    border-top: 3px solid var(--orange);
    width: 300px;
    margin: 0 0 50px auto;
}

.left-line{
    margin: 20px 0 50px 0;
}

.center-line{
    margin: 0 auto 50px auto;
}

.standard-of-training .container span,
.training-locations .container span,
.contact-us .container span,
.trust-us .container span{
    font-size: 28px;
    color: #ffffff;
    font-weight: 300;
    display: block;
    margin-bottom: 50px;
}

.learn-more{
    width: 200px;
    border: 1px solid var(--orange);
    background-color: var(--orange);
    text-transform: uppercase;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    padding: 15px 25px;
}

.learn-more:hover{
    background-color: transparent;
    color: var(--orange);
}

.standard-of-training a{
    text-decoration: none;
    margin-left: auto;
}

@media (max-width: 768px) {
    .standard-of-training{
        height: 800px;
        width: 100%;
        overflow: hidden;
    }

    .standard-of-training img {
        width: auto;
        height: 100%;
        left:-120px
    }

    .standard-of-training .container{
        width: 65%;
        padding: 150px 20px 80px 20px;
    }

    .standard-of-training .container h2,
    .training-locations .container h2,
    .contact-us .container h2,
    .trust-us .container h2{
        font-size: 32px;
        line-height: 36px;
    }
    .hr-line{
        width: 150px;
    }

    .standard-of-training .container span,
    .training-locations .container span,
    .contact-us .container span,
    .trust-us .container span{
        font-size: 18px;
        margin-bottom: 30px;
    }

    .learn-more{
        width: 150px;
        font-size: 22px;
        padding: 15px 25px;
    }
}


/*------------------ training-locations ------------------*/


.training-locations{
    width: 100%;
    background-color: #ffffff;
    position: relative;
    padding: 0 0 150px 0;
}

.training-locations .container{
    width: 75%;
    margin: auto;
}

.training-locations .left{
    padding: 80px 0;
    flex: 2;
}

.training-locations .right{
    text-align: right;
    flex: 1;
}

.training-locations img {
    width: 300px;
}

.training-locations .container h2,
.trust-us .container h2{
    color: var(--grey);
}

.training-locations .container span,
.trust-us .container h2{
    color: var(--grey);
}

@media (max-width: 768px) {
    .training-locations img {
        width: 200px;
    }
    .training-locations .left{
        padding: 80px 0 20px 0;
    }
    .training-locations .right{
        text-align: center;
    }
}


/*------------------ trust-us ------------------*/

.trust-us{
    background-color: #ffffff;
}

.trust-us .container{
    width: 90%;
    padding: 0 70px 150px 70px;
    margin: auto;
    text-align: center;
}

.trust-us .testimonials{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-box{
    flex: 0 0 calc(33% - 70px);
    background-color:#495867;
    padding: 30px;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/img/quotationmarks.png');
    text-align: left;
}

.testimonial-box .testimonial-title{
    font-weight: 800 !important;
    text-transform: uppercase;
}

.testimonial-box .testimonial-content{
    font-weight: 300 !important;
    font-size: 20px !important;
}

.testimonial-box .testimonial-author{
    font-weight: 800 !important;
    text-align: right;
    margin-bottom: 0 !important;
}

.hidden-box{
    display: none;
}

@media (max-width: 768px) {

    .trust-us .container{
        width: 90%;
        padding: 0 20px 150px 20px;
    }

    .trust-us .testimonials{
        gap: 10px;
    }

    .testimonial-box{
        width: 100%;
        flex: 0 0 calc(100% - 40px);
        padding: 20px;
    }

    .hidden-box{
        display: block;
    }
}


/*------------------ contact-us ------------------*/


.contact-us{
    width: 100%;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-bg1{
    background-image: url('/img/contact.jpg');
}

.contact-bg2{
    background-image: url('/img/courses/other/book-course.jpg');
}

.contact-us .container{
    padding: 150px 90px;
}

.contact-us .left, .contact-us .right{
    flex: 1;
}

.contact-us .right {
    text-align: right;
}

.contact-us .container .title-st{
    color: var(--grey);
    margin-bottom: -5px;
}

.contact-us .container .title-nd{
    color: var(--orange);
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 30px;
}

.contact-us .container .title-nd p{
    display: inline-block;
}

.contact-us .container span{
    color: var(--grey);
}

.contact-us input,
.contact-us textarea{
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 22px;
    border: none;
    outline: none;
}

.contact-us textarea{
    height: 150px;
    resize: none;
    margin-bottom: 15px;
}

.contact-us a{
    color: var(--grey);
    text-decoration: none;
    border-bottom: 1px solid CurrentColor;
}

.contact-us a:hover{
    color: #ffffff;
}

.contact-us #submitBtn{
    width: 100%;
    padding: 15px 25px;
    background-color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
}

.contact-us #submitBtn:hover{
    background-color: var(--grey);
    border: 1px solid var(--grey);
    color: #ffffff;
    cursor: pointer;
}

input[type="checkbox"]{
    opacity: 0;
}

.checkbox-label {
    display: block;
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    margin-top: -25px;
}

.checkbox-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 30px;
    height: 30px;
    border: none;
    background-color: #fff;
    border-radius: 5px;
}

.checkbox-label::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 4px;
    width: 8px;
    height: 16px;
    border: solid var(--orange);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: none;
}

#consent:checked + .checkbox-label::after {
    display: block;
}

#responseMessage{
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 10px;
    font-weight: 500;
    color: #ffffff;
}

select {
    width: 100%;
    padding: 15px 25px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 22px;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.success-message{
    background-color: rgba(6,214,160,.5);
}
.error-message{
    background-color: rgba(239,71,111,.5);
}

@media (max-width: 768px) {
    .contact-us .container {
        padding: 100px 40px;
    }

    .contact-us {
        background-size: auto 1000px;
        background-position: calc(100% + 100px) center;
    }

    .contact-us .left, .contact-us .right {
        flex: 0 0 100%;
    }

    .contact-us .container {
        display: flex;
        flex-direction: row;
    }

    .contact-us .left {
        order: 2;
    }

    .contact-us .right {
        order: 1;
    }
}

@media (max-width: 460px) {
    .contact-us .container {
        padding: 80px 15px;
    }
}

/*------------------ COURSES SUBPAGES ------------------*/


.course-header{
    position: relative;
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: inline-block;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: auto;
    display: block;
}

.course-title{
    position: absolute;
    bottom: 50px;
    right: 50px;
    text-align: right;
}

.course-name{
    padding: 20px 30px;
    color: #ffffff;
    background-color: var(--grey);
    text-transform: uppercase;
    font-weight: 600;
}

.course-type{
    padding: 10px 30px;
    background-color: var(--orange);
    text-transform: uppercase;
}

.course-type h2{
    font-weight: 200;
    font-size: 20px;
}

.course-description {
    background-color: #ffffff;
}

.background{
    background-image: url('/img/courses/other/bg.png'),
                      linear-gradient(-45deg, #DBD9DB, #E5EBEA, #DBD9DB);
}

.background2{
    background-image: url('/img/courses/other/bg.png');
    padding-bottom: 150px;
}

.course-description .container{
    padding: 150px 80px;
}

.course-intro {
    display: flex;
    align-items: baseline;
    padding-bottom: 50px;
}

.text-container {
    font-size: 32px;
    line-height: 30px;
    margin-left: 20px;
    color: var(--grey);
}

.square {
    width: 35px;
    height: 35px;
    background-color: var(--orange);
    align-self: flex-end;
    margin-bottom: 4px;
}

.white-font{
    color: #ffffff !important;
}

.white{
    background-color: #ffffff;
}

.grey{
    background-color: var(--grey);
}

.course-details{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.course-info{
    flex: 0 0 49%;
    box-sizing: border-box;
    border: 2px solid var(--orange);
    padding: 15px;
    display: flex;
    flex-direction: row;
}

.course-info .info-left i{
    background-color: var(--orange);
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.course-add-info{
    width: 100%;
    font-size: 20px;
}

.course-add-info span{
    display: block;
    padding-bottom: 20px;
}

.info-left, .info-right{
    font-size: 16px;
    height: auto;
}

.info-left{
    padding: 0 20px 0 10px;
}

.info-right{
    display: flex;
    flex-direction: column;
    padding-left: 5px;
}

.info-right strong{
    font-size: 18px;
    line-height: 30px;
}

.info-right span{
    display: block;
}

.info-left i {
    color: #ffffff;
    font-size: 50px;
}

.course-objectives{
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

.objective {
    padding: 25px;
    width: calc(100% / 4 - 65px);
    aspect-ratio: 1 / 1;
    flex: 0 1 calc(100% / 4 - 65px);
    background-color: rgba(2555,255,255,.5);
    color: var(--grey);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-size: 22px;
}

.courses-offer h1{
    width: 100%;
    display: block;
    padding-top: 80px;
    font-weight: 900;
    font-size: 62px;
    text-align: center;
    line-height: 62px;
    text-transform: uppercase;
    color: var(--grey)
}


.background .courses-offer h1{
    color: #ffffff;
}

.background2 .courses-offer h1{
    color: var(--grey);
}

.courses-offer span{
    text-align: center;
    width: 80%;
    margin: auto;
    font-size: 20px;
}

.background2 .courses-offer span{
    color: var(--grey) ;
}

.background .courses-offer span{
    color: #ffffff;
}

.hr-rule{
    width: 100%;
    margin-bottom:80px;
}

.rule{
    border-bottom: 3px solid var(--orange);
    width: 10%;
    margin: auto;
}

.course-faq{
    background-color: #ffffff;
}

.faq-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    width: 100%;
    font-size: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: #A0AAB2;
}

.faq-answer ul{
    margin-left: 20px;
}

.rotate {
    transform: rotate(180deg);
}


@media (max-width: 1280px) {
    .course-image {
        margin-top: 100px;
    }
}

@media (max-width: 1159px) {
    .course-info {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {

    .course-header{
        max-height: 90vh;
    }

    .course-image {
        width: auto;
        height: 100%;
        overflow: hidden;
        margin-left: -800px;
    }

    .course-title{
        right: 20px;
    }

    .course-name h1{
        font-size: 24px;
    }

    .course-description .container{
        padding: 100px 30px;
    }

    .course-info {
        flex: 0 0 100%;
    }

    .course-info .info-left i{
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .text-container {
        font-size: 24px;
        line-height: 28px;
        margin-left: 20px;
    }

    .objective {
        padding: 15px;
        width: calc(100% / 2 - 40px);
        flex: 0 1 calc(100% / 2 - 40px);
        font-size: 18px;
        aspect-ratio: 1 / 1.6; !important;
    }
}

@media (max-width: 465px) {
    .course-image {
        height: 80%;
        margin-left: -400px;
    }
    .course-title{
        right: 0;
        opacity: 80%;
    };
    .objective {
        font-size: 14px;
    }
    .faq-item {
        font-size: 16px;
    }
    .course-add-info{
        font-size: 16px;
    }
    .course-description .container{
        padding: 80px 15px;
    }
}

@media (max-width: 375px) {
    .objective {
        width: calc(100% - 30px);
        aspect-ratio: 1 / 1; !important;
        flex: 0 0 calc(100% - 30px);
        font-size: 18px;
    }
}
/*------------------ about us, book course ------------------*/


.about-us, .book-training{
    width: 100%;
    display: flex;
    background-color: #ffffff;
}

.about-us{
    padding-bottom: 100px;
}

#map {
    height: 600px;
    width: 50%;
}

.company-description{
    flex: 1;
    padding: 100px 50px;
}

.company-description h1{
    text-transform: uppercase;
}

.about-us .company-description h1{
    margin-bottom: 30px;
}

.book-training .company-description h2{
   color: var(--orange);
    margin-bottom: 30px;
}

.company-description span{
    font-size: 20px;
}

.book-training td{
    padding: 10px;
    height: 100%;
    line-height: 28px;
    font-size: 22px;
    vertical-align: top
}

.book-training i{
    color: var(--gray);
    font-size: 26px;
    margin-right: 8px
}

.contact-us input,
.contact-us textarea{
    width: calc(100% - 50px);
}

.training-form input,
.training-form textarea,
.contact-bg2 input,
.contact-bg2 textarea{
    width: 100%;
}

@media (max-width: 768px) {

    .company-description {
        padding: 80px 30px;
    }

    .about-us, .book-training {
        display: block;
    }

    #map {
        height: 500px;
        width: 100%;
    }

    .company-description h1 {
        font-size: 24px;
    }

    .company-description span {
        font-size: 18px;
    }

    .book-training i {
        font-size: 24px;
        margin-right: 5px
    }

    .book-training td {
        padding: 5px;
        line-height: 24px;
        font-size: 18px;
    }

    .book-training td a {
        color: var(--grey)
    }
}

@media (max-width: 460px) {
    .contact-us input,
    .contact-us textarea,
    .contact-us select{
        font-size: 16px;
    }
    .contact-us #submitBtn{
        font-size: 18px;
    }
}
/*------------------ footer ------------------*/


.footer{
    width: 100%;
    color: #ffffff;
}

.info{
    background-color: #232323;
    display: flex;
    justify-content: space-between;
    padding: 50px 50px;
}

.footer-colum{
    flex: 1;
}

.footer .company img{
    width: 180px;
}

.footer .company-details{
    color: rgba(255,255,255,.6);
    display: block;
    margin: 15px 0;
}

.footer-column .title{
    padding: 0 50px 4px 0;
    text-transform: uppercase;
    border-bottom: 2px solid var(--orange);
    font-weight: 500;
    font-size: 22px;
    display: block;
    margin-bottom: 20px;
}

.footer-column ul{
    list-style-type: none;
}

.footer-column li{
    text-transform: uppercase;
    font-size: 18px;
    padding: 4px 0;
}

.footer-column li a{
    color: rgba(255,255,255,.6);
    text-decoration: none;
    cursor: pointer;
}

.footer-column li a:hover{
    color: var(--orange);
}

.get-in-touch i{
    margin-right: 10px;
}

.get-in-touch li{
    text-transform: lowercase !important;
}

.copyright{
    background-color: var(--grey);
    padding: 10px 50px;
}

.together-software{
    float: right;
}

.together-software a{
    color: #52b5fb;
    text-decoration: none;
    cursor: pointer;
}

.together-software a:hover{
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}


@media (max-width: 768px) {

    .info{
        flex-wrap: wrap;
    }

    .footer .company img{
        width: 250px;
        margin-bottom: 10px;
    }

    .company{
        flex: 0 0 100%;
        padding-bottom: 50px;

    }

    .menu, .courses{
        padding-bottom: 50px;
    }

    .together-software{
        float: unset;
    }


    .copyright span{
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 5px;
    }

}
