*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: rgb(14, 0, 84);
}

header, .header .page_header, .nav_bar, .contact_wrapper, .contact__app,
.contact_main, .contact_main main, .contact_container, .cnott, .main_details,
.dddetakk, .contact_right, .main_email_send, .message_wrapper, .messgae_input{
    width: 100%;
    height: 100%;
}

header{
    position: relative;
}

header .page_header nav{
    padding: 10px;
}

.nav_bar, .contact_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact_container{
    align-items: flex-start;
}

.nav_bar .logo{
    width: 100px;
    height: 100%;
}

.nav_bar .logo img{
    width: 100%;
    height: 100%;
}

.mobile_view{
    display: none;
}

.nav_bar .links ul{
    display: inline-flex;
    gap: 10px;
    list-style-type: none;
}

.nav_bar .links ul li{
    position: relative;
    margin-left: 30px;
    font-size: 1.6rem;
    color: hsl(250, 100%, 16%);
    position: relative;
    transition: .3s ease;

}

.nav_bar .links ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: blue;
    transition: width .4s ease; 
}

.nav_bar .links ul li:hover::after {
    width: 100%; 
}

.get_started{
    padding-right: 30px;
}

.start button{
    width: 150px;
    height: 45px;
    border: none;
    background: hsl(250, 100%, 16%);
    cursor: pointer;
    transition: .3s ease;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.2rem;
}

.start button:hover{
    background: hsla(250, 100%, 16%, 0.927);
}

.contact_main main{
    padding: 60px;
}

.contact_details{
    padding: 20px;
}

.contact_left{
    width: 400px;
    height: 100%;
    position: relative;
    box-shadow: 0 0 20px #ccc;
    border-radius: 3px;
}

.cnott, .cont_top, .dddetakk, .message_wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cont_top h1{
    font-size: 2rem;
    color: hsl(250, 100%, 16%);
}

.locat, .email, .phone{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.cont_bot{
    font-weight: 800;
}

.locat_icon, .email_icon, .phone_icon{
    font-size: 1.7rem;
    color: hsl(250, 100%, 16%);
}

.locate_details, .email_details, .phone_details, .location{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 4px;
    font-weight: 800;
}

.location{
    padding: 0;

}

.messgae_input .inputs input, textarea{
    width: 100%;
    height: 50px;
    padding: 10px;
    border: 1px solid hsl(0, 0%, 59%);
    font-size: 1rem;
    outline: none;
    transition: .3s ease;
}

.messgae_input .inputs input:focus, textarea:focus{
    border: 1px solid hsl(250, 100%, 16%);
}

.input_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

textarea{
    height: 300px;
}

.messgae_button{
    margin-top: 30px;
    text-align: center;
}

.messgae_button button{
    width: 200px;
    height: 50px;
    border: none;
    background: hsl(250, 100%, 16%);
    color: hsl(0, 0%, 100%);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 4px;
}

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

    .contact_main main{
        padding: 30px;
    }

    .contact_right{
        margin-top: 30px;
    }

}

@media screen and  (max-width: 768px) {
    
    .contact_main main{
        padding: 20px;
    }

    .contact_container{
        flex-direction: column;
    }

    .contact_left{
        width: 100%;
    }

    textarea{
        height: 200px;
    }
}