/* ============================================================================
                    Global Variable start here
=============================================================================*/
:root {
  --title-font: "Roboto Slab", serif !important;
  --body-font: "Poppins", sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none !important;
}
p {
  font-family: var(--body-font) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font) !important;
}
ul li {
  list-style: none !important;
}
/* ============================================================================
                    Global Variable end here
=============================================================================*/

/* ============================================================================
                    Header Dropdown Hover start here
=============================================================================*/
@media all and (min-width: 992px) {
  .dropdown-item {
    padding: 0.4rem 1rem !important;
    border-bottom: 1px solid black !important;
    font-weight: 500 !important;
  }
  .dropdown-menu {
    padding: 0rem 0 !important;
  }
  .navbar .nav-item .dropdown-menu {
    display: none;
    margin-top: 0;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    font-weight: 700;
  }
  .navbar .nav-item:hover .dropdown-menu .dropdown-item:hover {
    background: red;
    color: white;
  }
}
/* ============================================================================
                  Header Dropdown Hover end here
=============================================================================*/
/* ============================================================================
                    Header part end here
=============================================================================*/
header .container {
  background: black !important;
  padding: 5px 0;
}
header .header__left {
  color: white !important;
  font-family: var(--body-font);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}
header .header__left i {
  padding: 0px 8px;
}

header .header__right {
  color: white !important;
  text-align: right;
  font-family: var(--body-font);
  font-size: 13px;
  margin-top: 2px;
  font-weight: 500;
}
header .header__right a {
  color: white;
  padding: 15px;
}
/* ============================================================================
                    Header part end here
=============================================================================*/
/* ============================================================================
                    Nav part start here
=============================================================================*/
.navbar {
  font-family: var(--body-font) !important;
  font-weight: 700;
  font-size: 17px;
}
nav .container {
  background: white !important;
  box-shadow: 0px 3px 11px -7px black;
  padding: 10px 0px;
  padding-right: 5px;
  height: 100%;
  margin-top: -10px;
  margin-bottom: -8px;
}
nav .container button {
  border: 1px solid red;
  font-weight: 700;
}
nav .container button:hover {
  border: 1px solid black;
  cursor: pointer;
  background: black;
  color: white;
}
.navbar-toggler {
  background: black;
}
.nav-link {
  color: black !important;
}
.dropdown-toggle::after {
  display: none !important;
}
nav .container #logo {
  width: 150px;
  padding: 8px;
}
nav .container .nav-item {
  margin-right: 10px;
}

/* ============================================================================
                    Nav part end here
=============================================================================*/

/* ============================================================================
                    Contact Us part start here
=============================================================================*/
.contact {
  position: relative;
  min-height: 10vh;
  padding: 0px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 100px;
  margin-top: 100px;
}
.contact .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact .content h2 {
  font-size: 37px;
  font-weight: 500;
  color: black;
  margin-bottom: 20px;
  text-align: center;
  margin-top: -50px;
}
.contact .content hr {
  margin-top: 25px;
}
.contact .content p {
  font-weight: 300;
  color: black;
  max-width: 1100px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
}
.contactBox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
  margin-top: 30px;
}
.contactBox .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.contactBox .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}
.box a {
  text-decoration: none;
  color: black;
}
.box a:hover {
  color: blue;
  cursor: pointer;
  font-weight: 600;
}
.contactBox .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
  -webkit-box-shadow: 0px 0px 19px 6px rgba(0, 0, 0, 0.51);
  -moz-box-shadow: 0px 0px 19px 6px rgba(0, 0, 0, 0.51);
  box-shadow: 0px 0px 19px 6px rgba(0, 0, 0, 0.51);
  transition: ease-in 0.5s;
}
.contactBox .contactInfo .box .icon:hover {
  color: white;
  background: black;
}
.contactBox .contactInfo .box .text {
  display: flex;
  margin-left: 20px;
  font-size: 16px;
  color: black;
  flex-direction: column;
  font-weight: 300;
}
.contactBox .contactInfo .box .text h3 {
  font-weight: 500;
  color: black;
}
.contactBox .contactInfo .box .text h3:hover {
  color: red;
  font-weight: 800;
}
.contactForm {
  width: 40%;
  padding: 40px;
  background: white;
  box-shadow: 0 30px 45px black;
  padding-top: 80px;
}
.contactForm h2 {
  font-size: 30px;
  color: black;
  font-weight: 500;
}
.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.contactForm .inputBox:hover {
  color: black;
  font-weight: 800;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid black;
  outline: none;
  resize: none;
}
.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-family: var(--body-font);
  font-size: 15px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}
.contactForm .inputBox .mybtn {
  width: 100px;
  background: red;
  border-radius: 5px;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  transition: ease-in 0.5s;
}
.contactForm .inputBox .err1 {
  color: red;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  display: none;
}
.contactForm .inputBox .err2 {
  color: red;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  display: none;
}
.contactForm .inputBox .err3 {
  color: red;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  display: none;
}
.contactForm .messages {
  display: none;
  text-align: center;
  color: green;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 80px;
}
.contactForm .messages i {
  font-size: 80px;
  margin-bottom: 10px;
}
.contactForm .inputBox .mybtn:hover {
  color: white;
  background-color: black;
}
@media (max-width: 991px) {
  .contact {
    padding: 50px;
  }
  .contactBox {
    flex-direction: column;
  }
  .contactBox .contactInfo {
    margin-bottom: 40px;
  }
  .contactBox .contactInfo,
  .contactForm {
    width: 100%;
  }
}

/* ============================================================================
                    Contact Us part end here
=============================================================================*/

/* ============================================================================
                   Footer Part start here
=============================================================================*/

/* ==================================Footer Top start here============================= */
footer .footer__top {
  background: red;
  margin-top: -16px !important;
  width: 100%;
}
footer .footer__top i {
  font-size: 25px;
  padding: 16px;
  color: white;
  background-color: red;
  border-radius: 50%;
  position: relative;
}
footer .footer__top .row a {
  text-decoration: none;
  color: white;
}
footer .footer__top .row ul {
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0px 5px 4px 0px black;
}

footer .footer__top i::before {
  background: red;
  position: absolute;
  padding: 16px;
  border-radius: 50%;
  right: -10px;
  bottom: 4px;
  -webkit-box-shadow: 0px 10px 18px 0px rgb(0 0 0 / 48%);
  -moz-box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.48);
  box-shadow: 0px 3px 3px 0px rgb(0 0 0 / 48%);
}
/* ==================================Footer Top end here============================= */

/* ==================================Footer Bottom start here============================= */
footer .main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .main a {
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: ease-in-out 0.5s;
  font-weight: 500;
}
footer .main a:hover {
  border: 1px solid red !important;
  cursor: pointer;
  color: black !important;
  background: white;
}
footer #copyright {
  text-decoration: none;
  color: white;
}

/* ==================================Footer Bottom end here============================= */

/* ============================================================================
                    Footer part end here
=============================================================================*/
