/* Google fonts - Inter */

/* COMMENT SHORTCUT - Shift + alt + a // (Ctrl + /) <-- Use this if you want to comment lines of code */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");

/* ALL COLORS OF THE WEBSITE  */
:root{
    --maroon: #A01616;
    --red: #e10000;
    --blue: #007ed3;
    --mediumdarkblue: #0766a5;
    --lightblue: #97d7ff;
    --mediumlightblue: #8eaed1;
    --grayblue: #2e2e47;
    --powderbluegray: #cad1e3;
    --brightwhite: #f1f1f1;
    --white: #fff;
    --lightgreen: #cdedcf;
    --mintgreen: #23D381;
    --black: #13131a;
    --darkgray: #202326;
    --gray: #32312f;
    --lightgray: #323942;
    --transparent: rgba(0, 0, 0, 0.5);
    --box-shadow:0 .1rem 1.5rem rgba(0,0,0,.1);
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Inter', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

footer{
    background-color: var(--darkgray);
    position: relative;
    width: 100%;
    min-height: 250px;
    padding: 3rem 1rem;
}

footer .container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

footer .container .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .container .row .col{
    min-width: 250px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    padding: 0 2rem;
    font-size: 13px;
}

footer .container .row .col .footer_logo{
    width: 100px;
    margin-bottom: 25px;
    margin-top: 20px;
}

footer .container .row .col .form{
    display: flex;
    padding: 2rem 0;
}

footer .container .row .col .form button{
    border: 1px solid var(--blue);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: var(--blue);
    color: var(--white);
}

footer .container .row .col .form button:hover{
    border: 1px solid var(--mediumdarkblue);
    padding: 6px 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    background: var(--mediumdarkblue);
    transition: 0.1s ease;
}

footer .container .row .col h3{
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
    font-size: 15px;
}

footer .container .row .col h3::after{
    content: '';
    height: 2px;
    width: 0px;
    background-color: var(--blue);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

footer .container .row .col h3:hover::after{
    width: 30px
}

footer .container .row .col .links a{
    display: block;
    text-decoration: none;
    color: var(--white);
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
    font-size: 13px;
}

footer .container .row .col .links a::before{
    content:'';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: var(--blue);
    transition: 0.5s ease;
    opacity: 0;
}

footer .container .row .col .links a:hover::before{
    opacity: 1;
}

footer .container .row .col .links a:hover{
    transform: translateX(-8px);
    color: var(--blue);
}

footer .container .row .col .details{
    display: inline-flex;
    justify-content: space-between;
    font-size: 13px;
}

footer .container .row .col .details i{
    margin-right:15px;
    font-size: 13px;
}

footer .container .row .col .social a i{
    color: var(--blue);
    margin-top: 2rem;
    margin-right: 5px;
    transition: 0.3s ease;
    font-size: 15px;
}

footer .container .row .col .social a i:hover{
    transform: scale(1.5);
    color: var(--white);
}


@media (max-width:980px){

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

    footer .container .row .col{
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
    }

}

@media (max-width:768px){

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

    footer .container .row .col{
      width: 100%;
      text-align: left;
      margin-bottom: 20px;
    }

}