@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
html {
    scroll-behavior: smooth;
}


/* Hide scrollbar for Chrome, Safari and Opera */

::-webkit-scrollbar {
    width: 0;
}


/* Hide scrollbar for IE, Edge and Firefox */

.body {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
    color: #575756;
    overflow-x: hidden;
    font-weight: 300;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
}

h2 {
    font-size: 38px;
    line-height: 1.25;
}

h3 {
    font-size: 28px;
    line-height: 1.33;
}

h4 {
    font-size: 20px;
    line-height: 1.5;
}

.intro {
    font-size: 1.5em;
    line-height: 1.53;
}

small {
    font-size: 17px;
}

ul,
ol {
    /* font-size: 17px;
    line-height: 1.4; */
    padding-left: 1em;
}

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

button {
    font-family: inherit;
}

input,
select,
textarea {
    background-color: #EAF0F7;
    border: 0;
    border-radius: 0;
    padding: 15px 20px;
    font-size: inherit;
    font-family: inherit;
    color: #575756;
}

.btn {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    background-color: #0075C9;
    padding: 15px 30px;
    color: #fff;
    display: inline-block;
    cursor: pointer;
}

figure {
    margin: 0;
}

.d-flex {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.space-between {
    justify-content: space-between;
}

.content-end {
    justify-content: flex-end;
}

.flex-end {
    align-items: flex-end;
}

.flex-start {
    align-items: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.row-reverse {
    flex-direction: row-reverse;
}

.container {
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.btn-light {
    background-color: #00AEEF;
}

a {
    text-decoration: none;
    color: #0075C9;
}

hr {
    margin: 0;
}

blockquote {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    line-height: 1.53;
}

.relative {
    position: relative;
}

.static {
    position: static;
}

.menu,
.sub-menu,
.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-links a {
    width: 69px;
    height: 69px;
    background-color: #00AEEF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    font-size: 0;
    width: 25px;
    height: 110px;
    margin-top: -55px;
    background: url(../images/arrow.svg) 100% center no-repeat;
    background-size: 100%;
    border: none;
    z-index: 2;
    cursor: pointer;
}

.slick-next {
    right: 10px;
    transform: rotate(180deg);
}

.slick-prev {
    left: 10px;
}

.slick-dots {
    display: flex;
    align-items: center;
    margin: auto;
    position: absolute;
    bottom: 30px
}

.slick-dots button {
    background: none;
    border: 0;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    display: none;
    overflow: hidden;
    outline: 0;
}

.modal-dialog {
    max-width: 1110px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: auto;
}

.modal-content {
    background: #FFFFFF;
    box-shadow: 0px 6px 58px rgba(196, 203, 214, 0.103611);
    width: 100%;
    padding: 30px;
    margin: 0 15px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    background-color: #000;
}

.modal-backdrop.show {
    opacity: .5;
}

.close {
    cursor: pointer;
    border: 0;
    padding: 0;
    background: none;
    position: absolute;
    right: 0;
}

.section {
    padding: 50px 0;
}

.page-header,
.entry-header {
    padding-top: 3vw;
}
.btn-blue{
	background-color: #0075C9;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    box-shadow: none; 
	padding: 15px 25px;
    display: inline-block;
}
.btn-blue:hover{
	background-color: #00AEEF;
}
.btn-red{
	background: #9A2617;
    color: #fff;
    padding: 15px 25px;
    display: inline-block; 
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    box-shadow: none; 
}
.btn-red:hover{
	background-color: #c1101e;
}