/*----------GLOBAL CSS----------*/

@import url('https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
    padding: 0;
    margin: 0;
}


a{
    color: inherit;
    text-decoration: none;
}

li{
    list-style: none;
}


.container{
    max-width:960px;
    padding-left:1rem;
    padding-right:1rem;
}

.the_S_style{
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 1.2em;
    color: var(--primary-color);
}

:root {
    --primary-color: #d889e6;
    --text-secondary-color: rgb(212, 212, 212);
    --white-color: #ffffff;
    --black-color: #000000;
    --grey-color: rgb(207, 207, 207);
    --menu-icon:#333;
    --menu-icon-hover: #770eda7a;
}

.page_title{
    font-size: 3em;
    padding: 1em;
    margin: 0em;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.shadowed_pallet{
    padding: 1em;
    box-shadow: 0 0  0 2px rgb(255,255,255), 0.3em 0.3em 1em rgba(0,0,0,0.3);
    border-radius: 0.5em;
    min-width: 260px;
}
.shadowed_pallet img{
    width: 150px;
    height: auto;
}

.zoom_effect img {
    overflow: hidden;
    transform-origin: 0 0;
    transition: transform .25s, visibility .25s ease-in;
}
.zoom_effect:hover img {
    transform: scale(1.05);
    overflow: hidden;
}

.hilight{
    background-color: var(--primary-color);
}
.underline{
    text-decoration: underline; 
}
.capitalize{
    text-transform: uppercase;
}
.bold-text{
    border-bottom: var(--primary-color) 2px solid;
}

.read-more{
    color: var(--primary-color);
}
.read-more:hover{
    text-decoration: underline;
}




/*----------TAGS AND ID'S----------*/




#Landing_Page{
    height: 100vh;
    background: url('') no-repeat center top/cover;

    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
}
#Landing_Page p{
    font-family: 'Roboto', sans-serif;
    font-size: 4em;
    color: var(--black-color);
}




#Banks_Affiliated{
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding-top: 2em;

    font-size: 1em;
    text-align: center;
}
#Banks_Affiliated .bank_affiliated_grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 2em;
}
#Banks_Affiliated .bank_affiliated_grid img{
    height: 100px;
    width: 100px;
}




#Certifications{
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;

    font-size: 1em;
    text-align: center;
    padding: 2em 0em;
    font-family: 'Roboto', sans-serif;
}
#Certifications .page_title{
    padding-top: 2em;
}
#Certifications .certification_grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 2em;
}
#Certifications .certification_grid img{
    height: 100px;
    width: auto;
}
#Certifications .certification_grid h1{
    padding: 1em 0.5em;
}
#Certifications .certification_grid p{
    padding: 0em 0.5em 1em 0.5em;
}




#About_Us{
    height: auto;
    display: flex;
    justify-content: center;
    align-content: center;

    text-align: center;
    padding: 3em 0em;
}
.About_Us_New_Page .container{
    border-bottom: var(--primary-color) 1px solid;
}
#About_Us .images_founders img{
    padding: 1em;
    height: 200px;
}
#About_Us .about_info{
    font-size: 1.5em;
    padding: 2em 0.5em;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}
#About_Us .shadowed_pallet_about img{
    width: 250px;
    height: auto;
}




#Services_And_Specilization{
    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;

    padding: 0em 0em 4em 0em;
}
#Services_And_Specilization h1{
    padding: 1em 0em;
    font-size: 2em
}
#Services_And_Specilization p{
    font-size: 1.5em
}
#Services_And_Specilization ul{
    padding: 0em 2em;
}
#Services_And_Specilization li{
    list-style: square;
     font-size: 1.35em
}




#Footer_Sec{
    background-color: var(--black-color);
    color: var(--white-color);
    text-align: center;
    padding: 2em 0em;

    display: flex;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
}
#Footer_Sec .container{
    text-align: center;
}
#Footer_Sec .copyright_text{
    font-family: 'Roboto', sans-serif;
    padding: 0em 0em 2em 0em;
    font-size: 1.5em;
}
#Footer_Sec .footer_grid{
    color: var(--text-secondary-color);
    font-weight: 500;
}
#Footer_Sec .footer_grid ul{
    display: inline-flex;
    text-align: center;
}
#Footer_Sec .footer_grid li{
    padding: 0em 0.5em;
}
#Footer_Sec .footer_grid li:hover{
    color: var(--primary-color);
    border-left: var(--primary-color) 1px solid;
    border-right: var(--primary-color) 1px solid;
    cursor: pointer;
    transition: 0.75s;
}
#Footer_Sec .contact_us{
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    text-align: left;
    color: var(--text-secondary-color);
    padding: 1em 0em;
}
#Footer_Sec .contact_us a:hover{
    text-decoration: underline;
    color: var(--primary-color);
} 


/*----------MEDIA QUERY FOR RESPONSIVENESS----------*/


@media (max-width: 860px){

    #Landing_Page p{
        font-size: 3em;
    }

    #Certifications .certification_grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 1em;
    }
    #Certifications .certification_grid img{
        height: 80px;
        width: auto;
    }

    #About_Us .images_founders img{
        padding: 1em;
        height: 150px;
    }

}


@media (max-width: 720px){

    .page_title{
        font-size: 3em;
    }

    .the_S_style{
        font-size: 1.2em;
    }
    
    #Landing_Page p{
        font-size: 2em;
        text-align: center;
    }

    #Banks_Affiliated .bank_affiliated_grid{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        grid-gap: 1.5em;
    }

    #Certifications .certification_grid{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        grid-gap: 2em;
    }

    #About_Us .about_info{
        font-size: 1.25em;
        padding: 2em 0.5em;
        text-align: left;
        font-family: 'Roboto', sans-serif;
    }
    #About_Us .images_founders img{
        padding: 1em;
        height: 150px;
    }

    #Footer_Sec .footer_grid ul{
        display: none;
    }

}

@media (max-width: 480px) {

    #Landing_Page{
        height: 80vh;
    }

    .page_title{
        font-size: 2em;
    }

    #Banks_Affiliated .bank_affiliated_grid{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 1em;
    }
    #Banks_Affiliated h1{
        font-size: 1em;
        font-weight: normal;
    }
    #Banks_Affiliated .bank_affiliated_grid img{
        height: 80px;
        width: 80px;
    }

    #Certifications .certification_grid img{
        height: 80px;
        width: auto;
    }
    #Certifications .certification_grid h1{
        font-size: 1.2em;
    }
    #Certifications .certification_grid p{
        font-size: 1em;
    }

}

@media(max-width: 450px) {

    #Banks_Affiliated .bank_affiliated_grid img{
        height: 80px;
        width: 80px;
    }

}


/*----------SLIDING BACKGROUND CSS----------*/


.slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: auto;
}
  
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
  
.slide.current {
    opacity: 1;
}
  
.slide .content {
    position: absolute;
    bottom: 70px;
    left: -600px;
    opacity: 0;
    width: 600px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    padding: 35px;
}
  
.slide .content h1 {
    margin-bottom: 10px;
    font-size: 1.5em;
}
  
.slide.current .content {
    opacity: 1;
    transform: translateX(600px);
    transition: all 0.7s ease-in-out 0.3s;
    font-size: 1.25em;
}
  
.buttons button#next {
    position: absolute;
    top: 140%;
    right: 15px;
}
  
.buttons button#prev {
    position: absolute;
    top: 140%;
    left: 15px;
}
  
.buttons button {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
}
  
.buttons button:hover {
    background-color: #fff;
    color: #333;
}
  
@media (max-width: 500px) {

    .slide .content {
        bottom: -300px;
        left: 0;
        width: auto;
    }
  
    .slide.current .content {
        transform: translateY(-300px);
    }
}  


/*----------Backgorund Images----------*/
 

.slide:first-child {
    background: url('./Accessories/landing_background_1.jpg') no-repeat center top/cover;
}
.slide:nth-child(2) {
    background: url('./Accessories/landing_background_2.jpeg') no-repeat center top/cover;
}
.slide:nth-child(3) {
    background: url('./Accessories/landing_background_4.jpg') no-repeat center top/cover;
}


/*----------NAVIGATION BAR CSS----------*/


.header {
    background-color: var(--white-color);
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 3;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: var(--white-color);
}

.header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
}

.header li a:hover, .header .menu-btn:hover {
    background-color: var(--primary-color);
    transition: 0.75s ease-in;
}

.header .logo {
    display: block;
    float: left;
    font-size: 1.5em;
    padding: 10px 20px;
    text-decoration: none;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: var(--menu-icon);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before, .header .menu-icon .navicon:after {
    background: var(--menu-icon);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
    float: right;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

@media (min-width: 1140px) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }

    .header .logo{
        font-size: 2em;
    }
}