:root {
  --titleColor: #0a0a0a;
  --textColor: #777777;
  --IPMColor: #ad1414;
  --IPMColorLight: #c02d2d;
  --IPMColorBlack: #0a0a0a;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "obliqua", Regular;
  font-size: 18px;
  line-height: 24px;
  color: var(--textColor);
  font-weight: normal;
  font-style: normal;
}

* {
  position: relative;
}

h3 {
  font-size: 32px;
  line-height: 36px;
  color: var(--titleColor);
  margin: 0;
  margin-bottom: 25px;
}

@media (max-width: 425px) {
  h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

.global-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1648px;
}

.icon-info-block {
  padding: 5px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.section {
  padding: 64px 0;
}

/* Header Style */
#header {
  height: 140px;
}

/*logo style*/
#logo {
  height: 110px;
  display: inline-block;
  float: left;
  margin-top: 20px;
}

/*flag icons style*/
.left-icon {
  margin-left: 30px;
}

.flag-icon {
  height: 50px;
  width: 50px;
  margin-top: 60px;
  display: inline-block;
  padding-left: 5px;
  transition: transform 250ms;
}

.flag-icon:hover {
  transform: translateY(-4px);
  cursor: pointer;
}

/* Navbar Style */
#navbar {
  float: right;
  padding: 30px;
  padding-right: 0px;
  font-size: 19px;
}
#navbar-mobile {
  display: none;
}
#navbar-mobile .fa-1x {
  font-size: 1.6rem;
  color: var(--titleColor);
}

#navbar-mobile .navbar-collapse {
  margin: 0 33px;
  background-color: var(--IPMColorBlack);
}

#navbar-mobile .navbar-collapse ul {
  margin: 32px;
  padding: 32px 0px;
  border-top: 1px solid var(--IPMColor);
  border-bottom: 1px solid var(--IPMColor);
}

#navbar-mobile .navbar-collapse ul .dropright {
  padding-top: 64px;
  text-align: left;
}

#navbar-mobile .navbar-collapse ul .dropright .dropdown-menu {
  padding: 0;
  padding-left: 8px;
  min-width: unset;
  background: transparent;
  border: 0;
}

#navbar-mobile .navbar-collapse ul .dropright .dropdown-item {
  display: inline-block;
  width: 24px;
  padding: 0px 4px;
}

#navbar-mobile .nav-link {
  color: white;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  text-align: left;
  padding: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
}

#navbar-mobile .nav-link:hover {
  color: var(--IPMColor);
}

.navbar-toggler.toggler-example {
  cursor: pointer;
  margin-right: 10px;
}
.dark-blue-text {
  color: #ffff;
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border: 0;
  margin: 0;
  padding: 5px;
}

.navbar-light .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
}
.navbar-light:hover .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
}
.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px 0px 0px 0px;
}

#header ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#header li {
  float: right;
  margin-left: 2px;
}

#header li > a {
  display: block;
  color: var(--titleColor);
  text-align: center;
  padding: 40px 16px;
  padding-top: 10px;
  text-decoration: none;
  transition: transform 450ms;
}

#header li .dropdown {
  padding: 40px 16px;
  padding-top: 10px;
}

#header li .dropdown .dropdown-menu {
  padding-top: 24px;
  min-width: unset;
  background: transparent;
  border: 0;
}

#header li .dropdown .dropdown-item {
  width: 35px;
  padding: 4px 0px;
}

#header li:hover a {
  transform: translateY(-5px);
}

@media (max-width: 1750px) {
  #header {
    padding: 0px 32px;
  }
}

@media screen and (max-width: 1206px) {
  #navbar {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  #logo {
    display: none;
  }

  #navbar {
    display: none;
  }
  #navbar-mobile {
    float: none;
    padding: 0;
    text-align: center;
    margin: auto;
    display: block;
  }
  #navbar-mobile ul.top-navbar {
    display: block;
    text-align: center;
    padding: 10px 0;
  }

  li:hover a {
    transform: translateY(-0px);
  }

  #header {
    text-align: center;
  }

  #header {
    height: auto;
  }

  #below-header {
    text-align: center;
  }

  .below-header-text-h1,
  .below-header-text-p {
    margin-left: 0 !important;
  }
}
/* below header style*/
#below-header {
  display: inline-block;
  width: 50%;
  margin-left: 25%;
}
.below-header-text {
  color: #3b3e50;
}
.below-header-text-h1 {
  margin-top: 60px;
  font-size: 50px;
  color: #94b7dd;
}
.below-header-text-h2 {
  margin-top: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #94b7dd;
}
.below-header-text-h3 {
  color: #94b7dd;
}
.below-header-text-p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 30px;
}
hr {
  width: 100%;
  border: #dedede 1px solid;
}
.below-header-text-h3 {
  font-size: 18px;
}
.below-header-text-h2 {
  font-size: 28px;
}
.build-yourself-img {
  margin-top: 20px;
}
.build-yourself-list {
  font-size: 14px;
}

/*Footer section style*/
footer {
  background-color: var(--IPMColorBlack);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 60px;
}

.footer-grid h3 {
  color: white;
  margin-bottom: 25px;
  font-weight: 400;
}

.footer-grid p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-grid .awesome-icon {
  padding: 5px;
  background-color: var(--IPMColor);
  font-size: 25px;
}

.footer-grid .icon-info-block {
  color: white;
}

.footer-grid .certificates {
  margin-top: 25px;
}

.contact-us-bx24-form-re-styling .b24-form-control {
  border-radius: 0 !important;
  border: 1px solid var(--textColor) !important;
  background-color: white !important;
  padding-left: 20px !important;
  font-size: 18px !important;
  line-height: 22px !important;
}

.contact-us-bx24-form-re-styling .b24-form-control-label {
  padding-left: 20px !important;
  color: var(--textColor) !important;
  opacity: 1 !important;
}

.contact-us-bx24-form-re-styling .b24-form-btn {
  background-color: var(--IPMColor) !important;
  color: white !important;
  font-family: "obliqua", Regular !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  margin: 0 !important;
  padding: 18px 32px !important;
  border: 0 !important;
  outline: none !important;
  cursor: pointer !important;
  white-space: normal !important;
  font-size: 24px !important;
  text-align: center !important;
  transition: background-color 0.3s ease-in-out !important;
  border-radius: 0 !important;
}
.contact-us-bx24-form-re-styling .b24-form-btn:hover {
  background-color: var(--IPMColorBlack) !important;
}
@media (max-width: 1700px) {
  .footer-grid {
    padding: 0 30px;
  }
}

@media (max-width: 1250px) {
  .footer-grid {
    padding: 0 30px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .form-column {
    grid-row: 2;
    grid-column: 1/3;
  }
}

@media (max-width: 620px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .form-column {
    grid-row: unset;
    grid-column: unset;
  }
}

/*Footer copyright section style*/
#footer-copyright {
  background-color: var(--IPMColor);
  color: white;
  padding: 17px 0;
}

@media (max-width: 1700px) {
  #footer-copyright {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* scroll button style */
#scrollButton {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #f2f2f2;
  color: #94b7dd;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 250ms;
}
#scrollButton:hover {
  width: 52px;
  height: 52px;
  transform: translateY(-8px);
}
#scrollButton i {
  font-size: 24px;
}

/* ALL MOBILE STYLES */

@media screen and (max-width: 650px) {
  #below-header {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
  }
}

@media screen and (max-width: 420px) {
  #scrollButton {
    right: 0px;
  }
}
