/* styles.css */

.logo {
	color: #000000;
	font-size: 35px;
	letter-spacing: 1px;
	cursor: pointer;
}

span {
    color: #2B3A7E;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Century Gothic, sans-serif;;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

body{
    color: #000000;
    background: #FFFFFF;
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 10%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 14%;
    transition: all .50s ease;
}

.navbar{
    display: flex;
}

.navbar a{
    color: #000000;
    font-size: 15px;
    font-weight: 500;
    margin: 10px 22px;
    transition: all .50s ease;
}

.navbar a:hover{
    color: #2B3A7E;
    transition: .4s;
}

.h-icons{
    display: flex;
    align-items: center;
}

.h-icons i{
    font-size: 25px;
    color:#000000;
    margin-left: 5px;
    margin-right: 20px;
    transition: all .50s ease;
}

.h-icons i:hover{
    transform: translateY(-4px);
    color:#2B3A7E;
}

.menu-icon{
    height: 30px;
    width: 30px;
    background: #000000;
    color:#FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    z-index: 1001;
    cursor: pointer;
    display: none;
}

section{
    padding: 60px 14% 70px;
}

.home{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-text h1{
    font-size: 5rem;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 25px;
}

.home-text p{
    color:#000000;
    font-size: 1.3rem;
    line-height: 33%;
    margin-bottom: 60px;
}

.btn{
    padding: 20px 35px;
    background: #2B3A7E;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all .50s ease;
}

.btn:hover{
    background: #B6A188;
}

#banner{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 2.5rem;
}

.banner-img{
    overflow: hidden;
}

.banner-img img{
    width: 100%;
    display: block;
    transition: transform 0.5s;
    cursor: pointer;
}

.banner-img:hover img{
    transform: scale(1.1);
}

.center-text h2{
text-align: center;
font-size: 2.3rem;
font-weight: 800;
color: #2B3A7E;
}

.menu-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 2.5rem;
    margin-top: 4.5rem;
    text-align: center;
}

.row{
    position: relative;
    cursor: pointer;
}

.row img{
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.row h4{
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all .50s ease;
}

.row h4:hover{
    color: #2B3A7E;
    cursor: pointer;
}

.row h5{
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
}

.top{
    position: absolute;
    top: 20px;
    left: 0;
    height: 30px;
    width: 60px;
    color: #FFFFFF;
    background: #2B3A7E;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.row .bbtn a{
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    padding: 13px;
    background: rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
    transition: opacity 0.5s;
    opacity: 0;
}

.row:hover .bbtn a{
    opacity: 1;
}

.blog-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items: center;
    gap: 2.5rem;
    margin-top: 4.5rem;
}

.box-img{
    overflow: hidden;
}

.box-img img{
    width: 100%;
    display: block;
    transition: transform 0.5s;
    cursor: pointer;
    height: auto;  
}

.box-img:hover img{
    transform: scale(1.1);
}

.in-bxx{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.in-text p{
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

.in-icon i{
    vertical-align: middle;
    color: #666;
    font-size: 25px;
    margin-right: 8px;
}

.in-icon a{
    color: #666;
    font-size: 15px;
    font-weight: 500;   
}

.main-box h3{
    color:#000000;
    font-size: 1.3rem;
    line-height: 30px;
    font-weight: 500;
    transition: all .50s ease;
    cursor: pointer;
}

.main-box:hover h3{
    color:#2B3A7E;
}

.contact{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    
    gap: 2.5rem; 
    background: #2B3A7E;
}

.contact-box h4{
    margin-bottom: 1.5rem;
    font-size: 18px;
    color: #FFFFFF;
}

.contact-box li{
    margin-bottom: 18px;
}

.contact-box li a{
    display: block;
    color: #999999;
    font-size: 15px;
    font-weight: 500;
    transition: all .50s ease;
}

.contact-box li a:hover{
    transform: transition(-7px);
    color: #000000;
}

.contact-box h5{
    font-size: 16px;
    font-weight: 600;
    color: #999999;
}

.social{
    display: flex;
    margin-top: 1.8rem;
}

.social i{
    height: 37px;
    width: 37px;
    background: transparent;
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 1.1rem;
    color: #FFFFFF;
    transition: all .50s ease;
}   

.social i:hover{
    background: #B6A188;
    color: #FFFFFF;
    transform: scale(1.1);
}