@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');
/* font-family: 'Alegreya Sans', sans-serif; */
/* font-family: 'Exo 2', sans-serif; */


:root {
    --primary-color: #546795;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Exo 2', 'Alegreya Sans', sans-serif;
}

.margin-top {
    margin-top: 80px;
}

.con {
    width: 80vw;
    margin: auto;

}

Header {
    background-color: var(--primary-color);
    height: auto;
    width: auto;
    color: white;
    align-items: center;
    padding: 2vh 0;
}

.flex-around {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
}

.flex {
    display: flex;
    justify-content: space-between;
    gap: 5vh;
    flex-wrap: wrap;
}

.icon {
    font-size: 24px;

}
.social-media {
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
a{
    text-decoration: none;
    color: white;
}

.flex >a {
    color: white;
}

.icons {
    font-size: 25px;
    color:var(--primary-color);
    z-index: 2;

}

.logo {
    display: inline-block;
    vertical-align: top;
    width: 90px;
    height: 90px;
}
.sticky{
    background-color:white;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px ;
}
.navigation-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--primary-color);
    /* position: absolute; */
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
   
}
.navigation-bar >ul{
    display: flex;
   gap: 3vh;
}
.navigation-bar>ul>li {
    display: inline-block;
    text-decoration: none;
    vertical-align: top;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.navigation-bar>ul>li>a{
    color: var(--primary-color);
}
.navigation-bar>ul>li>a:hover{
    color: brown;
}
.banner{
    max-height: 75vh;
    overflow: hidden;
}

input {
    display: inline-block;
    height: 35px;
    width: 282px;
    margin: 3vh;
    padding: 11px;
    border-radius: 8px;
    border: 3px #546195 solid;
}
.owl-three{
    width: 100%;
    overflow: hidden;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    /* height: 100%;
    max-height: 90vh; */
    object-fit: cover;
  
}

.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    margin: 0px 7px;
    display: block;
    transition: opacity .2s ease;
    border-radius: 36px;
    stroke-width: 2px;
    background: #546195;
    display: none;
}

.left {
    /* width: 42%; */
    margin-top: 5em;
}

.right {
    width: 54%;
    margin-top: 5em;
    padding-left: 6vh;
}

.right>h3 {
    color: #546195;
    font-family: Exo 2;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 131%;
}

.right>p {
    color: #3F3F3F;
    text-align: justify;
    font-family: Alegreya Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-top: 10px;
}

.button,
.button2 {
    height: 55px;
    width: 151px;
    background-color: #546795;
    border-radius: 25px;
    margin: 11px;
    padding: 18px 31px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button > a {
    color: white;
}
.button2 > {
    color: aliceblue;
}

.vacancy-categories {
    margin-top: 80px;
}

.vacancy-categories>h1 {
    color: #546195;
    text-align: center;
    font-size: 28px;
    margin-bottom: 4vh;
}

.box {
    position: relative;
    width: 365px;
    height: 275px;
    /* margin-top: 20px; */
    border-radius: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.image {

    width: 416px;
    height: 275px;
    transition: .5s ease;
    backface-visibility: hidden;
    object-fit: cover;
}

.middle {
    transition: .3s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
}
.box:hover::before{
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.61);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.box:hover::after{
    content:'' ;
    position: absolute;
    border: 3px rgb(255, 255, 255) solid;
    width:90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box:hover .middle {
    opacity: 1;
}

.text {
    color: white;
    padding: 35px 20px;
    line-height: 32px;
    font-weight: 400;
}
.text > a{
    color: white;
}

.button2 {
    margin: auto;
    margin-top: 20px;
}

.ceo-message {
    background-color: #54619547;
    height: auto;
    margin-top: 100px;
    padding: 10vh 0;
}

.flex1 {
    display: flex;
    justify-content: space-between;
    gap: 12vh;
}

.message>h2 {
    color: #546795;
    font-family: Exo 2;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 131%;
    margin-bottom: 2vh;
}

.message>p {
    color: #3F3F3F;
    text-align: justify;
    font-family: Alegreya Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-top: 2vh;
}

.process {
    margin-top: 90px;

}

.process>h1 {
    color: #546195;
    font-size: 28px;
    text-align: center;
}

.circle {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 4px #546195 solid;
    margin-top: 6vh;
    position: relative;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-text>h4 {
    color: #546195;
    margin: 67px 19px;
    font-size: 24px;
    text-align: center;
}

.circle:after {
    content: '';
    position: absolute;
    width: 100%;
    border: 2px dashed var(--primary-color);
    top: 50%;
    left: 100%;
}
/* .circle:not(:last-child):after {
    content: ' ';
    display: inline;
} */
.circle:last-child:after {
    display: none;
}

.box1 {
    border: 1px black solid;
    border-radius: 25px;
    padding: 30px;
    background-color: white;
    height: auto;
    width: 100%;
}
.testomonio{
    width: 40%;
}
.testomonio>h2 {
    color: var(--primary-color);
    font-size: 28px;
}

.testomonio>p {
    color: #3F3F3F;
    text-align: justify;
    font-family: Alegreya Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-top: 2vh;
}

.box1>figure>img {
    height: 116px;
    width: 119px;
    margin: -64px 0 0 -62px;
    border-radius: 20px;
    border: 1px solid #D79960;
}

.box1>p {
    color: #3F3F3F;
    text-align: justify;
    font-family: Alegreya Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-top: 2vh;
    margin: -46px 0 0 76px;
}

.box1>h2 {
    color: #546195;
    text-align: justify;
    font-family: Exo 2;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    position: relative;
}

.box1>h2::after {

    content: '"';
    position: absolute;
    left: 34rem;
    top: 2rem;
    font-size: 9rem;
    color: #D79960;
}

.recuremental-patner {
    padding-top: 80px;
}

.recuremental-patner>h1 {
    color: #546195;
    text-align: center;
    font-size: 28px;
    /* padding-top: 80px; */
}

footer {
    background-color: #D8D8D8;
    padding-top: 10vh;
    margin-top: 8vh;
}

ul {
    list-style: none;
}

ul>h2 {
    padding-bottom: 3vh;
    color: #546195;
font-family: Exo 2;
font-size: 25px;
font-style: normal;
font-weight: 600;
line-height: 131%; /* 32.75px */
text-transform: capitalize;
}

ul>li {
    line-height: 30px;
    font-size: 16px;
    color: #2F2F2F;
font-family:Exo 2 !important;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.bottom {
    background-color: #546195;
    color: white;
    padding: 2vh;
    margin-top: 2vh;
}

li>h2 {
    color: #546195;
    font-family: Alegreya Sans;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 188%;
    text-transform: capitalize;
    padding: 2vh 0;
}
li >a{
    color: black;
    line-height: 28px;
}

.footer-logo>figure>img {
     height: 149px;
    width: 144px;
    margin: -50px 41px; 
}

.footer-logo>p {
    color: #282828;
    text-align: justify;
    font-family: Alegreya Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    /* 168.75% */
    text-transform: capitalize;
    text-align: justify;
    margin-top: 25px
} 
p>a{
    color: white
}
.social-media-blue {
    width: 36px;
    height: 36px;
    background-color: #546195;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-buttom {
    font-size: 22px;
}
.button3 {
    height: 46px;
    width: 126px;
    background-color: #546795;
    border-radius: 25px;
    /* margin: 11px; */
    /* padding: 18px 31px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2vh;
}
.message {
    width: 63%;
    padding-bottom: 10vh;
}
div.relative {
position: relative;
width: 260px;
height: 307px;
border-radius: 0px 40px 40px 40px;
background: #546195;
top: 0;
left: 0;
} 

div.absolute {
position: absolute;
top: 39px;
right: 0;
width: 215px;
height: 100px
}
.test{
    width: 58%;
    height: 40vh;
    border: 3px red solid;
}
.box1{
    border: 1px solid black;
    margin: 30px;
    position: relative;
    height: 30vh;
}
.box1 > figure > img{
    width: 50px;
    height: 50px;
    /* position: absolute;
    top: -18px;
    left: -18px; */
}
.owl-one img{
    width: 50px;
    height: 50px;
}
.box1>figure{
    width: 50px;
    height: 50px;
    object-fit: cover;
}