@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #133485;
    --primary-color-2: #fde425;
    --head-color: #44d7b6;
    --text-color: #333;
    --title-color: #002248;
}

body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

img{
    width: 100%;
}

ul, ol{
    list-style: none;
}

a{
    text-decoration: none;
}

.section{
    padding: 60px 0;
}

.bg-secondary{
    background-color: #f5f5f5;
}

.clear-header{
    height: 121px;
}

.wrapper-title{
    margin-bottom: 20px;
}

.wrapper-title.center{
    text-align: center;
}

.wrapper-title h3{
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
}

.wrapper-title h2{
    padding: 20px 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.6;
}

.about-title{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
}

.elementor-image{
    max-width: 900px;
    padding: 20px 0;
}

.elementor-image-2{
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 20px 0;
}


.wrapper-title p{
    font-size: 18px;
    max-width: 992px;
    line-height: 1.7;
    margin: auto;
}

.wrapper-title .subtitle{
    color: #d02525;
    font-size: 22px;
    font-weight: 700;
}

.wrapper-text{
    color: #555;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.7;
}

.wrapper-text p{
    margin-bottom: 10px;
}


.slick-dots li{
    width: 18px;
    height: 18px;
    margin: 0 2px;
}

.slick-dots li.slick-active button{
    border: 1px solid var(--title-color);
    border-radius: 50%;
}

.slick-dots li.slick-active button:before{
    opacity: 1;
    color: var(--title-color);
}

.slick-dots li button{
    width: 18px;
    height: 18px;
}

.slick-dots li button:before{
    width: 18px;
    height: 18px;
    line-height: 18px;
}

.slick-prev{
    left: 30px;
}
.slick-next{
    right: 30px;
}

.slick-arrow{
    border: 1px solid rgba(0,0,0,0.15);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transform: translate(0,-50%);
    cursor: pointer;
    background: #fff;
    font-size: 20px;
    transition: .3s;
    z-index: 9;
    opacity: 0.1;
}
.slick-arrow:hover{
    opacity: 0.5;
}

.next-arrow {
    right: 4px;
}
.prev-arrow{
    left: 4px;
}


.breadcrumb{
    position: relative;
    padding: 10px 40px;
    background: #f5f5f5;
    border-bottom: 2px solid #fff;
}

.breadcrumb ul{
    display: flex;
    align-items: center;
    gap: 18px;
}
.breadcrumb ul li{
    position: relative;
}
.breadcrumb ul li::after{
    content: "";
    position: absolute;
    top: 5px;
    right: -10px;
    width: 1px;
    height: 10px;
    background: #bbb;
    transform: rotate(20deg);
}
.breadcrumb ul li:last-child::after{
    background: transparent;
}
.breadcrumb ul li a{
    display: inline-block;
    font-weight: 300;
    font-size: 14px;
}
.breadcrumb ul li a.active{
    color: var(--primary-color);
}


.bg-contact{
    background: url(../imgs/bg-middle.jpg);
    background-size: cover;
}


.line-text{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    width: 100%;
    z-index: 9;
    border-bottom: 1px solid #ccc;
    transform: translateY(80px);
}

.line-text span{
    display: block;
    text-align: center;
    font-size: 14px;
}