/*
=================================================================
    Import Font Section
=================================================================
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");



/*
=================================================================
    Universal Section
=================================================================
*/



* { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0; 
    animation: moveBackground 50s infinite, shakeBackground 0.1s infinite; 
}


/*
=================================================================
    Top Navi
=================================================================
*/


.section-one 
{ 
  display: grid;
  width: 100%;
  min-height: 57vh; 
  background: conic-gradient(from 135deg, rgba(167, 168, 239, 1.0), rgba(197, 249, 249, 1.0));
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;     
  overflow-y: hidden;
  overflow-x: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 50); /* Adds a blur effect */
}

.section-two 

{ 
  min-height: 100vh;
  background: linear-gradient(0deg, #84a2b8 0%, #dbf9ff 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 50); /* Adds a blur effect */
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-three 

{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 53vh;
  background-image: url("../background/cool-background9.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; /* Needed for pseudo-elements */
  overflow: hidden; /* Ensure fog doesn't extend outside the section */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 50); /* Adds a blur effect */
  font-family: "Montserrat", serif;
  font-size: 10x;
}

.footer-section { 
  font-family: "Montserrat", serif;
  align-items: center;
 
}

/*
=================================================================
    Top Navigation
=================================================================
*/

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --custom-color: #4F6367;
  --custom-color2: #red;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1.2rem;
  }
}

/*=============== BASE ===============*/

body {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container-three {
  max-width: 3000;
  margin-inline: 2rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--custom-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}


.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--custom-color);
    padding-top: 1rem;
  }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--custom-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  background-color: var(--black-color-light);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: var(--black-color);
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

/*
=================================================================
    Banner Image section
=================================================================
*/


.banner-section 
{ 
    height: 100%; 
    overflow-x: hidden;
}

.banner-section {
    margin-top: 0px; /* Account for the top fixed navigation */
    height: 900px;
    color: white;
    text-align: center;
    padding: 40px 0;
    position: relative;
    background-image: url(../background/bannerimage.png);
    background-size: cover;
    background-position: center center;
    object-fit: cover;
    
}

.banner-area:after 
{ 
    content: ''; 
    position: absolute; 
    top: 0;
    left: 0; 
    display: block; 
    width: 100%;
    height: 100%;
    background: #020f14; 
    opacity: .15;   
}

.banner-area h2 
{     
  padding-top: 20%; /* positioning of the Cloud Infastructure Services */
  font-size: 80px;
  color: #fff;
  font-family: "Montserrat", serif; 
}


/*
=================================================================
    Section one Consulting
=================================================================
*/

.content-section-one {
  background: rgba(255, 255, 255, 0.4); 
  padding: 24px; 
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
  backdrop-filter: blur(10px); 
 -webkit-backdrop-filter: blur(10px); 
  border: 1px solid rgba(255, 255, 255, 0.3); 
  overflow-x: hidden;
  overflow-y: hidden;
  transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
  transform-origin: center;
  width: auto;
  max-width: 800px;
  height: auto;
  padding-right: 6%;
}


.content-section-one:hover{ 
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
}

.container-one { 
  width: 90%;
  display: grid;
  margin-left: auto; 
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px; 
  margin: 30px auto;
  align-items: center;
  padding-top: 40px;
}

.image-section-one img { 
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3); /* Deeper and softer shadow */
}

.content-section-one .title-one { 
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 20px;
  font-family: sans-serif;
  padding-left: 30px;
  color: #262a2b;
  text-align: center;
}

.content-section-one .content-one h3 {
  margin-top: 20px; 
  color:#6498c1;
  font-family: sans-serif;
  font-size: 23px;
  padding-left: 30px;
  font-optical-sizing: auto;
  text-align: center;
}

.content-section-one .content-one p { 
  margin-top: 15px; 
  font-family: serif;
  font-weight: 500; 
  font-size: 19px;   
  line-height: 1.4;            
  color:#3d4446;
  padding-left: 30px;
  max-width: 660px;             
  font-optical-sizing: auto;
  text-align: justify;          
  text-align-last: left;        
  word-spacing: 0.01em;         
  hyphens: manual;             
  overflow-wrap: normal;       
}

.content-section-one .content-one .button1{ 
  margin-top: 30px;     
  padding-left: 28px;
}

.content-section-one .content-one .button1 a { 
  background-color: #3d3d3d;
  padding: 12px 40px; 
  text-decoration: none; 
  color: #fff; 
  font-size: 27px; 
  letter-spacing: 1.5;
  border-radius: 10px;
  box-shadow: 1rem 1.6rem 1.6rem -0.90rem hsla(0, 0%, 0%, 0.25);
}

.content-section-one .content-one .button1 a:hover { 

  background-color: #FF4742; 
  color:#fff;
}

.container-one .social i{  
  color:#256680; 
  font-size: 20px; 
  padding: 0px 2px;
  padding-top: 5px;
}

.container-one .social i:hover { 
  color: #FF4742; 
}

.social { 
  padding-left: 33px;
}


/*
=================================================================
    Section three Cards
=================================================================
*/

.wrapper h1 { 
  font-size: 30px;
  font-family: "Montserrat", serif;
  /*padding-bottom: 1px;*/
  margin-top: 30px;
}

.wrapper p { 
  font-size: 26px;
  font-family: "Montserrat", serif;
  font-weight: 400;
  /*padding-bottom: 10px;*/
  color:#3d4446;
}

.wrapper { 
  min-height: 100vh; 
  display: flex; 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../background/cool-background7.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 20px; 
  font-family: 'raleway', sans-serif; 
}

.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f0f0f0; /* Solid color over the gradient */
  opacity: 0.5; /* Adjust opacity if needed */
  z-index: -1; /* Ensure it's behind the content */
}

.wrapper h2 { 
  font-size: 20px; 
  margin-bottom: 15px; 
  padding: 5px 15px;
  text-align: center;
  font-style: normal; 
  font-optical-sizing: auto;
  font-family: "Montserrat", serif;
  color: #262a2b;
}



.content-box { 

  max-width: 1000px; 
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 25px;
}

.card { 
  min-height: 250px;
  width: 300px;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  background: #f0f0f0;
  margin: 10px 4px;
  transition: 0.3s; 
  border-radius: 10px;
  opacity: 0.9;

}


.card i { 
  margin: 26px; 
  color: #73b0d3;
}

.card h2 { 
  margin-bottom: 10px; 
  text-align: center;
  color: #000000;   
}

.card p { 
  color:#3d4446;
  text-align: center;
  font-size: 19px;
}

.card:hover { 

  background: linear-gradient(90deg, 
                                rgba(2,2,36,0.7) 0%,
                                rgba(9,9,221,0.7) 35%,
                                rgba(0,212,255,0.7) 100%),
                                url('pc.png');
  opacity: 0.7;            
  color: #fff;        

}

.card:hover p { 
  color: #fff;
}

.card:hover i { 
   color: #fff;
}

/*
=================================================================
    Card Background
=================================================================
*/


.card:nth-child(1):hover { 

  background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
                                
  opacity: 0.7;               
  color: #fff;
  object-fit: contain;

}

.card:nth-child(2):hover { 

  background: linear-gradient(90deg, 
                                rgba(131, 197, 216, 0.7) 0%,
                                rgba(52, 116, 184, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 

  opacity: 0.7;            
  color: #fff;
  object-fit: contain;
  

}

.card:nth-child(3):hover { 

 background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
    
 opacity: 0.7;               
 color: #fff;

}

.card:nth-child(4):hover { 

 background: linear-gradient(90deg, 
                                rgba(131, 197, 216, 0.7) 0%,
                                rgba(52, 116, 184, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
 opacity: 0.7;            
 color: #fff;

}

.card:nth-child(5):hover { 

  background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
    
 opacity: 0.7;               
 color: #fff;


}

.card:nth-child(6):hover { 

  background: linear-gradient(90deg, 
                                rgba(131, 197, 216, 0.7) 0%,
                                rgba(52, 116, 184, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
  opacity: 0.7;            
  color: #fff;

}

.card:nth-child(7):hover { 

  background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
opacity: 0.7;
color: #fff;
}

.card:nth-child(8):hover { 

background: linear-gradient(90deg, 
                                rgba(131, 197, 216, 0.7) 0%,
                                rgba(52, 116, 184, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
opacity: 0.7;            
color: #fff;

}

.card:nth-child(9):hover { 

                                background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url(''); 
opacity: 0.7; 
color: #fff;
}

.card:hover p, 
.card:hover i { 
    color: #fff;
}


.card:hover { 
  background: linear-gradient(90deg, 
                                rgba(151, 137, 211, 0.7) 0%,
                                rgba(112, 112, 182, 0.7) 35%,
                                rgba(76, 204, 229, 0.7) 100%),
                                url('workspace.jpeg');
  opacity: 0.7;            
  color: #fff;

    /* Card movement on hover */
  z-index: 1; /* Bring to the front while hovered */
}

/*
=================================================================
    Employee Section
=================================================================
*/



.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
  padding-top: 70px;
}

.card-list .card-item {
  height: auto;
  color: #fff;
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
  overflow: hidden;
  object-fit: cover;
  object-position: center -1px;
}

.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #030728;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.card-list .card-item .message-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  color: #fff;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper .swiper-slide-button {
  color: #fff;
  margin-top: -55px;
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }
  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

 

@media(max-width: 991px)
{ 
    .wrapper h1{ 
        font-size: 2.5em;
    }
    .wrapper p { 
        padding: 5px 15px; 
    }
    .content-box { 
        flex-direction: column; 
        width: 100%; 
    }
    .card { 
        min-width: 300px;
        margin: 10px auto;
    }
    
}


/* Animation for background movement */
@keyframes moveBackground {
    0% {
        background-position: center center;
    }
    50% {
        background-position: left top;
    }
    100% {
        background-position: center center;
    }
}

@media screen and (max-width: 900px) {
  .image-section-one img {
      width: 100%; /* Ensure full-width images on smaller screens */
  }

  .container-one {
      grid-template-columns: 1fr; /* Single-column layout on small screens */
      
  }

  .content-section-one { 
    width: auto; 
    height: auto;
  }
}

/*
=================================================================
    Footer Section
=================================================================
*/

.footer-container { 
  font-family: sans-serif;
  background-color: #212329;
  padding: 4rem 0 2rem 0;
}

.footer { 
  width: 80%;
  height: auto;
  background-color: #212329;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  font-family: sans-serif;
  font-size: 17px;
}

.footer-heading { 
  display: flex;
  flex-direction: column;
  margin-right: 4rem;
}

.footer-heading h2 { 
  margin-bottom: 2rem;
  font-family: serif;
}

.footer-heading a { 
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-heading a:hover { 
  color: red;
  transition: 0.3s ease-out;
}

.footer-email-form h2 { 
  margin-bottom: 2rem;
  font-family: sans-serif;
}

#footer-email {
  width: 250px;
  height: 40px;
  border-radius: 4px;
  outline: none;
  padding-left: 0.5 rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

#footer-email::placeholder { 
  color: #b1b1b1;
}

#footer-email-btn { 
  width: 100px;
  height: 40px;
  border-radius: 4px;
  outline: none; 
  border: none;
  color: #000000;
  font-size: 17px;
  font-family: sans-serif;
}

#footer-email-btn:hover { 
  cursor: pointer;
  background-color: red;
  transition: all 0.4 ease-out;
}


/*
=================================================================
    @media Queries Footer Section
=================================================================
*/

@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    align-items: center;
  }
  .footer-email-form{ 
    margin-top: 4rem;
  }
}

@media screen and (max-width: 1150px) { 
  .footer { 
    height: auto;
    
  }   
}

@media screen and (max-width: 820px) { 
  .footer { 
    padding-top: 2rem; 
  }
}

@media screen and (max-width: 720px) { 
  .footer2 { 
    display: none;
  }
  .footer-email-form { 
    margin-top: 4rem;
  }

  .footer1 { 
    padding-left: 76px;
  }
  .footer3 { 
    padding-top: 20px;
  }
}

/*
=================================================================
    @media Section One
=================================================================
*/

@media screen and (max-width: 768px) { 
  .content-section-one { 
    height: auto;
    padding-left: 5px;
    min-width: auto;
    border-radius: 10px;
  }

  .content-section-one .content-one p { 
    padding-right: auto;
    margin-right: 10px;
    line-height: 1.5;
    hyphens: auto;
    font-size: 20px;
  }

  .content-section-one h1 { 
    text-align: center;
  }

  .content-section-one .title-one { 
    text-align: center;
  }

  .content-section-one .content-one  h3 { 
    text-align: center;
  }

  .wrapper h1 { 
    text-align: center;
  }

  .wrapper p { 
    text-align: center;
  }

  .banner-area h2 {
    padding-top: 60%;
    text-align: center;
    font-size: 50px;
  }

  
}


/*
=================================================================
    @media 1440 x 900 !Small laptop Screen
=================================================================
*/

@media screen and (max-height: 900px) {

  /*.content-section-one  p { 
    padding-right: 6%;
  } */

}

@media screen and (max-width: 2560px) { 
  .banner-section { 
    min-height: 80vh;
  }
}

/*
=================================================================
    @media 1024 x 768 ipad
=================================================================
*/

/* @media 1024 x 768 iPad */
@media screen and (max-width: 64rem) and (max-height: 48rem) {
  /* Adjust header and navigation */
  .header {
    padding: 0.5rem;
  }
  .nav__logo {
    font-size: 1rem;
  }
  
  .container-one {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .container-two {
    grid-template-columns: 1fr;
  }

   /* Banner Section */
  
   .banner-section .banner-area h2 { 
    padding-top: 32%;
  }
}


@media screen and (max-width: 768px) { 
 
  .banner-section .banner-area h2 {
    margin-top: 30%;
    text-align: center;
    font-size: 50px;
  }
}

