/* @font-face */
@font-face {
    font-family: "Gothic";
    src: url("../fonts/gothic/CenturyGothic.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Molarabic";
    src: url("../fonts/molarabic/MOLarabicRegular.ttf");
    font-weight: normal;
    font-style: normal;
}

:root {
    --pc: #555555;
    --pc2: #002547;
    --pc3: rgba(64, 16, 103, 1);
    --wc: #ffffff;
    --bc: #000000;
    --gc: #cccccc;
    --body-pc: linear-gradient(90deg, rgba(112, 0, 122, 1) 0%, rgba(0, 52, 64, 1) 100%);
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --deep-navy: #022a4c;
    --night: #030014;
    --heading: #0b2d4d;
    --text: #626c78;
    --muted: #8d97a3;
    --purple: #8628ff;
    --purple-dark: #591d84;
    --cyan: #00b9ff;
    --line: #e5e5e5;
    --base-p-size: 16px;
    --base-p-line-height: 1.7;
    --base-a-size: 16px;
    --base-li-size: 16px;
    --base-title-size: clamp(1.5rem, 3vw, 2.2rem);
    --base-h1-size: clamp(2rem, 3.8vw, 3rem);
    --base-h2-size: clamp(1.75rem, 3.2vw, 2.5rem);
    --base-h3-size: clamp(1.5rem, 2.6vw, 2rem);
    --base-h4-size: clamp(1.3rem, 2.1vw, 1.75rem);
    --base-h5-size: clamp(1.1rem, 1.7vw, 1.4rem);
    --base-h6-size: clamp(1rem, 1.35vw, 1.15rem);
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    background: var(--body-pc);
    font-weight: 400;
    font-size: var(--base-p-size);
    line-height: 1.6;
    color: var(--pc);
    box-sizing: border-box;
    font-family: "Roboto", "Roboto Fallback", sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* clip (not hidden) so position:sticky keeps working and iOS cannot pan sideways */
html,
body {
    overflow-x: clip;
}

/*
 * Base typography: plain element selectors (specificity 0,0,1, no
 * !important) so they beat Bootstrap's reboot but any component class wins
 * and can size its own text.
 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.25;
}

h1 { font-size: var(--base-h1-size); }
h2 { font-size: var(--base-h2-size); }
h3 { font-size: var(--base-h3-size); }
h4 { font-size: var(--base-h4-size); }
h5 { font-size: var(--base-h5-size); }
h6 { font-size: var(--base-h6-size); }

p,
li {
    line-height: var(--base-p-line-height);
}

.ptb-title {
    font-size: var(--base-title-size);
    line-height: 1.2;
}

@media only screen and (max-width:575px) {
    .ptb-title {
        font-size: 20px;
    }
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--pc);
}

button {
    border: none;
}

.custom-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.custom-row::after {
    content: '';
    clear: both;
    display: table;
}

.section-title {
    text-align: center;
}

.section-title h4 {
    font-size: 35px;
    font-weight: 700;
    line-height: 47px;
    color: var(--wc);
    display: inline-block;
    text-transform: uppercase;

}

/*.section-title h4::after{*/
/*    content: '';*/
/*    height: 2px;*/
/*    width: 80px;*/
/*    background: -o-linear-gradient(330.11deg, #EB06FF 9.93%, #06D2FF 145.3%);*/
/*    background: linear-gradient(119.89deg, #EB06FF 9.93%, #06D2FF 145.3%);*/
/*    display: block;*/
/*    margin-top: 20px;*/
/*    margin-inline-start: -30px;*/
/*}*/
.section-title.no-after h4::after {
    display: none;
}

.section-title2 h4 {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    text-transform: uppercase;
}

.section-title2 h6 {
    display: inline-block;
    margin: 0;
    padding-block-end: 12px;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--violet-600);
}

.section-title2 h4::after {
    content: '';
    height: 2px;
    width: 80px;
    background: var(--gradient-brand);
    display: block;
    margin: 20px auto 0;
}

.text-justify {
    text-align: justify;
}
