
*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*=================================== Body ================================================                                   
===========================================================================================*/
body {
    background-color: white; 
    font-family: sans-serif;
}
.first-section {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center; 
}
.Logo-Picture {
    margin-top: 30px;
    margin-bottom: 30px;   
}
/*CSS for slideshow start*/
.second-section {
    margin: 0;
    padding-top: 70px;
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/fundal.jpg");
}
.slider {
    width: 800px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}
.slides {
    width: 500%;
    height: 500px;
    display: flex;
}
.slides input {
    display: none;
}
.slide {
    width: 20%;
    transition: 2s;
}
.slide img {
    width: 800px;
    height: 400px;
}
.slide .slide-text {
    width: 350px;
    position: relative;
    margin-top: -32%;
    margin-left: 220px;
    background-color: rgb(17, 85, 187);;
}
.slide .slide-text h1 {
    text-align: center;
    color: #fff;
    font-size: 50px;
}
/*CSS for manual slide navigation*/
.navigation-manual {
    position: absolute;
    width: 800px;
    margin-top: -140px;
    display: flex;
    justify-content: center;
}
.manual-btn {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
.manual-btn:not(:last-child) {
    margin-right: 40px;
}
.manual-btn:hover {
    background: #fff;
}
#radio1:checked ~ .first {
    margin-left: 0;
}
#radio2:checked ~ .first {
    margin-left: -20%;
}
#radio3:checked ~ .first {
    margin-left: -40%;
}
#radio4:checked ~ .first {
    margin-left: -60%;
}
/*CSS for automatic slide navigation*/
.navigation-auto {
    position: absolute;
    display: flex;
    width: 800px;
    justify-content: center;
    margin-top: 360px;
}
.navigation-auto div {
    border: 2px solid #fff;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child) {
    margin-right: 40px;
}
#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: #fff;
}
#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: #fff;
}
#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: #fff;
}
#radio4:checked ~ .navigation-auto .auto-btn4 {
    background: #fff;
}
/*CSS for slideshow end*/
.third-section {
    background-color: #fff;
    margin-bottom: 10px;
}
.columns {
    margin-left: 30px;
    margin-right: 30px;
    column-count: 3;
    column-width: 250px;
    column-rule: 1px dotted #000;
    column-gap: 3em;
}
.columns-contact {
    margin: auto;
    width: 100%;
    column-count: 2;
    column-width: 250px;
    column-rule: 1px dotted #000;
    column-gap: 3em;
    text-align: center;
}
.columns-contact h2 {
    margin-bottom: 10px;
}
/*CSS for column icons*/
.third-section .container .columns .fa {
    font-size: 100px;
    color: rgb(17, 85, 187);
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
.third-section .container .columns {
    text-align: justify;
    text-indent: 10px;
}
.third-section .container .columns h1 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}
.fourth-section {
    width: 100%;
    height: auto;
    color: #000;
    font-family: sans-serif;
    position: relative;
    padding: 10px;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: rgb(240, 240, 240);
    text-align: center;
  }
.fourth-section h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 20px 0;
}
.fourth-section a {
    font-size: 20px;
    font-weight: bold;
}
.fourth-section a:link, a:visited {
    background-color: white;
    color: rgb(17, 85, 187);
    border: 2px solid rgb(17, 85, 187);
    border-radius: 10px;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}
.fourth-section a:hover, a:active {
    background-color:rgb(17, 85, 187);
    color: #fff;
    transition: 0.4s;
}
/*=================================== Menu-bar ============================================                                   
===========================================================================================*/
.menu-bar {
    background: rgb(17, 85, 187);
    text-align: center;
}
.menu-bar ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
}
.menu-bar ul li {
    width: 120px;
    margin: 15px;
    padding: 15px;
}
.menu-bar ul li a {
    text-decoration: none;
    color: #fff;
}
.active, .menu-bar ul li:hover {
    background-color: rgb(9, 157, 202);
    border-radius: 3px;
    transition: 0.4s;
}
.active, .menu-bar ul li:first-child {
    background-color: rgb(17, 85, 187);
}
.active, .menu-bar ul li:first-child:hover {
    background-color: rgb(9, 157, 202);
    transition: 0.4s;
}
.menu-bar .fa {
    margin-right: 8px;
}
/*=================================== Sub-menu-1 ==========================================                                   
===========================================================================================*/
.sub-menu-1 {
    display: none;
}
.menu-bar ul li:hover .sub-menu-1 {
    display: block;
    position: absolute;
    background-color: rgb(17, 85, 187);
    margin-top: 15px;
    margin-left: -15px;
}
.menu-bar ul li:hover .sub-menu-1 ul {
    display: block;
    margin: 10px;
}
.menu-bar ul li:hover .sub-menu-1 ul li {
    width: 150px;
    padding: 15px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
}
.menu-bar ul li:hover .sub-menu-1 ul li:last-child {
    border-bottom: none;
}
.menu-bar ul li:hover .sub-menu-1 ul li a:hover {
    color: rgb(9, 157, 202);
    transition: 0.4s;
}
.fa-angle-right {
    float: right;
}
/*=================================== Sub-menu-2 ==========================================                                   
===========================================================================================*/
.sub-menu-2 {
    display: none;
}
.hover-me:hover .sub-menu-2 {
    position: absolute;
    display: block;
    margin-top: -40px;
    margin-left: 140px;
    background: rgb(17, 85, 187);
}
/*================================ Contact form ===========================================                                   
===========================================================================================*/
.contact-box {
    width: 80%;
    height: auto;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px #777;
    margin-bottom: 20px;
}
.contact-map {
    width: 100%;
    height: auto;
    flex: 50%;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
}
.contact-info {
    padding: 30px 30px;
    margin: 16px 0 32px 0;
    position: relative;
    
}
.contact-info h2 {
    margin-bottom: 10px;
}
.contact-form {
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px;
    text-align: center;
}
.contact-form h2 {
    margin-bottom: 10px;
}
.input-field {
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 50px;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.input-field::placeholder {
    color: #aaa;
}
.textarea-field {
    padding-top: 10px;
    height: 150px;
}
.textarea-field::placeholder {
    color: #aaa;
}
.button-contact {
    width: 50%;
    border: none;
    outline: none;
    border-radius: 50px;
    border: 2px solid rgb(17, 85, 187);
    background: rgb(17, 85, 187);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    padding: 10px 0;
    cursor: pointer;
    font-size: 15px;
}
.button-contact:hover {
    color: rgb(17, 85, 187);
    background-color: #fff;
    transition: 0.4s;
}
/*=================================== Footer ==============================================                                   
===========================================================================================*/
.site-footer {
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    background: rgb(17, 85, 187);
    text-align: center;
    color: #fff;
    padding: 20px 0;
}
.site-footer h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 16px
}
@media (max-width:767px) {
    .site-footer .item:not(.social) {
        text-align: center;
        padding-bottom: 20px
    }
}

.site-footer .item.text {
    margin-bottom: 15px
}
@media (max-width:767px) {
    .site-footer .item.text {
        margin-bottom: 0
    }
}
.site-footer .item.social {
    text-align: center
}
@media (max-width:991px) {
    .site-footer .item.social {
        text-align: center;
        margin-top: 20px
    }
}
.site-footer .item.social > a {
    font-size: 20px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
    margin: 0 8px;
    color: #fff;
    opacity: 0.75
}
.site-footer .item.social > a:hover {
    color:rgb(9, 157, 202);
    transition: 0.4s;
}
.site-footer .copyright {
    text-align: center;
    padding-top: 24px;
    opacity: 0.3;
    font-size: 13px;
    margin-bottom: 0
}