* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
}

:root {
  --primary-color: #113D72;
  --secondary-color: #E6AF5D;
  --color-text: #3E3E3E;
  --color-grey: #444;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

hr {
  margin: 0;
  opacity: 1;
  background-color: #ddd;
}

a,
a:hover {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0;
  padding: 0;
  letter-spacing: 0px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-grey);
  font-weight: 500;
  margin-bottom: 10px
}

section {
  padding: 80px 0;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}

.section-heading .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 5px;
}

.button-theme {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 8px 25px;
  border-radius: 5px;
  gap: 10px;
}

.button-theme:after {
  content: "\e9b4";
  color: inherit;
  font-size: 20px;
  font-family: "boxicons";
  font-weight: 400;
  rotate: 180deg;
}

.button-theme:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.footer-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.footer-section .footer-copyright {
  border-top: 1px solid #FFFFFF1A;
}

.footer-section .footer-copyright p {
  margin: 0;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}
.logo{
  margin: auto;
    width: 200px;
    height: 200px;
    display: block;
}
.logo img{
      width: 100%;
    height: 100%;
    object-fit: contain;
}