/*-----------------------------------=========Main-Style-Sheet=========----------------------------------------*/

@font-face {
  font-family: 'Avenir Next';
  src: url('webfonts/AvenirNextLTPro-Regular.woff') format('woff'),
      url('webfonts/AvenirNextLTPro-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir Next';
  src: url('webfonts/AvenirNextLTPro-Bold.woff') format('woff'),
      url('webfonts/AvenirNextLTPro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville-Bold.woff') format('woff'),
      url('webfonts/Baskerville-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville-BoldItalic.woff') format('woff'),
      url('webfonts/Baskerville-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville.woff') format('woff'),
      url('webfonts/Baskerville.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville-Italic.woff') format('woff'),
      url('webfonts/Baskerville-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville-SemiBoldItalic.woff') format('woff'),
      url('webfonts/Baskerville-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Baskerville';
  src: url('webfonts/Baskerville-SemiBold.woff') format('woff'),
      url('webfonts/Baskerville-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


:root {
  --theme__color1: #f8d30f;
  --theme__color2: #c4232b;
  --font1: 'Avenir Next';
  --font2: 'Baskerville';
  
}
*,::before,::after {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  line-height: 1.2;
  background-color: #fff;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font1);
}
a, a:active, a:focus, a:active, a:hover {
  text-decoration:none !important;
  color: inherit;
}
input{
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
a:hover,
a:focus,
input:focus,
input:hover,
select:focus,
select:hover,
select:active,
textarea:focus,
textarea:hover,
button:focus {
  outline: none;
}
::placeholder {
  opacity: 1;
}
:focus::placeholder {
  opacity: 0;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed; /* Prevents HTML tables from becoming too wide */
  width: 100%;
}
img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe {
  width: 100%;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
  font-weight: 700;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
p{
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
}
p:last-child{
  margin: 0;
}
.main-wrap {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}




/* header */
.header-section {
  padding: 20px 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #3f3e3d;
}
.header-section-inner {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.header-logo {
  display: block;
  width: 430px;
  position: absolute;
  top: 10px;
  left: 0;
}
.header-logo img {

}
.main-menu {

}
.main-menu ul {
  display: flex;
}
.main-menu ul li {  
  margin-right: 80px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li a {
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}
.main-menu ul li a:hover,
.main-menu ul li a.active {
  font-weight: 700;
  color: var(--theme__color1);
}
/* header-end */



/* ---offcanvas-css--- */
.offcanvas-open {
  font-size: 22px;
  transition: 0.3s;
  color: #fff;
  transform: scaleX(1.2);
}
.offcanvas-open:hover {
  color: var(--theme__color1);
}
.offcanvas-close {
  color: var(--theme__color1);
  position: absolute;
  transition: 0.3s;
  right: 25px;
  top: 25px;
}
.offcanvas-close:hover {
  color: #97A3AE;
}
.offcanvas-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translateX(-105%);
  transition: 0.3s;
}
.offcanvas-menu.active {
  transform: translate(0);
}
.offcanvas-menu .offmenu {
  max-width: 250px;
  min-width: 200px;
  z-index: 5;
  position: relative;
  background: var(--theme__color2);
  height: 100%;
  padding: 50px 20px 40px;
  overflow: auto;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.offcanvas-menu .offmenu :-webkit-scrollbar {
  display: none;
}
.offcanvas-menu ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #fff;
  padding: 10px;
  transition: 0.3s;
}
.offcanvas-menu ul li a.active,
.offcanvas-menu ul li a:hover {
  color: var(--theme__color1);
  font-weight: 700;
}
.dropdown-menu-custom ul {
  background: #fff;
  padding: 20px 0;
}
.dropdown-menu-custom ul li a {
  color: #97A3AE;
}
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.178);
  z-index: 2;
  transform: 0;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* ---offcanvas-css-end---*/



/* ---hero-section--- */
.hero-section {
  padding: 100px 0 0;
  background: url('images/hero-bg.png') no-repeat center center/cover;
  height: 700px;
}
.hero-section .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-section h1 {
  font-size: 37px;
  margin: 0;
  text-align: center;
}
/* ---hero-section----end */


/* ---first-cta-section--- */
.first-cta-section {

}
.first-cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first-cta-box {
  margin: -100px 0 0;
  padding: 22px 30px 18px;
  text-align: center;
  background: #000;
  border: 4px solid var(--theme__color1);
  border-radius: 13px;
  width: max-content;
  color: #fff;
}
.first-cta-box p {
  font-size: 24px;
  margin: 0 0 3px;
  line-height: 1.4;
}
.first-cta-text {
  margin: 25px 0 0;
  max-width: 550px;
  text-align: center;
}
.first-cta-text h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.first-cta-text p {
  font-weight: 600;
  margin: 0;
}
/* ---first-cta-section---end */



/* ---career-section */
.career-section {
  margin: 40px 0 0;
}
.career-row1 {
  padding: 70px 0 100px;
  background: url('images/career-bg1.png') no-repeat center center/cover;
}
.career-row1 .container {
  
}
.career-row1 .career-box {
  padding: 30px 30px 0;
  border-radius: 10px;
    background: var(--theme__color1);
    width: 420px;
    max-width: 100%;
    text-align: center;
  display: flex;
  flex-direction: column;
}
.career-row1 .career-box h2 {
  margin: 0 0 10px;
  color: var(--theme__color2);
  font-size: 24px;
}
.career-row1 .career-box p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 10px;
}
.career-row1 .career-box .button {
  margin: 0 0 -23px;
  font-size: 22px;
  padding: 10px 20px;
  display: inline-flex;
  background: #fff;
  border: 2px solid var(--theme__color2);
  border-radius: 14px;
  color: var(--theme__color2);
  align-self: flex-end;
}
.career-row2 {
  padding: 60px 0 80px;
  background: url('images/career-bg2.png') no-repeat center center/cover;
}
.career-row2 .container {
  text-align: center;
}
.career-row2 .container h2 {
  font-size: 24px;
  margin: 0 0 15px;
}
.career-row2 .container p {
  font-weight: 600;
  color: #58595b;
  line-height: 1.4;
}
/* ---career-section-end */




/* ---about-section--- */
.about-section {
  padding: 60px 0 50px;
  background: url('images/about-bg.png') no-repeat center center/cover;
} 
.about-section .container {

}
.about-text {

}
.about-text p {
  margin: 0 0 23px;
  color: #fff;
  font-weight: 600;
  text-align: right;
  line-height: 1.45;
}
.about-text p .title {
	font-size: 23px;
}
/* ---about-section---end */



/* ---free-click-section--- */
.free-click-section {
  padding: 80px 0;
  background: #3f3e3d;
}
.free-click-section .container {
  display: flex;
  
}
.free-click-section .button {
  min-height: 74px;
  padding: 10px 60px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme__color1);
  border-radius: 15px;
  font-size: 29px;
  color: #2c2b6c;
}
/* ---free-click-section---end */



/* ---footer-section--- */
.footer-section {
  position: relative;
}
.footer-section .float-social {
  position: absolute;
  top: -30px;
  right: 0;
}
.float-social {
}
.float-social ul {
  display: flex;
  padding: 10px 30px;
  background: var(--theme__color2);
  color: #fff;
}
.float-social ul li {
  margin-right: 20px;
}
.float-social ul li:last-child {
  margin-right: 0;
}
.float-social ul li a {
  height: 35px;
  width: 35px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.float-social ul li a:hover {
  background: var(--theme__color1);
  color: var(--theme__color2);
}
.footer-top {
  padding: 40px 0 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-top .footer-logo {
  margin: 0 0 16px;
  display: flex;
  width: 160px;
}
.footer-top p {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
}
.footer-top h3 {
  color: var(--theme__color2);
  font-size: 22px;
}
.footer-bottom {
  padding: 25px 12px;
  background: #3f3e3d;
}
.footer-bottom p {
  text-align: center;
  color: #fff;
  line-height: 1.4;
}
.footer-bottom  a:link {
	color: white;
	text-decoration: none;
}
.footer-bottom  a:hover {
	text-decoration: underline !important;
	color: #f8d30f;
}
/* ---footer-section---end */



/* ---hero2-section--- */
.hero2-section {
  padding: 20px 0;
  background: #d8d7d7;
}
.hero2-section .container {
  min-height: 210px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.hero2-section .first-cta-box {
  margin: 0 !important;
}
/* ---hero2-section---end */



/* ---content-section--- */
.content-section {

}
.content-section .container {

}
.content-section h2,
.content-section .h2 {
  margin: 0 0 25px;
  font-size: 45px;
  font-weight: 500;
}
.content-section h3 {
  margin: 0 0 30px;
  font-size: 35px;
  font-weight: 500;
}
.content-section p {
  margin: 0 0 22px;
  font-size: 21.8px;
  font-weight: 400;
  color: #515250;
  line-height: 1.4;
}
.content-section p:last-child {
  margin-bottom: 0;
}
.content-grid {
  padding: 70px 0 80px;
  grid-template-columns: repeat(10,1fr);
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 120px;
  grid-gap: 10px;
  overflow: hidden;
}
.content-grid .full-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.content-grid .grid-item h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
.content-grid .grid-item {
  background: rgb(221, 221, 221);
  display: flex;
}
.content-grid .grid-item-3-3 {
  grid-area: span 3/ span 3;
}
.content-grid .grid-item-4-2 {
  grid-area: span 2/ span 4;
}
.content-grid .grid-item-2-2 {
  grid-area: span 2/ span 2;
}
.content-grid .grid-item-2-1 {
  grid-area: span 1/ span 2;
}
.grid-bg1 {
  background: url('images/gradient-bg.png') no-repeat center center/100% 100% !important;
  color: #fff;
}
.grid-4-2-banner {
  padding: 50px 60px;
  display: flex;
  align-items: center;
}
.content-text-group1 {
  padding: 50px 0;
}
.content-text-group2 {
  padding: 0 0 50px;
  display: flex;
  flex-direction: column;
}
.content-text-group2 .text-row {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
}
.content-text-group2 .text-row .image {
  width: 24%;
  margin-left: 10px;
  flex-shrink: 0;
}
.content-element-group1 .link-button-container {
  display: flex;
  justify-content: space-between;
}
.content-element-group1 .link-button-container .button {
  width: 32.2%;
  font-size: 22px;
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.1;
  background: var(--theme__color2);
  border-radius: 14px;
  color: #fff;
}
.content-element-group1 .link-button-container .button:last-child {
  margin-bottom: 0;
}

.content-text-group3 {
  padding: 70px 0 50px;
}

.content-team-wrap {
 margin: 0 auto;
 width: max-content;
 max-width: 100%;
}
.content-team-wrap .member-group {
  border-bottom: 5px solid var(--theme__color1);
  margin-top: 40px;
}
.content-team-wrap .member-group .group-title {

}
.content-team-wrap .member-group .group-title h3 {
  color: var(--theme__color2);
  font-size: 25px;
  margin: 0  0 25px;
}
.team-member {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}
.team-member .image-side {
  --margin: 30px;
  height: 200px;
  width: 200px;
  margin: 0 var(--margin) 0 0;
  flex-shrink: 0;
}
.team-member.flip-member .image-side {
  order: 2;
  margin: 0 0 0 var(--margin);
}
.team-member .image-side img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10%;
}
.team-member .content-side {
  flex-grow: 1;
}
.team-member .content-side h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}
.team-member .content-side h2 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 600;
}
.team-member .content-side a {
  color: var(--theme__color2);
  opacity: 0.8;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
}
.team-member .content-side .link:hover {
  opacity: 1;
}
.team-member .content-side ul {
  margin: 10px  0 0;
}
.team-member .content-side ul li {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 3px;
}

.contact-us-data {
  display: flex;
}
.contact-title {
  margin: 0 0 30px !important;
  color: var(--theme__color2);
}
.contact-us-data .data-side {
  width: 400px;
  flex-shrink: 0;
}
.contact-us-data .data-side h3 {
  margin: 0 0 10px;
}
.contact-us-data .data-side p {
  font-weight: 500;
}
.contact-us-data .data-side a {
  color: var(--theme__color2);
}
.contact-us-data .data-side .data-group {
  margin: 0 0 30px;
}
.contact-us-data .data-side .data-group:last-child {
  margin-bottom: 0;
}
.contact-us-data .data-side .link {

}
.contact-us-data .image-side {
  flex-grow: 1;
  background: url('images/contact-image.jpg') no-repeat center center/cover;
}
.contact-us-data .image-side img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-location-wrap {
  margin: 40px 0 60px;
  height: 400px;
}
.contact-location-wrap iframe {
  height: 100%;
}
/* ---content-section---end */


/* --form-model-- */
.form-model {

}
.form-model h4 {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 500;
}
.form-model .single-input {
  width: 100%;
  margin: 0 0 23px;
} 
.form-model .single-input .input {
  width: 100%;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #000;
}
.form-model .single-input .input.big-input {
  height: 200px;
}
.form-model .single-input .file-input {
  font-weight: 500;
  font-weight: 18px;
}
.form-model .single-input .file-input::file-selector-button {
  border: 1px solid #000;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 18px;
}
.form-model .single-input label {
  font-size: 20px;
}
.form-model .single-input .title-label {
  margin: 0 0 8px;
  width: 100%;
  font-weight: 500;
}
.form-model .single-input .check-label-outer {

}
.form-model .single-input .check-label {
    margin: 0 15px 0 0;
}
.form-model .single-input .check-label:last-child {
  margin-right: 0;
}
.form-model .single-input .check-label span {
  margin: 0 0 0 5px;
}
.form-model .submit-button {
  margin: 10px 0 0;
  padding: 12px 25px;
  font-weight: 500;
  font-size: 20px;
  border: 2px solid #000;
  display: inline-block;
  background: transparent;
  transition: 0.3s;
}
.form-model .submit-button:hover {
  background: #000;
  color: #fff;
}
/* --form-model--end */

/*My Styles*/
.career-span a {
    color: red !important;
    text-decoration: underline !important;
}
.career-span a:hover {
    text-decoration: none !important;
    opacity: 50%;
}

.button-1 {
  /*background-color: white; */
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 28px;	
	font-weight: bold;
  margin: 0px auto 20px auto;
  transition-duration: 0.4s;
  cursor: pointer;
	width: 33%;
	border-radius: 5px;
	white-space: nowrap;
}

.button-careers {
  background-color: #E82333; 
  color: #fff; 
  border: none;
}

.button-careers:hover {
  background-color: #05557A;
  color: #fff !important;
}
.button-careers:visited  {  
  color: #fff !important;
}
.button-careers:focus  {  
  color: #fff !important;
}
.button-careers:active  {  
  color: #fff !important;
}
