/* Base CSS */

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    color: #003063;
    font-family: 'Gotham';
}

body {
    color: #575756;
    font-weight: 400;
    font-family: 'Gotham Book';
}

@font-face {
    font-family: 'Gotham Book';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}


/*---------------------- Header area start ----------------------*/

.menu-close {
    font-size: 16px;
    color: #3d424e;
    position: absolute;
    top: 12px;
    left: 15px;
    cursor: pointer;
    transition: .4s;
    border: 1px solid #3d424e;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.menu-close:hover {
    background: #1D71B7;
    border-color: #1D71B7;
    color: #fff;
}

.offcanvas-area {
    position: fixed;
    right: -100%;
    height: 100%;
    width: 300px;
    background: #F5FCFF;
    z-index: 6;
    padding-top: 35px;
    -webkit-transition: .4s;
    transition: .4s;
    visibility: hidden;
    top: 0;
}
.offcanvas__logo {
	padding-top: 30px;
	max-width: 235px;
}
.offcanvas-area.active {
    right: 0;
    visibility: visible;
}

.offcanvas-area .main-menu ul li a {
    font-size: 19px;
    color: #222;
    display: block;
    text-decoration: none;
    transition: .3s;
    font-weight: 500;
    padding: 9px 21px;
    border-bottom: 1px solid #00000054;
}

.offcanvas-area .main-menu ul li:first-child a {
    border-top: 1px solid #00000054;
}

.offcanvas-area .main-menu ul li a:hover, .offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #1D71B7;
}

.offcanvas-menu .main-menu ul {
    display: block;
    padding-top: 42px;
    padding-left: 0;
    margin-bottom: 65px;
    list-style: none;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 5;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 32px;
    color: #003063;
    display: none;
    cursor: pointer;
    position: relative;
    top: 0px;
    margin-left: 20px;
    margin-right: 4px;
    transition: .3s;
}

.menu-open:hover {
    color: #e94e1b;
}

.offcanvas-menu .common-btn {
    font-size: 17px;
    padding: 9px 30px;
    border-radius: 12px;
}

.subb-menu {
    padding-left: 10px;
}

.offcanvas-area .main-menu .subb-menu a {
    font-size: 16px;
    margin: 0px;
    padding-left: 10px;
    margin-left: 26px;
    margin-bottom: 10px;
}

.offcanvas-area .main-menu .subb-menu a:last-child {
    margin-bottom: 20px;
}

.header__logo {
    max-width: 277px;
    margin: 0 auto;
}

.header__nav ul li a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    margin: 2px 12px;
    display: inline-block;
    color: #003063;
    font-weight: 500;
    transition: .3s;
}

.header__nav ul li a:hover {
    color: #E94E1B;
}

.header {
    padding: 15px 0;
    position: sticky;
    box-shadow: 0 0 10px #00000036;
    font-family: 'Gotham';
    transition: .3s;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: #fff;
}

.header__top {
    transition: .1s;
    margin-bottom: 7px;
}

.header.scroll-header .header__top {
    height: 0;
    transform: scale(0);
    opacity: 0;
}

.header.scroll-header .header__logo-2 {
    transform: scale(1);
}

.header.scroll-header .header__logo-2 img {
    height: auto;
}

.header.scroll-header 
.header__nav {
    justify-content: space-between;
}

.header__social {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 65%;
    transform: translateY(-50%);
}

.header__social a {
    width: 28px;
    height: 28px;
    margin-left: 12px;
    border-radius: 7px;
    background: #1d71b7;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: .3s;
}

.header__social a:hover {
    background: #E94E1B;
    color: #fff;
}

.header__nav {
    display: flex;
    justify-content: center;
}

.header__logo-2 {
    max-width: 200px;
    transition: .1s;
    transform: scale(0);
    margin-right: 20px;
}

.header__logo-2 img {
    transition: 0s;
    height: 0;
}

/*---------------------- Header area end ----------------------*/



/*---------------------- Hero area start ----------------------*/
.hero__thumb {
    height: 675px;
}

.hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-wrap {
    max-width: 560px;
    margin-left: auto;
    margin-right: 0;
    padding: 0 20px;
}

.hero__content h3 {
    font-size: 57px;
    font-weight: 700;
    line-height: 1.18;
    padding-bottom: 22px;
}

.hero__content p {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
    padding-bottom: 7px;
}

.hero__content p span {
    display: block;
    color: #e94e1b;
}

.hero__logo {
    padding-bottom: 35px;
    max-width: 265px;
}

/*---------------------- Hero area end ----------------------*/



/*---------------------- About area start ----------------------*/
.about__area {
    padding: 40px 0;
    background: #00306330;
    position: relative;
}

.illustration {
    top: -180px;
    left: 0;
    z-index: -1;
    height: 729px;
}

.illustration img {
    max-height: 100%;
}

.about__content p {
    font-size: 20px;
    padding-left: 10px;
}

.about__thumb {
    height: 660px;
}

.about__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*---------------------- About area end ----------------------*/


/*---------------------- News area start ----------------------*/
.news__area {
    padding: 70px 0;
}

.news__area .section__title h3 {
    color: #003063;
}

.news__thumb {
    height: 404px;
    margin-bottom: 20px;
}

.news__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__content h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}

.news__content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.news__content a {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: #003063;
    font-family: 'Gotham';
    font-size: 18px;
    transition: .3s;
}

.news__content a:hover {
    color: #E94E1B;
}

.news__item__thumb {
    width: 210px;
    flex: 0 0 auto;
    height: 148px;
    margin-right: 20px;
}

.news__item__thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news__item .news__content h4 {
    font-size: 22px;
}

.news__item .news__content p {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.news__item .news__content a {
    font-size: 17px;
}

.news__item {
    display: flex;
    margin-bottom: 20px;
}


/*---------------------- News area end ----------------------*/


/*---------------------- Meet area start ----------------------*/
.meet__area {
    padding: 50px 0;
    background: #F3F3F3;
}

.meet__thumb {
    height: 370px;
    width: 100%;
}

.meet__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet__content__wrapper {
    padding: 10px;
}

.meet__content__wrapper p {
    font-size: 20px;
    color: #3C3C3B;
}

.meet__content__wrapper h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #3C3C3B;
    padding-bottom: 2px;
}

.meet__slider__item {
    padding-top: 5px;
}

.owl-dots {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: #706f6f !important;
    margin: 0 4px;
}

.owl-dots button.active {
    background: #f60 !important;
}

/*---------------------- Meet area end ----------------------*/



/*---------------------- Map area start ----------------------*/
.map__area {
    padding: 70px 0;
    padding-bottom: 120px;
}

.section__title p {
    font-size: 36px;
    color: #222222;
    line-height: 1.23;
    font-weight: 500;
    font-family: 'Gotham';
}

.section__title h3 span {
    color: #1D71B7;
}

.section__title h3 {
    font-size: 48px;
    color: #222222;
    padding-bottom: 3px;
    font-weight: 700;
}

.section__title {
    padding-bottom: 40px;
}

/*---------------------- Map area end ----------------------*/



/*---------------------- Footer area start ----------------------*/
.footer {
    background: #012342;
    padding: 55px 0;
}

.warmia {
    flex: 0 0 auto;
    max-width: 140px;
}

.bg-dark.h-30 {
    height: 40px;
}

.footer__item ul {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-top: 16px;
}

.footer__item ul li a {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.1;
    display: block;
    margin-bottom: 7px;
    transition: .3s;
}

.footer__item ul li a:hover {
    color: #E94E1B;
}

.footer__logo {
    margin-bottom: 23px;
}

.footer__logo-2 {
    margin-bottom: 35px;
}

.footer__item {
    margin-bottom: 20px;
}

/*---------------------- Footer area end ----------------------*/


/*---------------------- Copyright area start ----------------------*/
.copyright__area {
    padding: 30px 0;
}

.copyright__area p {
    font-size: 20px;
    color: #003063;
    margin-bottom: 0;
    padding-right: 20px;
    text-align: end;
}

/*---------------------- Copyright area end ----------------------*/