@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #0092d7;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #2a2a2a;
  --extra-light: #fefefe;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}


.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  max-width: 700px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}




.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif !important;
}

body {
  font-family: 'Roboto', sans-serif !important;
  background-color: #f2f4f7;
}

.top-banner {
  color: #fff;
  padding: 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.mobile-number{
  display: none;
}

.top-banner-text-2{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.top-banner-text-2 a img{
  max-height:20px ;
  transition: all 0.2s;
}

.top-banner-text-2 a img:hover{
  transform: scale(1.05);
}
.white-icon{
  filter: invert(100%);
}
.top-banner a {
  display: flex;
  text-align: center;
  color: #fff;
  text-decoration: none; 
  margin: 0;
}

.top_bg{
  background: var(--primary-color);
}
.top-banner{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}




@media (max-width: 768px) {
  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 2rem 0.5rem !important;
  } .top-banner {
    display: none;
    padding: 0px;
  }
}

