:root{
  --white: #fff;
  --main-color: #003F96;
  --darker-main-color: #01347a;
  --background-color: #EFEFEF;
  --darker-background-color: #e2e2e2;
  --font-primary: 'Nunito', sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: content-box;
  font-family: 'Cabin';
}

#body_index {
  background-color: var(--white);
 
  background-repeat: no-repeat;
  background-size: contain;
}

h1 {
  font-size: 60px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 30px;
}

p {
  font-size: 20px;
}

footer {
  height: 300px;
  background-color: #00193D;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: end;
  padding-bottom: 15px;
}

/****************************/
/*       head section       */
/****************************/

main {
  position: relative;
  overflow: hidden;
}


#head_section {
  height: 1000px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;

}

#mainBol{
  background-color: #FFC069;
  height: 2000px;
  width: 2600px;
  border-radius: 9000px;
  position: absolute;
  top: -1000px;
  right: -1000px;
  z-index: -1;
  
  height: 2000px;
  width: 2600px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

#head_logo_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 20px;
  left: 50px;
}

#head_logo_box img {
  width: 175px;
}

#head_text_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#head_headText {
  color: #003F96;
  
}

#head_subText {
  font-size: 37px;
  color: #fff;

}

/****************************/
/*        Nav Section       */
/****************************/

#nav_section {
  height: 950px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#navBol{
  background-color: #003F96;
  border-top-right-radius: 9000px;
  border-bottom-right-radius: 9000px;
  position: absolute;
  top: 125px;
  left: 0px;
  z-index: -1;

  height: 750px;
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


#nav_section_text_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  color: #fff;
  width: 100%;
}

.section_items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: max-content;
}

.nav_section_item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  width: 100%;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  word-spacing: 1px;
}

.nav_section_item p {
  margin-top: 5px;
}

#nav_item_icon1, #nav_item_icon2, #nav_item_icon3{
  min-width: 60px;
  height: 60px;
}

#nav_item_icon1 {
  background-image: url(/svg/2931144-wireless_icon_white.svg);
}

#nav_item_icon2 {
  background-image: url(/svg/4092562_house_icon_white.svg);
}

#nav_item_icon3 {
  background-image: url(/svg/9025856_mouse_icon_white.svg);
}

.nav_section_item:hover{
  color: #FFC069;
}

.nav_section_item:hover #nav_item_icon1{
  color: #FFC069;
  background-image: url(/svg/2931144-wireless_icon_orange.svg);
}

.nav_section_item:hover #nav_item_icon2{
  color: #FFC069;
  background-image: url(/svg/4092562_house_icon_orange.svg);
}

.nav_section_item:hover #nav_item_icon3{
  color: #FFC069;
  background-image: url(/svg/9025856_mouse_icon_orange.svg);
}

/****************************/
/*        New Section       */
/****************************/

#why_section {
  height: 950px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

#whyBol{
  background-color: #FFC069;
  border-top-left-radius: 9000px;
  border-bottom-left-radius: 9000px;
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: -1;

  height: 750px;
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#why_section_text_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 100px;
  color: #fff;
  width: 100%;
  width: 100%;
  gap: 50px;
  margin-top: -120px;
}

.why_section_item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 15px;
  word-spacing: 1px;
  width: 1000px;
}

.why_section_item p {
    margin-top: 5px;
}

#why_item_icon1, #why_item_icon2, #why_item_icon3, #why_item_icon4{
  min-width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
}

#why_item_icon1 {
  background-image: url(/svg/10132001_hand_pointer_event_line_icon.svg);
}

#why_item_icon2 {
  background-image: url(/svg/8468576_scale_ruler_centimeter_millimeter_geometry_icon.svg);
}

#why_item_icon3 {
  background-image: url(/svg/2739107_lightbulb_idea_light_icon.svg);
}

#why_item_icon4 {
  background-image: url(/svg/4781829_circle_customer_help_info_information_icon.svg);
}



