* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

.container {
    max-width: 1140px;
    margin: 0 auto;
}
header{
    position: sticky;
    top:-35px;
    background-color: white;
    z-index: 99999;
}
header .top-header {
    background-color: #173a69;
    padding: 8px 0;
}

header .top-header .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

header .container .left-side a {
    color: white;
    text-decoration: none;
    margin-right: 47px;
}

header .container .left-side a i {
    margin-right: 8px;
}

header .container .right-side {
    text-align: right;
}

header .container .right-side a {
    color: white;

}

header .container .right-side a:nth-child(2) {
    margin: 0 30px;
}

header nav .container {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 0;

}

header nav .container .logo-column {
    width: 30%;
}

header nav .container .menu-column {
    width: 70%;
    align-content: center;
    text-align: right;
}

header nav .container .menu-column ul {
    list-style-type: none;
}

header nav .container .menu-column ul li {
    display: inline-block;
}

header nav .container .menu-column ul li a {
    text-decoration: none;
    color: #0c1f38;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    padding: 45px 37.5px;
    position: relative;
    transition: .4s;
}

header nav .container .menu-column ul li:last-child a {
    padding-right: 0;
}

header nav .container .menu-column ul li a::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 0;
    background-color: #0c1f38;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4px;
    transition: .4s;
}

header nav .container .menu-column ul li a:hover::after {
    width: 100%;
}

header nav .container .menu-column ul li a:hover {
    background-color: #fbfbfb;
}

.Home-slider .slide-One {
    min-height: 600px;
    background-image: url('images/Slider-One-BG.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    align-content: center;

}

.Home-slider .slide-One .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.Home-slider .slide-One .container .right-side h3 {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 800;
}

.Home-slider .slide-One .container .right-side h1 {
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
}

.Home-slider .slide-One .container .right-side p{
    margin-top: 20px;
    margin-bottom: 28px;
}

.btn-group a {
    background-color: #173a69;
    padding: 13px 28px;
    border: 2px solid #173a69;

    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color:white;
    text-decoration: none;
    transition: .4s;
}

.btn-group a:hover{
    background-color: transparent;
    color:#173a69;
}

.btn-group a:last-child{
    background-color: transparent;
    color:#173a69;
    margin-left: 6px;
}
.btn-group a:last-child:hover{
    background-color: #173a69;
    color:white;
}

.services-section{
    padding: 90px 0 135px 0;
}


.section-heading h2{
    font-weight: 700;
    font-size: 28px;
    text-transform: uppercase;
}

.services-section .section-heading{
    text-align: center;
}
.services-section .section-heading h2{
    text-align: center;
    display: inline-block;
    position: relative;
}

.services-section .section-heading h2::after{
    content: '';
    position: absolute;
    background-image: url('images/servicers-ico.png');
    height: 30px;
    width:228PX;
    background-repeat: no-repeat;
    left:50%;
    transform: translateX(-50%);
    bottom: -60PX;
}

.services-section .services-box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 122px;
}
.services-section .services-box .box{
    text-align: center;
}
.services-section .services-box .box p{
    font-size: 17px;
    margin-top: 30px;
}

.about-section{
    padding: 85px 0 78px 0;
    background-image: url('images/about-bg.jpg');
}

.about-section .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-section .container .section-heading img{
    margin-top: 38px;
    margin-bottom: 23px;
}
.about-section .container .right-side{
    align-content: center;
}
.about-section .container .right-side p{
    font-size: 15px;
    font-weight: 200;
}
.about-section .container .right-side .first-p{
    margin-bottom: 30px;
}
.gallery-section{
    padding: 95px 0;
}
.gallery-section .container{
    text-align: center;
}

.gallery-section .section-heading {
    text-align: center;
}
.gallery-section .section-heading img{
    margin: 30px 0 60px 0;
}
.gallery-section .container .gallery{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
   gap:30px;
}

.gallery-section .container .gallery .item img{
    width: 100%;
}


.gallery-section .container .gallery .item{
    position: relative;

} 

.gallery-section .container .gallery .item::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000007c;
    opacity: 0;
    left: 0;
    top:0;

}
.gallery-section .container .gallery .item:hover::after{
    opacity: 1;
}
.gallery-section .container .gallery .item .caption{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:white;
    opacity: 0;
    z-index: 1;
    transition: .4s;
}

.gallery-section .container .gallery .item .caption i{
    border:2px solid white;
    height: 45px;
    width: 45px;
  
    border-radius: 100%;
    align-content: center;
    font-size: 30px;
}

.gallery-section .container .gallery .item:hover .caption{
    opacity: 1;
}

.gallery-section .container .gallery .item .caption h4{
    font-size: 26px;
    font-weight: 700;
    margin: 15px 0;
}

.gallery-section .container a{
    margin-top: 40px;
    padding: 17px 28px;
    background-color: #173a69;
    text-decoration: none;
    border:2px solid #173a69;
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color:white;
    transition: .3s ease;
}
.gallery-section .container a:hover{
    background-color: transparent;
    color:#173a69;
}
footer .quick-contact{
    background-color: #173a69;
    padding: 80px 0;
}
footer .quick-contact .container{
    text-align: center;
}
footer .quick-contact .container p{
    color:white;
    font-size: 24px;
}
footer .quick-contact .container p a{
    font-size: 30px;
    font-weight: 700;
    color:white;
    text-decoration: none;
}

footer .footer-content{
    text-align: center;
    padding: 65px 0;
}
footer .footer-content .icon-group{
    margin-top: 34px;
}

footer .footer-content .icon-group i{
    color:#7f7f7f;
    border: 2px solid #7f7f7f;
    height: 45px;
    width: 45px;
    border-radius: 100%;
    align-content: center;
} 
footer .footer-content .icon-group i:hover{
    background-color: #173a69;
    color:white;
}

footer .footer-content .icon-group a:nth-child(2) i{
    margin: 0 28px;
}

footer .socket{
    background-color:#000000;
    padding: 30px 0;
}
footer .socket .container{
    text-align: center;
}
footer .socket .container p{
    color:white;
    font-size: 15px;
}
footer .socket .container p a{
    font-weight: 700;
    color:white;
    text-decoration: none;
}