/*--------------- MAIN CSS -------------------*/

/*================ BASE =====================*/
* {
    margin: 0px;
    padding: 0;
    font-family: "Ariel", "consolas", 'Poppins', sans-serif;
    box-sizing: border-box;
}
html
{
    scroll-behavior: smooth;
}
/* @keyframes zoomOut {
    0% {
        
        transform: scale(150);
        transform-origin: center;
    }
    100% {
        transform: scale(1);
        transform-origin: center;
    }
    
}
@keyframes zoomIn {
    0% {
        
        transform: scale(0);
        transform-origin: center;
    }
    100% {
        transform: scale(1);
        transform-origin: center;
    }
}        */

body{
    color: hsla(0, 0%, 100%, 0.85);
    background-color: black;
    font-size: 18px;
    background-image: url(/images/background-images/cosmos-1853491_1920.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    background-attachment: scroll, local;   
}
/*=============== Header ====================================================== */
#header{
    height: 550px;
    margin-bottom: 0px;
    width: 100%;
    /* height: 1%;  */
    background-color: transparent; 
    text-align: center;
    /* border: dashed rgb(109, 0, 128); */
}
/*================== Container ========================================== */

.container{
    margin: 10px 0 0 0 ;
    padding: 0;
    /* border: dotted red; */
   }

/*======================= Nav ================================================*/
/* .logobg{
    position: relative;
    scale: 100%;
    margin: 0;
    padding: 0px;
    transform: translate(442px, 45px); 

    border:   solid;
    z-index: -1;
} */
/* .logo{
    width: 200px;
    margin: 0px 0px 0px 30px;
    margin-right: auto;
    padding: 2px;
    border:   solid;
} */

nav{
    display:flex;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    flex-wrap: wrap;    
    padding: 40px 20px;
    /* border: dashed rgb(131, 220, 15);   */
} 

nav ul li{
    display: inline-block;
    justify-content: right;
    align-items: right;
    text-align: right;
    list-style: none;
    margin: 0px 25px;
    /* border: solid rgb(0, 255, 85); */
}

nav ul li a{
    color: #ffffff; 
    text-decoration: none;
    font-size: 18px;
    position:relative; 
    text-align: right;
    /* border: solid purple; */
}
nav ul li a::after{
    /* The content is "" with a blank space inside as we are underlining the word above. */
    content:'';
    width: 0;
    /*height of the menu bar underline animation*/
    height: 3px;
    background: #CA4400;
    position: absolute;
    left: 0;
    /* distance of the underline from the bottom of the menu item */ 
    bottom: -6px;
    /* Speed of the transition of the underline */
    transition: 0.5s;  
}
nav ul li a:hover::after{
    width: 100%;
}

nav ul li:first-child{
    margin-right: 0 auto;
}


/* .floatinglogo{
    transform-origin: center;
    width: 300px;
    margin: 244px 20% 100px 20% ;
    padding: 0px;
} */


#anilogo{
    display: block;
    align-items: center;
    text-align: center;
    width: 300px;
    height: auto;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 60px;
    /* border: dashed pink; */
    
    /* animation: zoomOut 4s ease; */
    /* animation-delay: 0; */
    z-index: 0;

     
    /* border: dashed green; */

}
.animatelogo{
    /* display: flex; */
    /* flex-direction: wrap; */
    margin-top: 100px;
    /* align-self:center; */
    justify-content: center;
    /* margin: auto 0; */
    width: 100%;
    /* border: dashed purple; */
}
/* .logoreadmore{

    width: 200px;
    margin: 0% 0%;
    margin-right: auto;
    padding: 2px;
    display:flex;
    align-items: left;
    justify-content: center;
    flex-wrap: wrap;    
    border: dashed rgb(30, 83, 96);
} */


/* .header-text{
    margin-top: 0px;
    margin-left: 0%;
    font-size: 40px;
    text-align: center;
    text-shadow: 0px 0px 20px #00AEEF;
    border: solid;
     
    
} */
.header-text p{
    
   
    font-size: 2.5rem;
    text-align: center;
    text-shadow: 0px 0px 20px #00AEEF;
    
     /* animation: zoomIn 1s ease-out;
    animation-delay: 4s; */

    z-index: 0;


}
.header-text, h1, p{

    margin-top: 10px;
    /* border: dashed yellow; */
}
.header-text h1{
    font-size: 20px;
    text-align: center;
    text-shadow: 0px 0px 20px #00AEEF;
    margin-top: 20px;
    padding: 10px;
    z-index: 0;
    /* border: dashed gold; */
    /* animation: zoomIn 1s ease-out;
    animation-delay: 4s; */
    
    
}
/* .header-text h1 span{  
    text-align: center;
    color: #00AEEF;
    text-shadow: 0px 0px 100px hsl(194, 100%, 100%);
    border: solid pink;
    
} */
button{
    /* margin: 0 10px 0 10px; Remove default margin from buttons */
    color:#fff;/* Set text color to white */
    background-color: rgba(0,174,239,0.2);/* Set background color with transparency */

    padding: 8px;/* Add padding inside buttons */
    border-radius: 6px;/* Round the corners of the buttons */
    border: solid #00AEEF;/* Set border color */
    box-sizing: border-box;/* Include padding and border in the element's total width and height */
    flex: 1;
    min-width:200px;
    max-width: 350px;/* Ensure buttons don't exceed 150px in width */
    text-align: center;/* Center the text inside the buttons */
    white-space: nowrap;
}
button:hover{
    color:#fff;
    background-color: #00AEEF;
    padding: 8px;
    border-radius: 6px;
    border: solid #9fbed6;
}
.buttons{
    display: flex;           /* Enables flexbox layout */
    flex-wrap: wrap; 
    justify-content: space-evenly; /* Centers items horizontally */
    align-items: center;     /* Centers items vertically */
    height: 40px;           /* Adjust as needed to center vertically within a specific height */
    /* border: dotted orangered; */
}


article{
    background-color: rgb(0, 26, 40);
    margin: 100px 3% 0px 3%;    
    padding: 5%;
    border-radius: 20px;
    /* border: solid orange; */
}

.centered-heading {
    text-align: center;
    margin: 20px 0; /* Adjust the margins as needed */
    font-size: 18px;
}

figure {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 30px auto 4px auto;
    /* border: dotted red; */
}
figure img {
    /* width: 80%; Adjust the width as needed */
    height: auto; /* Maintain the aspect ratio */
    margin: 10px auto;
    border-radius: 15px;
}
figcaption {
    margin-top: 10px;
    font-size: 18px; /* Change the size of the caption text */
    font-style: italic;
    color: #909090; /* Change the color of the caption text */
    padding: 5px; /* Add some padding around the caption text */
    /* background-color: #f0f0f0; Add a background color to the caption */
    border-radius: 5px; /* Round the corners of the caption background */
}

.ariane_group_logo{
    display: flex;
    margin: 0% auto 0% auto;
    width: 100px;
    align-items:center;
    justify-content:space-between;
    /* border: dashed orange; */

}

.twologostogether{
    display: flex;
    flex-direction: row;
    /* margin-left: 40px; */
    margin-top: 100px;
    
    align-items:center;
    justify-content:space-between;
    /* border: dashed rgb(234, 36, 207); */
}
.atouttogether{
    width: 150px;
    margin: 0% auto 0% auto;
    /* border: dotted yellow; */
}
.esalogo{
    width: 150px;
    margin: 0% auto 0% auto;
    /* margin: 0px 0px;padding: 20px; */
/* border: dashed red; */
}


#pressrelease-january{
    /* margin: 0px 1% 200px 1%; */
    color: hsl(0, 0%, 90%);
    font-size: 18px;
    /* padding: 60px; */
    /* border: solid #5cf204; */
}
#pressrelease-january h1{
    /* font-size: 18px; */
    /* color: red; */
}

/* -------------services-------------- */
#services{
    margin-top: 150px;
    padding: 0px 3% 0px 3%;
    /* margin-bottom: 30px; */
    height: auto;
    /* border: 2px solid rgb(198, 241, 6); */
}
#services h1{
    display: flex;
    justify-content: center;
    color: #00AEEF;
    /* border: dotted pink; */
}
.icons{
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    align-items: center;
    height: 100px; 
    margin-top: 20px;
    /* border: 2px solid orangered; */
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
    margin-bottom: 80px;
    padding: 0px;
    /* border: solid yellow; */
}

.services-list div{
    background: #001a28;
    padding: 4px  20px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 10px;
    transition: 0.5s, transform 0.5s;
/* border: 2px solid rgb(43, 0, 255); */
}


.services-list div .icons{
    font-size: 50px;
    margin-bottom: 60px;
    background-color: transparent; 
    /* transition: 0.5s, transform 0.5s; */
    /* border: 2px solid rgb(43, 0, 255); */
}
.services-list div h2{
    color: #66caff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 15px;
    /* border: dashed pink; */
}
.services-list div p{
    margin-left: 10%;
    margin-right: 10%;
}
.services-list div a{
    text-decoration: none;
    color: #66caff;
    font-size: 12px;
    margin-top: 30px;  
    margin-left: 10%;
    margin-bottom: 10%;  
    display: inline-block;
    /* border: 2px solid orange */
    
}
.services-list div:hover{
    background: #004366;
    transform: translateY(-10px);
}
.services-list div icons:hover{
    background: #00AEEF;
    transform: translateY(-10px);
}



/*--------------------------- Contact ---------------- */

.row{
    display: flex;
    justify-content: space-between; 
    flex-wrap: wrap;
    /* border: dotted pink;  */
}





#contact{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center; 
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(images/background-images/the-world-footer.png) no-repeat;
    background-size: cover;
    /* width: 100%; */
    /* margin: 60px; */
    /* border: dashed orange; */
}

#contact .container{
    margin-top: 0px;
    padding: 0px;
    /* border: solid blueviolet; */
}

.contact-left p{
    margin-top: 30px;
    /* border: dotted darkslategrey; */
}
.contact-left p i{
    color: #00AEEF;
    /* margin-right: 15px; */
    font-size: 25px;   
}
.contact-left a{
    text-decoration: none;
    color: #00AEEF;
}
.social-icons{
    margin-top: 30px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    margin-right: 15px;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #00AEEF;
    transform: translateY(-5px);
}
.btn.btn2{
    margin: 40px;
    display: inline-block;
    background: #00AEEF;
    text-decoration: none;
    color: #fff;
    padding: 16px;
    border-radius: 6px;
}
.contact-right form{
    width: 100%;
    /* border: dashed green;   */
}
form input, form textarea{
    width: 100%;
    border: 0;
    outline: none;
    background: #262626;
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    /* border: dashed yellow; */
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
}
.copyright{
    color: #0c2837;
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #00afef00;
    font-weight: 300;
    margin-top: 20px;
    font-size: 20px;
}
/* --------------------- css for small screens ------------  */

/* @media (orientation: landscape){
    .services-list{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-gap: 20px;
        margin-top: 50px;
        margin-bottom: 100px;
        padding: 0px;
    }
    .animatelogo{
        display: flex;
        flex-direction: wrap;
        margin-top: 50px;
        align-self:center;
        justify-content: center;
        width: 100%;
    }
} */
/* @media only screen and (max-width: 667px){
    .animatelogo{
        display: flex;
        flex-direction: wrap;
        align-self:center;
        justify-content: center;
        margin: 100px auto 0 auto;
        width: 100%;
        }
}
@media only screen and (max-width: 600px){
    body{
        background-image: url(/images/background-images/phone-background.jpg);}
    .header-text{
        padding: 2px;
        margin-top:0px;}
    .header-text p{
        padding: 2px;
        margin-top: 0px;
        font-size: 25px;}
    .header-text h1{
        padding: 2px;
        font-size:18px;}
    .atouttogether{
        width: 100px;}
    .esalogo{
        width: 100px;}
    .twologostogether{
        width: auto;
        display: flex;
        margin: 1px 20px 40px 20px;
        align-items:center;
        justify-content:space-evenly;}

    
        .services-list div{
            flex:1;
        background: #001a28;
        padding: 4px  20px;
        font-size: 15px;
        font-weight: 300;
        border-radius: 10px;
        margin-bottom: 20px;
        transition: 0.5s, transform 0.5s;}
    
    
        .animatelogo{
        display: flex;
        flex-direction: wrap;
        margin-top: 150px;
        align-self:center;
        justify-content: center;
        width: 100%;}
    
    
        #anilogo{
        width: 200px;
        margin-bottom: 60px;}
    
    
        button{
        margin-bottom: 60px;}
} */