@import url('https://fonts.cdnfonts.com/css/geneva01');
:root{
    --primary-color : #002169;
    --secondary-color : #85754E;
    --button--font-color : #fff;
}

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

body{
    background-image: url(./img/background.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.main{
    overflow: hidden;
}
nav{
    display: flex;
    justify-content: space-between;
}

/* nav .logo img{
  width: 100px;
  height: 125px;
  padding-top:50px ;
  padding-left: 60px;
} */

nav .logo{
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
}

nav .logo p{
    position: absolute;
    font-size: 6.5px;
    font-family: Arial, Bold , 2181;
    font-weight: bold;
    color: var(--secondary-color);
    top: 165px;
    left: 70px;
}

nav .logo img{
  width : 231px;
  height : 231px;

}

nav ul{
    display: flex;
    gap: 3rem;
    list-style: none;
    padding-top: 50px;
    padding-right: 50px;
}
nav ul li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
}

nav ul li a::after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}


.main .content{
    margin-top: 20px;
    display: flex;
}

.main .content .content-img{
    width: 300px;
    height: 300px;
    position: relative;
   
}
.content img{
    width: 500px;
    height: 650px;
    padding-left: 130px;
    padding-top: 20px;
    
}

.main .content .content-des{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-des h1{
    font-size: 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: var(--secondary-color);
}

.content-des h3{
    font-family: 'Times New Roman', Bold, 21;
    margin-top: 0;
    font-size: 50px;
    color: var(--primary-color);
    text-align: center;
    
}
.content-des .we{
    margin-top: 0;
    font-size: 30px;
    color: var(--primary-color);
    font-family: 'Times New Roman', 2172;
    font-weight:100;
}

.content-des .contact{
    background: var(--primary-color);
    color: var(--button--font-color);
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.content-des .contact:hover{
    opacity: .8;
}

.content-des .get{
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 12px;
}
.notify {
    width: 100%;
    text-align: center;
    padding: 5px;
}
.notify input{
    color: var(--secondary-color);
    font-size: 15px;
    width: 160px;
    padding: 5px 10px;
    border-radius: 0;
    border: 1px solid var(--secondary-color);
}
.notify input::placeholder{
    color: var(--secondary-color);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}


.notify  button{
    background-color: var(--secondary-color);
    color: var(--button--font-color);
    border: 2px solid var(--secondary-color);
    padding: 5px 10px;
}

.notify  button:hover{
    opacity: 0.8;
}

.menu-icon{
    color: var(--primary-color);
    font-size: 30px;
    display: none;
}

@media (max-width : 900px) {
    .content img{
    width: 400px;
    height: 650px;
    padding-left: 130px;
    padding-top: 20px;
    
}
.main .content{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
}

@media (max-width : 665px) {

    nav ul{
        margin-top: 150px;
        display: flex;
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
        overflow: hidden;
    }

   .menu-icon{
    display: block;
    margin-top: 50px;
   }
    .content img{
    width: 200px;
    height: 350px;
    padding-left: 130px;
    padding-top: 20px;
    
}
.main .content{
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
}

/* header nav img
{
	background-image : url(image.png);
	background-repeat : no-repeat;
	left : 177px;
	top : 125px;
	width : 232px;
	height : 272px;
} */
