* {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

@font-face {
   font-family: Roboto;
   font-weight: 300;
   src: url(../f/Roboto-300.woff) format(woff);
}
@font-face {
   font-family: Roboto;
   font-weight: 700;
   src: url(../f/Roboto-700.woff) format(woff);
}
@font-face {
   font-family: Poppins;
   font-weight: 300;
   src: url(../f/Poppins-300.woff);
}
@font-face {
   font-family: Poppins;
   font-weight: 700;
   src: url(../f/Poppins-700.woff) format(woff);
}


body {
   background-color: #1d1f29;
   color: #ccc;
   font-family: Roboto, Arial, sans-serif;
   font-size: 18px;
   font-weight: 300;
   line-height: 1.8em;
}

a { text-decoration: none; }

strong { font-weight: 700; }

nav {
   display: flex;
   height: 80px;
   background-color: #101117;
   align-items: center;
   justify-content: space-between;
   font-size: 18px;
   font-weight: 300;
}

nav a {
   text-decoration: none;
   color: #aeaeae;
}

nav img {
   padding: 8px 40px 0px 40px;
}

nav ul {
   display: flex;
   height: 100%;
   list-style-type: none;
}

nav ul li {
   display: flex;
   height: 100%;
   justify-content: center;
   align-items: center;
   padding: 0 15px;
   text-align: center;
}

.menu-selected {
   background-color: #E01B39;
   color: #fff;
}

.menu-item:hover {
   background: #1d1f29;
}

.menu-item:hover a {
   color: #fff;
}

.service {
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
   /* gap: 30px; */
}

.service img {
   width: 100%;
}

h1 {
   font-family: "Poppins";
   font-size: 46px;
   font-weight: 700;
   line-height: 3.5rem;
   color: #fff;
   margin-bottom: 10px;
}

h2 {
   font-family: "Poppins";
   font-size: 30px;
   font-weight: 700;
   line-height: 3.5rem;
   color: #fff;
}

.kupon {
   color: #fff;
   font-size: 40px;
   line-height: 3rem;
   padding: 30px 0px 20px 0px;
}

.kupon strong {
   white-space: nowrap;
}

.kupon a {
   color: #fff;
   text-decoration: underline;
}

.service-txt {
   padding: 0 80px;
}

.service p {
   color: #96a1d3;
   font-size: 20px;
   font-weight: 300;
   line-height: 2rem;
}

.service p:hover {
   color: #fff;
}

.s1img { grid-area: s1img; }
.s1txt { grid-area: s1txt; }
.s2img { grid-area: s2img; }
.s2txt { grid-area: s2txt; }
.s3img { grid-area: s3img; }
.s3txt { grid-area: s3txt; }
.s4img { grid-area: s4img; }
.s4txt { grid-area: s4txt; }

.s1 { grid-template-areas: "s1img s1txt"; }
.s2 { grid-template-areas: "s2txt s2img"; }
.s3 { grid-template-areas: "s3img s3txt"; }
.s4 { grid-template-areas: "s4txt s4img"; }

.content {
   max-width: 750px;
   margin: 40px auto;
   margin-bottom: 50px;
}

.content > * {
   margin-bottom: 20px;
}

.content img {
   padding: 30px 0px 20px 0px;
   width: 100%;
}

.lead {
   color: #fff;
   font-size: 27px;
   font-weight: 300;
   line-height: 2.5rem;
}

.content ul {
   margin-left: 40px;
}

.content h2 {
   padding: 20px 0px 10px 0px;
}

table {
   width: 100%;
   border-collapse: collapse;
}

.content table {
   margin-bottom: 50px;
}

tr:nth-child(even) {
   background-color: #282B38;
 }

 table td, table th {
   padding: 12px;
 }

table th {
   color: #fff;
   text-align: left;
   font-weight: 700;
   font-size: 22px;
   border-top: 1px solid #414763;
}

.tr { text-align: right; white-space: nowrap; }
.tl { text-align: left; }


aside {
   display: flex;
   width: 100%;
   margin-top: 50px;
   padding: 60px 400px;
   background-color: #252940;
   justify-content: center;
   align-items: center;
   font-family: "Poppins";
   font-weight: 300;
   text-align: center;
   font-size: 30px;
   line-height: 2.8rem;
}

aside a {
   color: #E01B39;
   text-decoration: none;
}

aside a:hover {
   color: #fff;
}

footer {
   display: flex;
   background-color: #15161E;
   padding: 40px;
   align-items: center;
   justify-content: center;
   color: #8E92B7;
   text-align: center;
   font-size: 16px;
   font-weight: 300;
   line-height: 1.6rem;
}

footer a {
   color: #fff;
   text-decoration: none;
}


