@font-face {
    font-family: FuturaPTLight;
    src: url(../font/FuturaPTLight.otf);
}
@font-face {
    font-family: FuturaPTBook;
    src: url(../font/FuturaPTBook.otf);
}
@font-face {
    font-family: FuturaPTMedium;
    src: url(../font/FuturaPTMedium.otf);
  }
  
  /* div {
    font-family: myFirstFont;
  } */
 /* @font-face {
    font-family: FuturaPTLight;
    src: url(assets/fonts/FuturaPTLight.otf);
 } */
/* Applying the custom font */
body {
    font-family: 'FuturaPTLight' ;
    padding: 0;
    margin: 0;
    min-height: 100vh;
	background-color:#000045;
}

.row{
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    align-items: center;
}
.row .col-one{
    /* background-color: #10462f; */
   background-color:#FFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.row .col-two{
    /* background-color: #10462f; */
   background-color:#000045;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.row .col-one .box{
    padding: 2rem 5rem;
}
.row .col-one h1{
    font-size: 48px;
    line-height: 47px;
    color: #000045;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    max-width: 480px;
}
.row .col-one h4{
    font-size: 24px;
    color: #000045;
    font-weight: 400;
    margin-top: 1rem;
    max-width: 430px;
}
.row .col-one h5{
    font-size: 22px;
    color: #000045;
    font-weight: 400;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    max-width: 430px;
}
.row .col-one .contact h3{
    font-family: 'FuturaPTBook';
    color: #000045;
    font-size: 28px;
    text-transform: capitalize;
    font-weight: 300;
    margin: 0;
}
.row .content{
    margin-top: 3rem;
}
.row .col-one .contact{
    margin-top: 5rem;
}
.row .col-one .contact a{
   /*  font-family: 'FuturaPTMedium';
    color: #ece6dd;*/
    font-size: 24px;
    /*  text-transform: capitalize;
    font-weight: 300; */
	 color: #000045;
    text-decoration: none;
/*     display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem; */
}
.row .col{
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1199px){
    .col img{
        width: 100%;
    }
    .row .content{
        margin-top: 0;
    }
}
@media (max-width: 991px){
    .row{
        grid-template-columns: 60% 40%;
    }
    .logo img{
        width: 100%;
    }
    .row .content{
        margin-top: 1rem;
    }
    .row .col-one .contact{
        margin-top: 4rem;
    }
    .row .col-one .box {
        padding: 2rem 3rem;
    }    
}
@media (max-width: 767px){
    .row{
        grid-template-columns: 100%;
    }
    .row .col-one{
        min-height: 100vh;
    }
    .row .col-one .box {
        padding: 2rem 5rem;
    }    
    .row .col{
        display: none;
    }
    .row .col-one h1{
        max-width: 100%;
        font-size: 36px;
        line-height: 36px;
    }
    .row .col-one h4{
        font-size: 24px;
        max-width: 100%;
    }
}
@media (max-width: 575px){
    .row .col-one .box {
        padding: 1rem;
    }  
    .row .col-one .contact{
        text-align: center;
    }
    .row .content{
        text-align: center;
    }
    .row .col-one .contact a{
        font-size: 24px;
        justify-content: center;
    }   
}
    