@import url('https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900');

:root{
    --dz-primary-color:#;
    --dz-secondary-color:#;
    --dz-dark-blue: #053457;
    --dz-light-blue:#6addf2;
    --dz-light: #f2f9fd;  
    --dz-font-blue: #063a86;
    
    --text-dark: #4A5240;
    --text-light: #F8F1FF;
    --text-yellow: #FFFF00;
    --text-green: #157145;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
    background-color: var(--dz-light);
}

body::-webkit-scrollbar{
    display: none !important;
}


h1,h2,h3,h4,h5,h6 {
	position: relative;
	line-height: 50px;
	color: #272727;
	font-weight: bold;
}

p {
    position: relative;
    font-size: 1.4em;
    line-height: 20px;
    color: #666;
}

.lead{
    font-family: 'Poppins', sans-serif;
    line-height: 30px;
    font-size: 1em !important;
    color: var(--text-dark);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--dz-font-blue);
}

a:hover {
    text-decoration: none;
    color: var(--dz-font-blue);
}

li {
    list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    overflow: hidden;
}

.heading-text{
    font: 400 50px/60px 'Poppins', sans-serif;
    color: var(--dz-font-blue);
    font-weight: 500;
}

.page-header,
.hero-content {
    height:50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:#1d0e7b !important;
    background-image: url('/plugins/images/Background.png') !important;
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

section{
    padding: 80px 0;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    background: white;
}

.service-card{
    padding: 20px;
    gap: 10px;
}

.service-card:nth-child(1){
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-icon{
    height: 200px;
    overflow: hidden;
    object-fit: contain;
    color: var(--dz-font-blue);

    & img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center center;
        image-orientation: from-image;
    }
}

.service-title{
    line-height: 35px;
    font-weight: 500;
    margin: 20px 0;
    color: var(--dz-font-blue);
}

.service-card .lead{
    font-size: 1em;
    
}

.service-card:hover{
    cursor: pointer;
    transition: all .5s ease;
}