@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    overflow-y: scroll;
}
/*header start*/
.homeSearch {
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border-right: none;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
    border: 1px solid #cdcdcd;
}

.searchTerm:focus {
    color: #6b6e6e;
}

.searchButton {
    width: 40px;
    height: auto;
    border: 1px solid #cdcdcd;
    background-color: #dbdada;
    text-align: center;
    color: #5a5a5a;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    border-left: none;
}

.language-btn {
    width: auto;
    text-align: center;
    min-height: 36px;
    border-radius: 0;
    border: 0px;
    background-color: rgba(194, 194, 194, 0.10);
    color: #a2a2a2;
    font-size: 15px;
    background-color: #274570;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
}

.topHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F4F2F1;
    padding: 10px 5px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav {
    width: 100%;
    height: 50px;
    display: flex;
    background: #274570;
    backdrop-filter: blur(0.625em);
    color: #fff;
    box-shadow: 1px 3px 4px #E6E6E6;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 10;
}

.brand {
    margin: 15px 2px;
}

.brand img {
    width: 12em;
    height:42px;
}

.navigation {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin-right: 15px;
}

.menu li a {
    color: inherit;
    text-decoration: none;
}

.menu li a:hover {
    /*font-weight: 500;*/
}

.menu-btn {
    display: none;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
/*header end*/
/*content start*/
.contentContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0px;
}
.contentContainer h1 {
    color: #274570;
    margin: 6px 0px;
}
.contentTitle {
    color: #274570;
    font-weight: 600;
    font-size: 16px;
    margin: 10px 0;
}
.contentContainer .content {
    line-height: 1.5;
    text-align: justify;
    color: #484848;
}
.contentContainer table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    line-height: 1.5;
    margin-bottom: 10px;
}
.contentContainer td,th {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    white-space:nowrap;
    width: 100%;
    padding: 5px;
    color: #333333;
}
.contentContainer .tableTitle td {
    font-weight: bold;
}
.contentContainer tr:nth-child(even) {
    background-color: #e0edff79;
}
/*content end */
/*home news card start*/
.newsContainer h1{
    text-align: center;
    color: #274570;
    font-weight: bold;
    margin: 15px 0;
}
.newsCards{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0px;
    gap: 20px;
    flex-wrap: wrap;
}
.blogCard {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 15px;
}
.square {
    width: 350px;
    height: 350px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 20px 50px #D9DBDF;
}

.square a {
    font-size: 12px;
    color: #274570;
    text-decoration: none;
    font-weight: bold;
    text-align: justify;
}

.mask {
    clip: rect(0px, 460px, 220px, 0px);
    border-radius: 4px;
    position: absolute;
}
.square img {
    width: 350px;
    height: auto;
    object-fit: cover;
}

.homeBlog {
    margin: auto;
    text-align: left;
    margin-top: 230px;
    padding-left: 14px;
    font-size: 18px;
}

.homeBlogContent {
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 12px;
    color: #a5a4a4;
    line-height: 18px;
}
.homeBlogContent span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; 
    -webkit-box-orient: vertical;
}
/* home news card end*/

/*slider start*/
.slider {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}
.slide-ana {
    height: 100%;
}

.slide-ana div {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 1s;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slider span {
    height: 50px;
    position: absolute;
    top: 50%;
    margin: -25px 0 0 0;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}
.slider .title {
    top: 80% !important;
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    cursor: auto !important;
    padding: 0 20px;
}

.slide-ana {
    font-size: 30px;
    text-align: center;
    color: #fff;
}

#prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

#next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

#prev svg,
#next svg {
    width: 100%;
    fill: #fff;
}
#prev:hover,
#next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/*slider end*/

/*contact page start*/
.contactContainer h1 {
    color: #274570;
    margin: 15px 0px;
}
.container hr {
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

.contactContainer .contactInfo {
    display: flex;
    justify-content: space-between;
    line-height: 1.6;
    color: #484848;
}
.contactContainer .contactInfo strong{
    font-weight: bold;
    color: #274570;
    margin-right: 5px;
}
.contactContainer .contactMap {
    box-shadow: 0px 0px 5px 0px #bfbfbf;
    margin-bottom: 15px;
}
/*contact page end*/
/*blog news start*/
.blogTag {
    color: #808080ba;
    background: none;
    font-size: 13px;
    list-style-type: none;
    margin: 20px 0;
}
.blogTag i {
    margin-right: 5px;
}
/*blog news end*/
/*footer start*/
.footerContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #839ec521;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
}
.footer-center{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-center i {
    background-color: #274570;
    color: #ffffff;
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    margin: 6px 10px;
}
.footerContainer .footer-center i {
    font-size: 18px;
    line-height: 36px;

}
.footerContainer .footer-center p {
    display: inline-block;
    font-weight: 400;
    vertical-align: middle;
    margin: 0;
}
.footerContainer .footer-center p a {
    color: #274570;
    text-decoration: none;
}
.footerContainer .footer-right {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}
.footerList a{
    text-decoration: none;
    color: #484848;
    font-size: 14px;
    line-height: 1.5;
}
.footerList h2{
    font-size: 20px;
    color: #484848;
}
.footerContainer .footer-right-title {
    font-size: 16px;
    font-weight: bold;
    color: #484848;
    white-space: nowrap;
}
.footerContainer .footer-icons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}
.footerContainer .footer-right i{
    font-size: 26px;
    color: #274570;
    padding: 5px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2px 3px;
    background-color: #274570;
    flex-wrap: wrap;
    font-size: 12px;
    color: white;
}
/*footer end*/
/*responsive start*/
@media only screen and (min-width: 1140px) {
    .container {
        max-width: 1140px;
        padding: 0px;
        margin: auto;
    }
}
.mdn{display:none!important;width:100%;margin-top:12px;}
@media(min-width:768px) {
    .menu {
        opacity: 1 !important;
    }
}
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    .contentContainer td,th {
        font-size:12px;
    }  
    .brand img{ margin-left:12px;}
    .slider .title {
        left: 15%;
        font-size: 14px;
    }
    .mdn{display:block!important;}
    .menu {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: 40vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #274570;
        backdrop-filter: blur(0.625em);
        opacity: 0;
        pointer-events: none;
        margin: 0;
        padding: 0;
    }
    .menu li {
        margin-bottom: 1rem;
    }
    .menu li a {
        font-size: 24px;
    }
    .menu-btn:checked~.menu {
        opacity: 1;
        pointer-events: auto;
    }
    .menu-btn {
        opacity: 1;
        pointer-events: auto;
    }
    .menu-btn.open~.menu {
        opacity: 1;
        pointer-events: auto;
    }
    .menu-btn.open {
        transform: rotate(90deg);
        transition: all .5s ease-in-out;
        box-shadow: none;
    }
    .menu-btn.open::before {
        transform: rotate(45deg) translate(35px, -35px);
    }
    .menu-btn.open::after {
        transform: rotate(-45deg) translate(35px, 35px);
    }
    .contentContainer {
        padding: 0px 14px !important;
    }
    .contactContainer{ margin: 10px 10px;}
    .contactInfo{
        flex-wrap: wrap;
    }
    .contactInfo .contactMap { margin-top: 15px;  width: 100%;}
    .contactInfo iframe { width: 100%;}
    .footerContainer{justify-content: center!important; font-size: 14px;}
    .copyright{justify-content: center;}
    .footerContainer .footer-right { width: 100%!important}
    .contentContainer h1 {font-size: 14px;}
    .footerList{margin: 18px 10px;}
    .newsCards{justify-content: center;}
}
/*responsive end*/

