* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}
  
html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}

.training-details {
    width: 100%;
    margin-top: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
}

.training-details > .inner {
    width: 100%;
    max-width: var(--max-width-layout);
    position: relative;
}

.training-details .title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
}

.training-details .subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.training-details .info-chips {
    display: flex;
    position: relative;
}

.training-details .info-chip {
    background-image: linear-gradient(to bottom right, #E0F5FF 0%, #F6EEFF 78%, #E8D4FF 100%);
    padding: 10px 10px;
    margin: 5px;
    border-radius: 5px;
    transition: all 200ms ease-in;
}

.training-details .info-chip:hover {
    transform: scale(1.03);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.training-details .info-chip p {
    margin: 0px;
    font-size: 13px;
}

.training-details .info-chip p svg {
    margin-right: 3px;
    vertical-align: middle;
}

.training-details .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    margin: 20px 0px;
}

.border-wrap {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1px;
    border-radius: 10px;
    width: 100%;
    background: linear-gradient(to bottom right, #00B0FFF9, #861FFC, #861FFC);
}

.training-details .left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.right .border-wrap {
    position: relative;
    min-height: 100%;
}

.flex {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
}

.description {
    flex: 1;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 9px;
    height: 100%;
}

.description h2 {
    margin-top: 0;
}

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

.included {
    flex: 1;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 9px;
    height: 100%;
}

.included h2 {
    margin-top: 0;
}

.included svg {
    margin-right: 10px;
}

.included p {
    font-weight: 600;
    font-size: 18px;
}

.skills {
    flex: 1;
    background-color: #FFFFFF;
    padding: 40px;
    padding-bottom: 30px;
    border-radius: 9px;
    height: 100%;
}

.skills h2 {
    margin-top: 0;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
}

.skill {
    margin: 10px 0;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}

.skill svg {
    margin-right: 10px;
}

.share {
    text-align: center;
    width: 100%;
}

.share h3 {
    font-weight: 400;
    font-size: 18px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.share-buttons a {
    width: 25px;
}

.share-buttons img {
    width: 100%;
}

.auth {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
    top: 90px;
    margin-bottom: 10px;
    z-index: 10;
}

.auth a {
    padding: 5px 15px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px #00B0FFF9 solid;
    text-decoration: none;
}

a.login {
    background-color: #FFFFFF;
    color: #00B0FFF9;
    transition: all ease-in 200ms;
} 

a.register {
    background-color: #00B0FFF9;
    color: #FFFFFF;
    transition: all ease-in 200ms;
} 

a.login:hover {
    background-color: #00aeff15;
}

a.register:hover {
    background-color: #008dcff9;
}

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

    .header .inner {
        padding: 0 36px;
    }

    .header .inner .right img {
        height: 360px;
        position: relative;
        top: -20px;
    }

}

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

    .training-details .grid {
       display: block;
    }

    .training-details .left {
        margin-bottom: 20px;
    } 

    .auth {
        position: relative;
        top: 0px;
    }

    .skills {
        height: fit-content;
    } 

    .footer .inner > svg {
        margin: 60px 0 0 28px!important;
    }
}