@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/*
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap");*/

:root {
  --color-primary: #00194f;
  --color-secondary: #00558b;
  /*--color-extra: #1d5868;*/
  --color-extra: #f6f6f6;
}

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

html,
body {
  font-family: 'Gothic A1', sans-serif;
  font-family: 'Nunito', sans-serif;
  line-height: 1.4;
  color: #202020;
  scroll-behavior: smooth;
}



a {
  color: #202020;
}

ul {
  list-style: none;
}

p {
  margin: 5px 0;
  line-height: 1.7;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section a {
  color: #fff;
  text-decoration: underline;
  transition-duration: 0.8s;
}

section a:hover {
  text-decoration: none;
  color: var(--color-extra);
  transform: scale(107%);
  transition-duration: 0.8s;
}

h1 {
  font-size: 3.125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

h3 {
  font-size: 2.125rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

h4 {
  font-size: 1.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0px;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Navbar */

.tab-accessible {}

.navbar {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.navbar ul {
  display: flex;
  align-items: center;
}

.navbar li {
  margin: 0 15px;
  font-weight: bold;
}

.navbar a {
  color: #202020;
  text-decoration: none;
  transition-duration: 0.8s;
}

.navbar a:hover {
  color: var(--color-extra);
  transform: scale(125%);
  transition-duration: 0.8s;
}

.navbar-brand img {
  width: auto;
  height: 35px;
  margin-left: 30px;
}

.navbar-nav-left {
  text-transform: uppercase;
  flex: 1;
  margin-left: 20px;
}



/*.navbar-nav-right li:first-child a {
  display: flex;
  align-items: center;
}*/

/*.navbar-nav-right img {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}*/

/*.navbar-nav-right li:nth-child(2) {
  margin: 0 5px;
}*/



/* Footer & Social */

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px 30px;
}


.social {
  display: flex;
  align-items: center;
  margin: 20px 0;
}


.social img {
  width: 30px;
  height: 30px;
  margin-top: 7px;
  transition-duration: 0.8s;
}

.social img:hover {
  width: 30px;
  height: 30px;
  transform: scale(125%);
  transition-duration: 0.8s;
}

.social a {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  transition-duration: 0.8s;
}

.social a:hover {
  width: 30px;
  height: 30px;

  transition-duration: 0.8s;
}



/* Box */



.box {
  margin-bottom: 30px;
}

/*------------------------------------ to add video in box-inner-------------------*/

/*--- Box A ---*/

.box-inner {
  max-width: 700px;
  margin: 40px auto;
}

/*------------------------------------ added---------------------------------------*/
.box-inner p {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 20px auto;
  line-height: 1.3;
}

/*------------------------------------ added---------------------------------------*/
.box-inner p a {
  background-color: none;
  border-color: #fff;
  color: #fff;
  text-decoration: none;
  text-transform: none;
  text-align: center;
  font-weight: 300;
}

.box-inner p a:hover {
  background-color: var(--color-extra);
  border-color: var(--color-extra);
  color: #202020;
  text-decoration: none;
}

/*--- Box B, C, D, E ---*/

.box-text {
  max-width: 500px;
  text-align: center;
  justify-self: center;
  padding: 30px 0;
  margin: 30px auto;
  /*--margin: 0 auto; --*/
}


.box-f .box-text {
  max-width: 600px;
}

/* Grid Styles */

.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*--- gap: 2rem; ---*/
  align-items: center;
  justify-content: space-between;
}

.grid-reversed :first-child {
  order: 2;
}

/*------------------------------------ added---------------------------------------*/


/* Buttons */

.btn {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: 2px solid;
  border-radius: 50px;
  padding: 7px 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}



/* -- We Are Here To Help btn --*/



.btn-light-outline {
  background-color: var(--color-primary);
  border-color: #fff;
  text-decoration: none;
  transition-duration: 0.8s;
}

.btn-light-outline:hover {
  background-color: var(--color-extra);
  border-color: var(--color-extra);
  color: #202020;
  text-decoration: none;
  transform: scale(107%);
  transition-duration: 0.8s;
}



/* Backgrounds */



.bg-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.bg-secondary {
  background-color: var(--color-secondary);
  color: #fff;
}

.bg-extra {
  background-color: var(--color-secondary);
  color: #fff;
}

.bg-dark {
  background-color: var(--color-dark);
  color: #fff;
}



/* Text Styling */



.text-center {
  text-align: center;
}

.text-xxl {
  font-size: 3.125rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-xl {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 20px;
}

.text-lg {
  font-size: 2.125rem;
  margin-bottom: 20px;
}

.text-md {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.text-sm {
  font-size: 1.1875rem;
  margin-bottom: 20px;
}


/*-- added Box A -- Button--*/


.text-md-btn a {
  font-size: 17px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: normal;
}

.text-md-btn a:hover {
  background-color: var(--color-extra);
  border-color: var(--color-extra);
  color: #202020;
  text-decoration: none;
  letter-spacing: normal;
}


/*-- added Back to Top -- Button--*/


.back-to-top-btn img {
  width: auto;
  height: 30px;
  margin-top: 7px;
  transition-duration: 0.8s;
}

.back-to-top-btn img:hover {
  width: auto;
  height: 30px;
  color: var(--color-extra);
  transform: scale(125%);
  transition-duration: 0.8s;
}

.back-to-top-btn-one img {
  width: auto;
  height: 30px;
  margin-top: 20px;
  transition-duration: 0.8s;
}

.back-to-top-btn-one img:hover {
  width: auto;
  height: 30px;
  color: var(--color-extra);
  transform: scale(125%);
  transition-duration: 0.8s;
}


/* Padding */


.py-sm {
  padding: 10px 0;
}

.py-md {
  padding: 20px 0;
}

.py-lg {
  padding: 40px 0;
}


/* Hamburger Menu Icon */


.hamburger {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: fixed;
  /*--relative*/
  background: none;
  border: none;
  z-index: 7;
  transition: all 0.25s;
  display: none;
}

.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 5px;
  background: white;
  transform: rotate(0);
  transition: all 0.5s;
  border-radius: 40%;
  border: 2px solid #1d5868;
}

.hamburger-middle {
  transform: translateY(7px);
}

.hamburger-bottom {
  transform: translateY(14px);
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  top: 85px;
  right: 0;
  background-color: #f0f0f0;
  color: #202020;
  width: 90%;
  height: 100%;
  padding: 30px;
  box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%),
    inset 0 4px 2px -2px rgb(0 0 0 / 7%);
  transition: all 0.3s;
  z-index: 7;
}

.mobile-menu img {
  width: 25px;
  height: auto;
  margin-left: 2px;
}

.mobile-menu ul {
  line-height: 3;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 20px;
  transition-duration: 0.8s;
}

.mobile-menu a:hover {
  color: var(--color-primary);
  transform: scale(125%);
  transition-duration: 0.8s;
}

.mobile-menu div {
  margin-top: 20px;
}

.mobile-menu div a {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.hidden {
  transform: translateX(100%);
}

.no-scroll {
  overflow: hidden;
}




/*------------------------ ADDED SLIDER -----------------------------------------------*/


.slider-container {
  position: relative;
  width: 500px;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
  margin: 0 auto;
  /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);*/
}

.image-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.boton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.25rem;
  opacity: 0.5;
  cursor: pointer;
}

.boton.prev {
  left: 10px;
}

.boton.next {
  right: 10px;
}

.boton:hover {
  opacity: 1;
}






/*------- Media Queries -----------------------------------------------------*/



@media (max-width: 300px) {
  .text-xxl {
    font-size: 1.5625rem;
  }

  .text-xl {
    font-size: .9375rem;
  }

  .text-lg {
    font-size: .75rem;
  }

  .text-md {
    font-size: .625rem;
  }

  .text-sm {
    font-size: .5rem;
  }
}


@media (max-width: 500px) {
  .slider-container {
    width: calc(100% - 40px);
    margin-top: 107px;
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: block;
    margin-right: 30px;
    right: 0;
  }

  .grid-col-2 {
    grid-template-columns: 1fr;
  }

  .grid-reversed :first-child {
    order: 0;
  }

  .navbar-brand img {
    width: auto;
    /*---logo - height on iphone view was 30px--*/
    height: 32px;
    margin: 10px;
  }

  .navbar .navbar-nav-left,
  .navbar .navbar-nav-right {
    display: none;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 960px) {
  .text-xxl {
    font-size: 2.5rem;
  }

  .text-xl {
    font-size: 1.1875rem;
  }

  .text-lg {
    font-size: 1.5625rem;
  }

  .text-md {
    font-size: 1.1875rem;
  }
}

@media (min-width: 1440px) {
  .box {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }

  .divider {
    max-width: 90%;
  }
}