* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: "Drake";
  src: url(../assets/font/Euclid\ Circular\ A\ Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Drake";
  src: url(../assets/font/Euclid\ Circular\ A\ Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Drake";
  src: url(../assets/font/Euclid\ Circular\ A\ Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Drake";
  src: url(../assets/font/Euclid\ Circular\ A\ SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Drake";
  src: url(../assets/font/Euclid\ Circular\ A\ Bold.ttf);
  font-weight: 700;
}

:root {
  --primary-color: #004b8d;
  --primary-font: "Drake";
  --drake-black: #171717;
  --main-head-size: clamp(47px, 7vw + 10px, 57px);
  --sec-head-size: clamp(40px, 5vw + 10px, 47px);
  --sub-head-size: 30px;
  --sub-in-heading: 25px;
  --para-size: 17px;
  --para-color: #767676;
}

body {
  font-family: var(--primary-font);
}
p,
a {
  font-size: var(--para-size);
  line-height: 30px;
}
a {
  color: var(--drake-black);
}

h2 {
  font-size: var(--main-head-size);
  font-weight: 500;
}
ul {
  margin: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
button {
  font-family: var(--primary-font);
}
section {
  padding-top: 120px;
}

.primeBtn span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.primeBtn a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--drake-black);
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  letter-spacing: 2px;
}
.primeBtn a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 9px;
  right: 0;
  width: calc(100% - 53px);
  height: 1px;
  background-color: var(--drake-black);
}
.primeBtn a:hover span {
  background-color: var(--drake-black);
}

input,
textarea,
select,
label {
  font-family: var(--primary-font);
}
input:focus,
textarea:focus,
select:focus,
label:focus {
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
