
* {
    max-width: 100%;
    box-sizing: border-box;
}

:root {
    --primary: #00bbe1;
    --primary-accent: #0077ff;
    --secondary: #0E152C;
    --background: #F8F9FF;
}

::-webkit-scrollbar {
    display: none;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: rgb(0 0 0/0.08);
}

.progress-bar {
    height: 5px;
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    width: 0;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/regular.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/medium.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../fonts/bold.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    box-sizing: border-box;
    padding: 75px 0 0;
    font-size: 18px;
    overflow-x: hidden;
}

@media (max-width: 782px) {
    body {
        padding-top: 60px;
    }
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.site-footer h2 {
    font-size: 25px;
    text-transform: none;
}

h3 {
    font-size: 30px;
    font-weight: 600;
}

section {
    padding: 100px 0;
    max-width:100%;
    overflow:hidden;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 782px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }
    section {
        padding: 20px 0;
    }
}

.spacer {
    height: 100px;
}

body.admin-bar header {
    top: 32px;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.card {
    box-shadow: 35px 30px 50px 0 rgba(51, 102, 255, .05);
    background-color: #fff;
    border: 0 #f0ecec;
    border-radius: 20px;
    padding: 29px 23px;
    transition: all .3s;
}

footer {
    padding-top: 20px;
    padding-bottom: 20px;
}

#scroll-top {
    *background-image: linear-gradient(var(--primary), var(--primary-accent));
    background-color: var(--primary-accent);
    position: fixed;
    text-align: center;
    cursor: pointer;
    z-index: 99;
    width: 2.1em;
    height: 2.1em;
    line-height: 2.1;
    color: #ffffff;
    border-radius: 2px;
    outline: inherit;
    left: 20px;
    bottom: 20px;
    padding-top: 3px;
}

@media(max-width: 768px) {
    #scroll-top {
        left: 10px;
        bottom: 10px;
    }
}

#scroll-top:hover {
    transform: scale(1.1);
    transition: all .4s;
}

.swiper {
    overflow: visible !important;
}

form label {
    display: block;
    width: 100%;
}

input[type="text"], input[type="email"],
input[type="tel"], input[type="number"],
input[type="password"],
textarea, select {
    width: 100%;
    padding: 5px 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size:18px;
    background-color:#fff;
    font-family: 'Poppins', sans-serif;
}

input:disabled, textarea:disabled, select:disabled, button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.required::after {
    content: "*";
    color: red;
}

.divider {
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    display: block;
    width: 30px;
    height: 5px;
    margin-bottom: 20px;
}

.gradient-text {
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    -webkit-background-clip: text;
    color: transparent;
}

.table-bordered {
    border-collapse: collapse;
    width: 100%;
}

.table-bordered th, .table-bordered td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

a {
    text-decoration: none;
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    -webkit-background-clip: text;
    color: transparent;
}

a:visited {
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    -webkit-background-clip: text;
    color: transparent;
}

/* contact page */

.icon-text {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width:100%;
}

.icon-text p {
    margin: 0;
    font-weight: 600;
    font-size:20px;
}

a.icon-text {
    text-decoration: none;
    color: #000;
}

.form-message {
    margin-top: 10px;
}

.form-message p {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.form-message .success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message .error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wp-block-syntaxhighlighter-code {
    padding: 20px;
    border-radius: 5px;
    background-color: #f8f9ff;
    margin-bottom: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .table-responsive table {
        width: 100%;
        display: block;
    }
    .table-responsive thead,
    .table-responsive thead tr,
    .table-responsive thead th {
        *display: none;
        display:block;
        width:100%;
        box-sizing: border-box;
    }

    .table-responsive tr {
        margin-bottom:20px;
    }

    .table-responsive tbody,
    .table-responsive tr,
    .table-responsive td,
    .table-responsive th {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }
    .table-responsive td {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }
    .table-responsive td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        text-transform: uppercase;
        margin-bottom: 5px;
    }
}

.primary-bg {
    background: rgb(0,119,255);
    background: linear-gradient(62deg, rgba(0,119,255,1) 0%, rgba(0,187,225,1) 93%, rgba(0,212,255,1) 100%);
    color:#fff;
}

.accent-bg {
    background-color: var(--background);
}

.recent-posts {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

@media(max-width: 768px) {
    .recent-posts {
        grid-template-columns:1fr;
    }
    .mobile-small-centered {
        margin: 0 auto;
        width: 50%;
        display: block;
    }
}

.jumbotron {
    background-image:linear-gradient(var(--primary), var(--primary-accent));
    padding:50px;
    color:#ffff;
    border-radius:25px;
}

@media(max-width: 768px) {
    .jumbotron {
        padding:20px;
    }
}

pre {
    overflow-x: auto;
}

.text-gardient {
    background-image: linear-gradient(var(--primary), var(--primary-accent));
    -webkit-background-clip: text;
    color: transparent;
}

b, strong {
    font-weight: 600;
}

.info {
    background-color: #e1f4ff;
    border-radius: 10px;
    padding: 20px;
    display: block;
}

.post-content ul {
    list-style: none;
}

.post-content ul li:before {
    content: "\2022";
    position: relative;
    color: var(--primary);
    display: inline-block;
    width: 1.2em;
    margin-left: -1.2em;
}

.post-content figure {
    margin: 0; 
}

.responsive-margin {
    margin-bottom: 50px;
}

@media(max-width: 768px) {
    .responsive-margin {
        margin-bottom: 20px;
    }
}