:root{
    /*============Colors================  */
    --Bright-orange: hsl(31, 77%, 52%);
    --Dark-cyan: hsl(184, 100%, 22%);
    --Very-dark-cyan: hsl(179, 100%, 13%);

/* ==================Neutral================= */
    --Transparent-white-paragraphs: hsla(0, 0%, 100%, 0.75);
    --Very-light-gray-background-headings-buttons: hsl(0, 0%, 95%);
/*=================== Body Copy================== */
    --Font-size: 15px;
/*=================== font family================== */

    --font-family-Lexend-Deca:"Lexend Deca","sans-serif";
    --font-family-Big-Shoulders-Display:"Big Shoulders Display","sans-serif";
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}
body{
   background:var(--Very-light-gray-background-headings-buttons) ;
   display: flex;
   justify-content:center;
   align-items: center;
   height: 100vh;
   flex-direction: column;

}
.container{
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 990px;
    max-height: 510px;
    
}
.container .card-1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family-Lexend-Deca);
    
    
}
.sedans1{
    background: var(--Bright-orange);
    height:510px ;
    padding: 30px;
    border-radius:10px 0 ;
    -webkit-border-radius:15px 0  0 10px;
    -moz-border-radius:10px 0 ;
    -ms-border-radius:10px 0 ;
    -o-border-radius:10px 0 ;
}
.sedans2{
    background: var(--Dark-cyan);
    height:510px ;
    width: auto;
    padding: 30px;


}
.sedans3{
    background: var(--Very-dark-cyan);
    height:510px ;
    padding: 30px;
    width: auto;
    border-radius:0px 10px 10px 0 ;
    -webkit-border-radius:0px 10px 10px 0 ;
    -moz-border-radius:0px 10px 10px 0 ;
    -ms-border-radius:0px 10px 10px 0 ;
    -o-border-radius:0px 10px 10px 0 ;
}
.sedans1 .icon,
.sedans2 .icon,
.sedans3 .icon{
    padding: 30px 0;
}
.sedans1 h1,
.sedans2 h1,
.sedans3 h1{
    padding: 10px 0;
    font-family: var(--font-family-Big-Shoulders-Display);
    font-weight: 700;
    text-transform:uppercase;
    font-size: 30px;
    color: var(--Very-light-gray-background-headings-buttons);

}
.sedans1 p,
.sedans2 p,
.sedans3 p{
    color: var(--Transparent-white-paragraphs);
    line-height: 30px;
    align-items: center;
    padding: 10px 0;
    margin-top: 10px;

}
.sedans1 .button,
.sedans2 .button,
.sedans3 .button{
    display: flex;
    margin-top: 60px;
    
    border-radius: none;
    align-items: center;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    
}

.sedans1 button,
.sedans2 button,
.sedans3 button{
    padding: 15px;
    background: var(--Very-light-gray-background-headings-buttons);
    border: 2px solid var(--Very-light-gray-background-headings-buttons);
    width: 150px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
/* ===============color button======================= */
.sedans1 button{
    color: var(--Bright-orange);
    font-weight: 400;

    
}
.sedans2 button{
    color: var(--Dark-cyan);
    font-weight: 400;
}
.sedans3 button{
    color: var(--Very-dark-cyan);
    font-weight: 400;
}

/* =============hover==================== */

.sedans1 button:hover{
    cursor: pointer;
    background: var(--Bright-orange);
    border: 2px solid var(--Very-light-gray-background-headings-buttons);
    color: var(--Very-light-gray-background-headings-buttons);
}
.sedans2 button:hover{
    cursor: pointer;
    background: var(--Dark-cyan);
    border: 2px solid var(--Very-light-gray-background-headings-buttons);
    color: var(--Very-light-gray-background-headings-buttons);
}
.sedans3 button:hover{
    cursor: pointer;
    background: var(--Very-dark-cyan);
    border: 2px solid var(--Very-light-gray-background-headings-buttons);
    color: var(--Very-light-gray-background-headings-buttons);
}

.copyright {
    margin-top: 4px;
    padding: 20px;
    text-align: center;
    height: auto;
    
}
.copyright p {
    color: var( --Bright-orange);
}
.copyright a {
    color: var( --Dark-cyan);
    text-decoration: none;
}
/* &=========================================== */
/* !===================@media (max-width:768px)======================== */
/* &=========================================== */
@media (max-width:768px) {
    
    .container {
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        max-width: 550px;
        max-height: 510px;  
    }

    .container .card-1{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-family-Lexend-Deca);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        transform: translateY(-55px);
        -webkit-transform: translateY(-55px);
        -moz-transform: translateY(-55px);
        -ms-transform: translateY(-55px);
        -o-transform: translateY(-55px);
}

    .sedans1{
        background: var(--Bright-orange);
        height:510px ;
        padding: 30px;
        border-radius:10px 0 ;
        -webkit-border-radius:15px 15px 0 0px;
        -moz-border-radius:10px 0 ;
        -ms-border-radius:10px 0 ;
        -o-border-radius:10px 0 ;
    }
    .sedans3{
        background: var(--Very-dark-cyan);
        height:510px ;
        padding: 30px;
        width: auto;
        border-radius:0px 10px 10px 0 ;
        -webkit-border-radius:0px 0px 10px 10px ;
        -moz-border-radius:0px 10px 10px 0 ;
        -ms-border-radius:0px 10px 10px 0 ;
        -o-border-radius:0px 10px 10px 0 ;
    }
    .copyright{
        transform: translateY(1010px);
        -webkit-transform: translateY(1010px);
        -moz-transform: translateY(1010px);
        -ms-transform: translateY(1010px);
        -o-transform: translateY(1010px);
}
    
}
