/*** fonts ****/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*:last-child{
margin-bottom: 0 ;
}
:root {
--primary_font: "Lato", sans-serif;
--secondary_font: "Montserrat", sans-serif;
--white: #fff;
--secondary: #2c2c2c;
--primary: #3a3a3a;
--grey: #474747;
--light-grey: #fafafa;
--blue: #005581;
--dark-blue: #174258;
--light_bg: #F5F5F5;
}


/*** typography ***/
body {
font-family: var(--primary_font);
font-size: 16px;
line-height: 26px;
color: var(--primary);
font-weight: 400;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
font-family: var(--secondary_font);
font-weight: 700;
color: var(--heading_color);
}
h1,.h1 {
font-size: 42px;
line-height: 1.334;
}
h2,.h2 {
font-size: 34px;
line-height: 1.25;
}
h3,.h3 {
font-size: 30px;
line-height: 1.4;
}
h4,.h4{
font-size: 25px;
line-height: 1.2;
}
h5,.h5{
font-size: 20px;
line-height: 1.2;
}
h6,.h6{
font-size: 18px;
line-height: 1.2;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

/***btn ***/
.btn-wrap{
margin-top: 30px;
}
.btn {
background: var(--blue);
border-radius: 20px;
color: var(--white);
border: 1px solid var(--blue);
padding: 7px 14px;
min-width: 140px;
text-align: center;
transition: all 0.3s linear;
}
.btn:hover {
background: var(--white);
border-color: var(--blue);
color: var(--blue);
}
.btn-transparent{
background-color: transparent;
border: 1px solid var(--white);
color: var(--white);
}
.btn-transparent:hover,
.btn-transparent:focus{
background-color: var(--white);
border: 1px solid var(--white);
color: var(--blue);
}

/*** color ***/
.light_bg {
background: var(--light_bg);
}
.section-padding{
padding: 80px 0;
}

/*-- slick slider ----*/
.slick-slider .slick-dots {
padding: 0;
list-style: none;
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin-top: 50px;
}
.slick-slider .slick-dots > li {
width: 18px;
height: 18px;
border-radius: 50%;
line-height: 1;
opacity: 1;
font-size: 0;
border: 1px solid var(--white);
background-color: var(--grey);
display: inline-flex;
align-items: center;
justify-content: center;
}
.slick-slider .slick-dots > li button {
width: 12px;
height: 12px;
border: 0;
border-radius: 50%;
font-size: 0;
background: var(--white);
line-height: 1;
}
.slick-slider .slick-dots > li.slick-active button {
background: var(--blue);
}
.slick-slide {
margin: 0 20px;
height: inherit;
}
.slick-list {
margin: 0 -20px;
}
.slick-track {
display: flex;
}


/*---- responsive ----*/

@media(max-width: 991px){
.section-padding{
padding: 60px 0;
}

h1,.h1 {
font-size: 34px;
line-height: 1.2;
}
h2,.h2 {
font-size: 28px;
line-height: 1.2;
}
h3,.h3 {
font-size: 26px;
line-height: 1.4;
}
h4,.h4{
font-size: 22px;
line-height: 1.2;
}
h5,.h5{
font-size: 20px;
line-height: 1.2;
}
h6,.h6{
font-size: 18px;
line-height: 1.2;
}
.slick-slider .slick-dots {
    margin-top: 40px;
}
}

@media(max-width: 767px){
.section-padding{
padding: 40px 0;
}
h1,.h1 {
font-size: 28px;
line-height: 1.2;
}
h2,.h2 {
font-size: 24px;
line-height: 1.2;
}
h3,.h3 {
font-size: 22px;
line-height: 1.4;
}
h4,.h4{
font-size: 20px;
line-height: 1.2;
}
h5,.h5{
font-size: 18px;
line-height: 1.2;
}
h6,.h6{
font-size: 16px;
line-height: 1.2;
}
}

/*--- global styles for header and footer -----*/

/*** header ***/
header.site-header {
    padding: 18px 0;
    background-color: var(--blue);
    position: relative;
    z-index: 9;
}
.site-header .navbar {
    padding: 0;
}
.site-header .header-logo {
    background-color: var(--white);
    padding: 14px;
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: -58px;
    margin-top: -18px;
}
.site-header .navbar-nav a.nav-link {
    font-size: 16px;
    line-height: 19px;
    padding: 5px;
    color: var(--white);
    font-family: var(--primary_font);
    position: relative;
    transition: 0.3s;
}
.site-header .navbar-nav a.nav-link::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--white);
}
.site-header .navbar-nav a.nav-link:hover::before,
.site-header .navbar-nav a.nav-link.active::before{
    width: 100%;
}
.site-header .navbar-nav {
    display: flex;
    gap: 28px;
}
.header-contact {
    border: 1px solid #0778B2;
    border-radius: 5px;
    margin-left: 35px;
}
.header-contact .contact-title {
    padding: 9px;
    font-size: 15px;
    line-height: 18px;
    color: var(--white);
    font-weight: 500;
    font-family: var(--primary_font);
    background-color: #0778B2;
}
.contact-numbers {
    padding: 5px 12px;
    background-color: #222;
    border-radius: 0 5px 5px 0;
    color: var(--white);
}
.contact-numbers span {
    font-size: 15px;
    line-height: 18px;
    display: inline-block;
    color: var(--white);
}
.contact-numbers span a {
    color: var(--white);
    text-decoration: none;
}
.contact-numbers span:nth-child(1) {
    margin-right: 10px;
}
.contact-numbers span:nth-child(2){
    opacity: 0.58;
}
.contact-numbers span:nth-child(3) {
    margin-left: 8px;
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.5);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
button.navbar-toggler {
    box-shadow: none !important;
}


/*--- footer ----*/
footer p {
color: var(--white)
}
.footer-top {
background-color: var(--blue);
color: var(--white);
}
.footer-logo img {
max-width: 212px;
}
.footer-text p {
opacity: 0.88;
}
.footer-social {
gap: 20px;
}
.footer-social>a {
width: 34px;
height: 34px;
display: inline-flex;
align-items: center;
justify-content: center;
background-color: var(--white);
border-radius: 50%;
transition: 0.3s;
}
.footer-social>a:hover {
    transform: translateY(3px);
}
.footer-social i {
font-size: 18px;
line-height: 1;
color: #000;
height: 18px;
}
.footer-social i::before {
vertical-align: unset;
}
footer .border-column {
padding: 20px 0px 20px 70px;
border-left: 2px solid var(--dark-blue);
border-right: 2px solid var(--dark-blue);
}
.footer-links ul {
list-style: none;
padding: 0;
}
.footer-links ul li {
margin-bottom: 16px;
}
.footer-links ul li:last-child {
margin-bottom: 0;
}
.footer-links ul li a {
color: var(--white);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
position: relative;
transition: 0.3s;
}
.footer-links ul li a::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: var(--white);
    transition: 0.3s;
}
.footer-links ul li a:hover::before{
    width: calc(100% - 22px);
    left: 22px;
}
.footer-links ul li i {
color: #278bbf;
font-size: 12px;
}
footer .contact-wrapper {
padding: 20px 0 20px 58px;
}
.footer-heading h4 {
font-size: 25px;
}
.footer-contact p i {
margin-right: 18px;
}
.footer-bottom {
background-color: var(--dark-blue);
padding: 22px 0;
}
.footer-bottom p {
font-size: 15px;
line-height: 18px;
opacity: 0.9;
}


/*---- responsive -----*/

@media(max-width: 1320px){
    .site-header .navbar-nav {
    gap: 18px;
}
}
@media(max-width: 1199px){
/*---- header -----*/
.header-contact {
    display: none !important;
}
    /*---- footer ----*/
    footer .border-column {
    padding-left: 50px;
}
footer .contact-wrapper {
    padding-left: 35px;
}
}

@media(max-width: 991px) {
/*---- header -----*/
.navbar-collapse {
    margin-top: 68px;
}
.site-header .header-logo {
    margin-top: -28px;
}
.site-header .header-logo img {
    max-width: 180px;
}
.site-header .navbar-nav {
    gap: 10px;
    margin-bottom: 0 !important;
}
.site-header .navbar-nav a.nav-link {
    width: auto;
    display: inline-block;
}

/*--- footer ----*/
.footer-heading h4 {
    font-size: 20px;
}
footer .border-column {
    padding-left: 15px;
}
footer .contact-wrapper {
    padding-left: 5px;
}
.footer-contact p i {
    margin-right: 8px;
}
.footer-links ul li a {
    gap: 8px;
}
}

@media(max-width: 767px){
/*---- footer -----*/
footer .border-column {
    margin: 30px 0;
    padding: 10px;
}
}