/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{

    /* Font */
    --inter: "Inter", serif;
    
    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #013888;
    --secondary: #BFBD00;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html, body {
    height: 100%;
    scroll-behavior: smooth;
    font-size: 10px;
}
body {
    font-family: var(--inter);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    background:var(--white);
    color: var(--black);
    text-rendering: optimizeLegibility;
    overflow-x:hidden;
}
p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
}
section, .section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
}
a, button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a, button {
	outline: none;
	box-shadow: none;
}
button {
	background: unset;
}
ol, ul {
    margin: 0;
    padding: 0;
}
ol li, ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input, input:focus, input:focus-visible, input:active, select, .form-select, .form-select:focus, textarea {
    outline: none;
    box-shadow: none;
}
* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
	margin: 0;
	padding: 0;
}

*::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

::selection {
  background: var(--secondary);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 1.6rem;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 1.6rem;
  opacity: 1;
}

/* Reusable CSS Start */
.btn {
    min-width: auto;
    height: auto;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 1.2rem 2.8rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    border-radius: 8.0rem;
    background-color: var(--secondary);
    transition: all .3s ease-in-out;
}

.btn span {
    display: inherit;
    line-height: 1;
}

.btn span svg {
    max-width: 2.2rem;
}

.btn i {
    max-width: 2rem;
}

.btn:hover {
    background-color: var(--primary);
    color: var(--white);
    gap: 1rem;
}

/* Reusable CSS End */

/* Bootstrap Customized CSS Start */
.fs-1 {
	font-size: 5.6rem !important;
}
.fs-2 {
	font-size: 3.6rem !important;
}
.fs-3 {
    font-size: 2rem !important;
}
/* Bootstrap Customized CSS End */


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__top {
    padding: 1rem 0;
    background-color: var(--primary);
}
.topbar__mail {
    font-size: 1.4rem;
}
.topbar__mail a {
    color: var(--white);
    transition: all .3s ease-in-out;
}
.topbar__mail a:hover {
    color: var(--secondary);
}
.header__wrapper {
    padding: 1.6rem 0;
}
.logo {
	max-width: 10rem;
}

/* Mobiel Menu Start */
.header__menu, .menu__close {
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    color: var(--secondary);
    line-height: 1;
    border: .1rem solid var(--secondary);
    border-radius: .4rem;
    transition: all .3s ease-in-out;
}
.header__menu:hover, .menu__close:hover {
    color: var(--white);
    border-color: var(--primary);
    background-color: var(--primary);

}
.menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(.75rem);
}
.menu__item {
    border-bottom: .1rem solid rgba(0, 0, 0, 0.15);
}
.menu__item:first-child {
    border-top: .1rem solid rgba(0, 0, 0, 0.1);
}
.menu__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #535353;
    text-transform: uppercase;
    padding: 1.4rem 1.6rem;
    transition: all .3s ease-in-out;
}
.menu__link:hover, .menu__link.active {
    color: var(--primary);
    background-color: rgba(0, 0, 0, 0.025);
}
.menu__link.active {
    font-weight: 700;
}
.menu__link__text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: .2rem;
    border-radius: 1rem;
    background-color: var(--primary);
    transition: all .3s ease-in-out;
}
.menu__link:hover .menu__link__text::after, .menu__link.active .menu__link__text::after {
    width: 50%;
}
.follow__us__title {
    font-size: 1.6rem;
    color: var(--primary);
    text-underline-offset: .4rem;
}
.follow__link {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: .4rem;
    transition: all .3s ease-in-out;
}
.follow__link:hover {
    background-color: var(--secondary);
    color: var(--white);
}
.btn.btn--header {
	min-width: 17.5rem;
	height: 5rem;
	font-size: 1.4rem;
	padding: 1rem 3rem;
}
.btn.btn--header i {
    font-size: 1.8rem;
}
/* Mobiel Menu End */

.header__navigation, .header__ul {
    gap: 2rem;
}
.header__link {
    font-size: 1.5rem;
    font-weight: 500;
    color: #535353;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease-in-out;
}
.header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: .2rem;
    border-radius: 1rem;
    background-color: var(--primary);
    transition: all .3s ease-in-out;
}
.header__link:hover, .header__link.active {
    color: var(--primary);
}
.header__link.active {
    font-weight: 700;
}
.header__link:hover::after, .header__link.active::after {
    width: 50%;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero {
    padding: 7rem 0;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to right, #0D3E86 3%, #0D3E8600 100%);
}
.hero__pretitle {
	font-size: 2.2rem;
}
.hero__pretitle__icon {
	max-width: 3.6rem;
	margin-right: -2rem;
	margin-bottom: -0.5rem;
}
.main__title span::before {
	content: "";
	width: 107%;
	height: 95%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--primary);
	border-radius: .4rem;
	z-index: -1;
}
.btn.btn--hero {
    background-color: #202324;
}
.btn.btn.btn--hero:hover {
    background-color: var(--secondary);
    color: #202324;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 About Section CSS Start */
/* =============================== */
.about {
    padding: .8rem;
}
.about__thumb {
	height: 30rem;
	border-radius: 1rem;
}
.about__content {
    background-color: var(--primary);
    border-radius: 1rem;
    padding: 4rem 3rem;
}
.btn.btn--about:hover {
    background-color: var(--white);
    color: var(--primary);
}
.section__heading {
    color: var(--primary);
    line-height: 1.15;
}
.about__para {
    line-height: 1.68;
}
.about__pencil {
	max-width: 11rem;
	margin-bottom: -3.2rem;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
/* =============================== */
/* :: 6.0 About Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 News Section CSS Start */
/* =============================== */
.news {
    padding: 5rem 0;
}
.news::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(191, 188, 0, 0) 0%, rgba(191, 188, 0, .15));
    z-index: -1;
}
.news .section__heading {
    margin-bottom: 40px;
}
.news__card {
    padding: .5rem;
    border-radius: .8rem;
    border: .1rem solid #C8C8C8;
    height: 100%;
    transition: all .3s ease-in-out;
}
.news__thumb {
    height: 30.5rem;
    border-radius: .6rem;
}
.news__thumb img {
    transition: all .75s ease-in-out;
}
.news__card:hover .news__thumb img {
    transform: scale(1.05);
}
.news__text {
    padding: 2.5rem 2rem;
}
.news__title {
    color: #202324;
    font-size: 1.8rem;
}
.news__date {
    color: #202324;
}
.news__link {
    color: var(--primary);
    gap: 0.8rem;
    transition: all .3s ease-in-out;
}
.news__link:hover {
    color: var(--secondary);
    gap: 1rem;
}
/* =============================== */
/* :: 7.0 News Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Section-block CSS Start */
/* =============================== */


.section-block-area {
    padding: 5rem 0;
}
.section-block__content h2 {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.section-block__content p {
    font-size: 1.4rem;
    color: #464646;
    font-weight: normal;
    font-family: var(--poppins);
    margin-bottom: 2.5rem;
}
.section-block__content h2 br {
    display: none;
}
.section-block__img img {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
}
.section-block:not(:last-child) {
    margin-bottom: 3.0rem;
}

/* =============================== */
/* :: 8.0 Section-block CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Get In Touch CSS Start */
/* =============================== */


.git-area__woman {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.git-info__box {
    position: relative;
    background: var(--primary);
    border-radius: 3rem;
    padding: 3.5rem 2rem;
}
.git-info__box-object {
    position: absolute;
    top: -3rem;
    right: -1.2rem;
    max-width: 4rem;
}
.git-area {
    overflow-x: hidden;
    background: linear-gradient(0deg, rgba(217, 217, 217, 0) 0%, rgba(191, 189, 0, 0.15) 100%);

}
.git-area .container-max {
    padding: 5rem 0 5rem;
}
.git-info__box ul li a {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.git-info__box ul li a span.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--secondary);
}
.git-info__box ul li a span.icon svg {
    max-width: 2.2rem;
}
.git-info__box ul li a span.content b {
    display: block;
}
.git-info__box ul li a span.content {
    font-size: 1.6rem;
    color: var(--white);
    line-height: 2.4rem;
}
.git-info__box ul li a {
    padding: 1.5rem 0;
    border-bottom: 0.1rem solid #FFF3;
}
.git-info__box ul li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}
.git-info__box ul li:first-child a {
    padding-top: 0;
}
.git-content__header {
    margin-bottom: 1.4rem;
}
.form-control {
    border: none;
    background: transparent;
    border-bottom: 1px solid #00000033;
    border-radius: 0;
    padding: 1.2rem 0;
    font-size: 1.4rem;
    resize: none;
}
.form-box {
    position: relative;
    margin-bottom: 2rem;
}
.form-box label {
    position: absolute;
    top: 1.3rem;
    font-size: 1.4rem;
    pointer-events: none;
    transition: all .3s;
}
.form-box textarea:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
}
.form-box input:focus {
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-color: #000;
}
.form-box input:focus~label,
.form-box input:valid~label {
    top: -0.4rem;
    font-size: 1rem;
}
.form-box textarea:focus~label,
.form-box textarea:valid~label {
    top: -0.4rem;
    font-size: 1rem;
}
.form-select {
    min-height: 4.6rem;
    font-size: 1.4rem;
    border: none;
    border-bottom: 1px solid #00000033;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    color: #000000;
}

/* =============================== */
/* :: 9.0 Get In Touch CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 footer CSS Start */
/* =============================== */

.footer-top {
    background-color: #111111;
    padding: 4.0rem 0 2.0rem;
}
.footer-content {
    max-width: 18.5rem;
}
.footer-content h4 {
    margin-bottom: 1.8rem;
}
.footer-content h4 a {
    display: block;
    text-decoration: none;
}
.footer-content__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
}
.footer-content__social a {
    width: 4.2rem;
    height: 4.2rem;
    border: 0.1rem solid var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-content__social a:hover {
    background-color: var(--white);

}
.footer-content__social a:hover svg path {
    fill: var(--primary);

}
.footer-widget h5 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.footer-widget__menu li a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    color: #969696;
    line-height: 1.9rem;
    padding: 0.4rem 0px;
}
.footer-widget__menu li a:hover {
    color: var(--secondary);
}
.footer-bottom {
    background-color: var(--primary);
    padding: 1.6rem 0 1.6rem;
}
.footer-bottom__text {
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    text-align: center;
}

/* =============================== */
/* :: 10.0 footer CSS End */
/* =============================== */

.section-block-area ul li {
    list-style: disc;
    margin-left: 15px;
    font-family: var(--poppins);
    font-size: 1.5rem;
    font-weight: normal;
    color: #464646;
    line-height: 2.4rem;
}

input.cfield { display: none; }

.date { font-size: 1.8rem; font-style: italic; }
.git-area2 .container-max { padding: 0 !important; }
h2.blue { font-size: 4.5rem !important; color: var(--primary); }