p,h1,h2,h3,h4,h5,h6{
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
}
@font-face {
    font-family: BalooDa2;
    src: url(../fonts/BalooDa2-Regular.ttf);
}
body{
    padding:0px 100px;
    /* background: linear-gradient(90deg, rgb(230, 176, 176) 0%, rgb(255, 225, 225) 35%, rgb(244, 241, 235) 100%); */
    background-color: #F3F3F3;
    font-family: "BalooDa2", sans-serif;
    font-weight: bold;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:40px;
}
.headerLogo img{
    width: 100px;
}
.headerText h2{
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color:#d39c0b;
    font-weight: normal;
}
.headerText h3{
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    text-align: center;
    color:#d39c0b;
}

.administrationMain{
    display: grid;
    grid-template-columns: 1fr 600px;
    gap:60px;
    margin:40px 0px;
}
.administration{
    background: #fff;
    box-shadow: 0 0 10px 4px #e7e7e7;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.administration h3 {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	padding: 20px 0px 0px 0px;
	color: #d49c0b;
	border-bottom: 1px solid #d49c0b;
	border-radius: 10x;
	margin-bottom: 10px;
}
.administration h4 {
    font-size: 24px;
    font-weight: bold;
    color: #d49c0b;
    padding-top:25px;
    text-align: center;
}
.administration h6 {
    font-size: 28px;
    color: #198004;
    font-weight: bold;
    text-align: center;
    line-height: 29px;
}
.administrationPerson{
    display: grid;
    grid-template-columns: 65px 1fr;
    gap:20px;
    align-items: center;
    padding:7px 15px;
    border-bottom: 1px solid #eedba9;
}
.administrationPerson h5{
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}
.administrationPerson p{
    font-size: 16px;
    line-height: 24px;
}
.personImg img{
    width: 100%;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.app{
    background: #fff;
    box-shadow: 0 0 10px 4px #e7e7e7;
    padding:30px 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
.app p{
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color:#d39c0b;
}

.andridImg img{
    width: 140px;
    margin:auto;
}
.qrCode .qrImg {
    width: 120px;
    margin: auto;
    border: 5px solid #000;
    border-radius: 10px;
    padding: 6px;
}
.scanMe{
    width: 140px;
    margin:7px auto auto auto;
    background-color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    position: relative;
}
.scanMe:after{
    position: absolute;
    content: "";
    left:65px;
    top:-5px;
    width: 10px;
    height: 10px;
    background-color:#000;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.scanMe p {
    color: #fff;
    font-size: 17px;
    text-align: center;
    padding:5px 10px;
}

.screenshot{
    background: #fff;
    box-shadow: 0 0 10px 4px #e7e7e7;
    padding:15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.screenshot img{
    width: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.footerText{
    text-align: center;

}
.footerText p{
    font-size: 22px;
    font-weight: bold;
    padding-bottom:10px;
}
.footerText img{
    width: 160px;
}


/* swiper slider css start */
.swiper {
    width: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 4px 3px #cac9c9;
}
.swiper-pagination-bullet-active {
    background:#d39c0b!important;
}
.mobileScreenshot{
    display: none;
}
/* swiper slider css end */

@media (max-width:1190px){
    .administrationMain {
        grid-template-columns: 800px;
        justify-content: center;
    }
    body{
        padding:0 50px;
        margin:auto;
    }
}
@media (max-width:900px){
    .administrationMain {
        grid-template-columns: 640px;
    }
    body{
        padding:0 30px;
        margin:auto;
    }
}
@media (max-width:700px){
    .administrationMain {
        grid-template-columns: 540px;
    }
    body{
        padding:0 30px;
        margin:auto;
    }
    .headerText h2 {
        font-size: 22px;
        line-height: 28px;
    }
    .headerText h3 {
        font-size: 20px;
        line-height: 26px;
    }
}
@media (max-width:500px){
    .administrationMain {
        grid-template-columns: 1fr;
    }
    body{
        padding:0 20px;
        margin:auto;
    }
    .header {
        gap: 10px;
        flex-direction: column;
    }
    .mobileHidden{
        display: none;
    }
    .headerText h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .headerText h3 {
        font-size: 22px;
        line-height: 26px;
    }
    .app {
        grid-template-columns:1fr;
    }
    .app p {
        padding: 10px 0px;
    }
    .administrationPerson h5 {
        font-size: 15px;
        line-height: 18px;
    }
    .administrationPerson p {
        font-size: 14px;
        line-height: 21px;
    }
    .app p {
        font-size: 18px;
        line-height: 24px;
    }
    .headerLogo{
        margin-top:10px;
    }
    .header{
        display: none;
    }
    .mobileScreenshot{
        display: block;
        margin-top:5px;
    }
    .laptopScreenshot{
        display: none;
    }
}