/*** ======= // TABLE OF CONTENT // ============================
01- Google Fonts
02- General Variables
03- General Styling
    03.1- Default Colors
    03.2- Container
    03.3- Fonts Typography
    03.4- Image
    03.5- Cross Browser Compatibility
    03.6- Border Radius
04- General Variables

===================================================== ***/




@font-face {
    font-family: "GraphikRegular";
    src: local("Trickster"), url("/assets/fonts/Graphik/GraphikRegular.otf") format("opentype"), url("/assets/fonts/Graphik/GraphikRegular.woff") format("woff"), url("/assets/fonts/Graphik/GraphikRegular.woff2") format("woff2"), url("/assets/fonts/Graphik/GraphikRegular.ttf") format('truetype'), url("/assets/fonts/Graphik/GraphikRegular.svg#GraphikRegular") format('svg');
}

@font-face {
    font-family: "GraphikMedium";
    src: local("Trickster"), url("/assets/fonts/Graphik/GraphikMedium.otf") format("opentype"), url("/assets/fonts/Graphik/GraphikMedium.woff") format("woff"), url("/assets/fonts/Graphik/GraphikMedium.woff2") format("woff2"), url("/assets/fonts/Graphik/GraphikMedium.ttf") format('truetype');
}

:root {
  --primary-color: #000000;
  --secondary-color: #6c757d;
  --Text-color: #002768;
  --Text2-color: #ffffff;
  --backG-color: #d6d3d3;
}



/*=== Google Fonts ===*/
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);

/*=== General Variables ===*/
:root {
  --color1: #707070;
  --color2: #d9d9d9;
  --black: #000000;
  --white: #ffffff;
  --transition: all 0.2s cubic-bezier(0.19, 0.68, 0.49, 1.21);
  --transition2: all 0.3s linear;
  --Lato: 'Lato', sans-serif;
}

/*=== General Styling ===*/
body,
html {
  overflow-x: hidden;
}

body {
  font-family: var(--Lato) !important;
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  color: inherit;
}

a,
a:hover,
a:focus,
ins {
  text-decoration: none;
  outline: none;
}

input,
textarea,
select,
button {
  border: 0;
}

button,
input[type="submit"],
.fileContainer,
input[type="file"] {
  cursor: pointer;
}

input:focus,
textarea:focus,
select:focus,
button:focus,
.form-wrp fieldset p a:focus,
.page-link:focus,
.btn.focus,
.btn:focus,
.bootstrap-select .dropdown-toggle:focus {
  border-color: transparent;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

textarea {
  resize: none;
}

main,
section,
footer {
    display: -ms-flexbox;
    /*display: flex;*/
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 100%;
    position: relative;
    width: 100%;
    justify-content: center !important;
}

/*=== Container ===*/
.container,
.container-fluid {
  padding: 0;
}

/*=== Fonts Typography ===*/
.fw-hairline {
  font-weight: 100 !important;
}

.fw-lighter {
  font-weight: 200 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

/*=== Image ===*/
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.wow {
  visibility: hidden;
}

/*=== Cross Browser Compatibility ===*/
i,
a,
svg,
svg *,
img,
input,
button,
button.nav-link,
textarea,
:before,
:after,
label,
span,
nav ul li {
  -webkit-transition: var(--transition2);
  transition: var(--transition2);
}

img,
nav ul ul {
  -webkit-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1);
  /* older webkit */
  -webkit-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 600ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* easeOutBack */
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  /* older webkit */
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* easeOutBack */
}

/*===== Page Style =====*/
header {
  position: absolute;
  top: 2.5rem;
  z-index: 999;
  left: 0;
  right: 0;
}

.headerFreeContain {
  display: flex !important;
  flex-direction: column !important;
}





@media (max-width: 1200px) {
  .headerFreeContain h3 {
    font-size: 31px;
  }

  .headerApplyArea {
    display: none;
  }
  
}

@media(max-width:941px) {
    .termsTop {
        margin-top: 0 !important;
        padding-left: 20px !important;
    }
}

@media (max-width: 650px) {
  .res-ptop-30 {
    padding-top: 30px;
  }

  .res-pbottom-30 {
    padding-bottom: 30px;
  }
  .sm-feat-cap>h3 { 
    text-align: center;
  }
}

.sm-logo {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.sm-logo>span {
  position: relative;
}

.sm-logo>span+span:before {
  content: "";
  position: absolute;
  left: -2.5rem;
  height: 2.5rem;
  width: 1px;
  background-color: #fff;
  opacity: .5;
  top: calc(50% - 1.25rem);
}

.sm-feat-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  min-height: 670px;
  right: 0;
  top: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.sm-feat-cap-wrap {
  gap: 0em;
  margin-top: -9rem;
}



@media (max-width: 1350px) {
  .sm-feat-cap-wrap {
    gap: 5rem;
    margin-top: 0rem;
  }

  .sm-feat-cap>h3 {
    font-size: 2rem;
  }
}

@media (max-width: 650px) {

}

.sm-feat-cap>h3 {
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  white-space: normal;
  position: relative;


}

.sm-feat-cap>h3 strong {
  font-weight: 700;
}

.sm-feat-cap>h3 img {
  position: absolute;
  left: 0;
  top: calc(50% - 4rem);
  max-width: 8rem;
}

.sm-feat-cap {
  gap: 1.7rem;
}

.sm-feat-cap * {
  color: #fff;
}

.sm-feat-cap>p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.5;
  max-width: 90%;
}

.sm-feat-cap-inner {
  align-items: center;
  gap: 1.875rem;
}

.sm-feat-cap-inner>h2 {
  font-size: 5.5rem;
  text-transform: uppercase;
}

.sm-feat-cap-inner>ul,
.sm-feat-desc {
  border-left: 2px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin: 0;
  padding-left: 1.5625rem;
  font-family: 'graphikRegular';
}

.sm-feat-cap-inner>ul li,
.sm-feat-desc-inner>p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-family: 'graphikRegular';
}

.mockup-box {
  flex: 0 0 28.4375rem;
  max-width: 28.4375rem;
  text-align: end;
}

@media (max-width: 1250px) {
  .mockup-box {
    display: none;
  }
}

.sm-feats {
  text-align: center;
  margin-top: 1.25rem;
  min-width: calc(100% + 5rem);
  margin-left: -2.5rem;
}

.sm-feats>p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.sm-brdg-wrap {
  overflow: hidden;
}

.sm-brdg-wrap>img {
  right: -10%;
  top: -20%;
}

.sm-brdg-cap-wrap {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*.sm-brdg-cap-wrap .sm-brdg-inner {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}*/
.sm-brdg-cap-wrap .sm-brdg-cap>* {
  max-width: 100%;
}

.sm-brdg-inner {
  top: 30%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sm-brdg-cap {
  gap: 1.25rem;
  max-width: 50%;
}

.sm-brdg-cap>h2 {
  font-size: 2.875rem;
  max-width: 90%;
  color: #212529;
  font-family: var(--Lato) !important;
}

.sm-brdg-cap>h3 {
  font-size: 2rem;
  font-weight: 400;
}

.sm-brdg-cap>p {
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 75%;
  color: #212529;
}

.sm-brdg-cap>span {
  font-size: 1rem;
  line-height: 1.5;
}

.sm-footer-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.sm-footer a.sm-theme-btn {
    position: absolute;
    z-index: 99;
    bottom: 3.6vh;
    right: 15%;
    background-color: #f6cf43;
    -webkit-border-radius: 20rem;
    border-radius: 20rem;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 2.5rem;
    color: #000000;
}

    .sm-footer a.sm-theme-btn:hover,
    .sm-footer a.sm-theme-btn:focus {
        background-color: #ffffff;
        color: #000000;
    }

/*===== ACP Form Style =====*/
.sm-step-cap-box {
  margin-bottom: 1.5rem;
  text-align: center;
  gap: 12px;
}

h2.sm-step-title {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.step-box .sm-step-cap-box>p {
  margin-bottom: 0
}

.step-box p {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.sm-field-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.sm-field-box>label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  width: 100%;
  color: #606266;
}

.sm-field-box>input,
.sm-field-box>select {
  width: 100%;
  background-color: #fafafa;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  height: 1.875rem;
  padding: 5px 1.875rem 5px 5px;
  color: #888;
  font-size: 1rem;
}

.sm-fields-group {
  gap: 1.5rem;
  margin-top: .9375rem;
}

.sm-fields-group .form-check {
  min-height: initial;
  margin: 0;
  color: #606266;
  position: relative;
  padding-left: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.sm-fields-group .form-check>input {
  margin: 0;
  position: static;
  height: 1.25rem;
  width: 1.25rem;
  border: 2px solid rgba(0, 0, 0, .5);
}

.sm-fields-group .form-check>label {
  cursor: pointer;
  flex: 1 0 0;
}

.sm-fields-group .form-check>input:checked {
  background-color: #003791;
  border-color: #003791;
}

.sm-fields-group.hear_about_radio {
  flex-wrap: wrap;
  gap: .9375rem;
  margin-bottom: 1.5rem;
}

.sm-fields-group.hear_about_radio .form-check {
  flex: 0 0 calc(33.3333% - .9375rem);
  max-width: calc(33.3333% - .9375rem);
}

.sm-step-btns {
  border-top: 2px solid rgba(0, 0, 0, .2);
  gap: 10px;
  padding-top: 1.875rem;
}

.sm-step-btns button.theme-btn {
  font-weight: 600;
  padding: 13px 1.875rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.sm-step-btns button.theme-btn {
  background-color: #003791;
  border-color: #003791;
  color: #fff;
}

.sm-step-btns button.theme-btn:hover,
.sm-step-btns button.theme-btn:focus {
  background-color: #242424;
  border-color: #242424;
}

.sm-step-btns button.back {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, .2);
  color: #242424;
}

.sm-step-btns button.back:hover,
.sm-step-btns button.back:focus {
  background-color: #003791;
  border-color: #003791;
  color: #fff;
}

.step-box fieldset {
  border: 2px dashed rgba(0, 0, 0, .2);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /*margin-bottom: 3.125rem;*/
  padding: 1.875rem 2.5rem 1.25rem;
}

.step-box fieldset legend {
  font-size: 1.25rem;
  padding: 1px 1.25rem;
  margin: 0;
  float: none;
  width: auto;
}

.sm-step-inr-cap-box {
  gap: 9px;
  margin-bottom: 1.875rem;
}

.sm-step-inr-cap-box>h3 {
  font-size: 1.5rem;
}

.sm-step-inr-cap-box>p {
  font-size: 1rem;
  margin-bottom: 0;
}

.sm-qualify-field-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sm-qualify-field-box .form-check {
  align-items: center;
  border: 2px solid rgba(0, 0, 0, .2);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  padding: 1.25rem;
}

.sm-qualify-field-box .form-check label {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  flex: 0 0 auto;
}

.sm-qualify-program-list {
  gap: .9375rem;
  margin-top: 0;
}

.sm-qualify-program-list .form-check {
  align-items: initial;
}

.sm-qualify-program-list .form-check ul {
  margin: 10px 0 0;
  padding-left: 1.25rem;
}

.step-box h4+p {
  font-size: .9375rem;
}

.sm-qualify-household table+h4 {
  margin: 1.87rem 0 5px;
}

.sm-qualify-household table {
  border-collapse: collapse;
  max-width: 60%;
  margin: 0 auto;
}

.sm-qualify-household table thead {
  background-color: #003791;
}

.sm-qualify-household table thead th {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: .9375rem;
  text-align: initial;
}

.sm-qualify-household table thead th span {
  color: inherit;
  font-weight: 300;
}

.sm-qualify-household table td {
  border: 1px solid #b7cad8;
  padding: 10px;
}

.sm-qualify-field-box.v2 .form-check {
  padding: 2.5rem;
  position: relative;
}

.sm-qualify-field-box.v2 .form-check>input {
  position: absolute;
  top: .9375rem;
  left: .9375rem;
}

.sm-qualify-field-box .form-check label svg {
  max-height: 10rem;
}

.sm-qualify-field-box.v2 .form-check label {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sm-apply-wrap {
  padding: 1.875rem 0;
}

.housing_list {
  gap: 10px;
  margin: 10px 0;
  padding-left: 1.875rem;
}

.sm-steps-review-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sm-appl-data {
  margin-bottom: -1.5rem;
}

.sm-appl-data .sm-appl-data-box {
  margin-bottom: 1.5rem;
}

.sm-appl-data>div.row>div:first-child .sm-appl-data-box {
  align-items: center;
  text-align: center;
  justify-content: initial;
}

.sm-appl-data-box {
  background-color: #e2f3ff;
  padding: 1.5rem 1.5rem 1.875rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 22.3475rem;
  max-height: 22.3475rem;
}

.sm-appl-data-box .sm-appl-data-title {
  background-color: #003791;
  color: #fff;
  margin: -1.5rem -1.5rem 1.25rem;
  width: calc(100% + 3rem);
  padding: 12px 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: initial;
  font-size: 18.72px;
}

.sm-appl-data-box .sm-appl-data-title button.theme-btn {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 12px;
  padding: 7px 12px;
  font-weight: 600;
}

.sm-appl-data-box .sm-appl-data-title button.theme-btn:hover,
.sm-appl-data-box .sm-appl-data-title button.theme-btn:focus {
  background-color: #fff;
  color: #003791;
}

.sm-appl-data-box>strong {
  font-size: 1.125rem;
  line-height: 1.5;
}

.sm-appl-data-box>span {
  font-size: .9375rem;
  color: #666;
  line-height: 1.5;
}

.sm-appl-data>div.row>div:first-child .sm-appl-data-box>strong+span {
  margin-top: -7px;
}

.sm-appl-data-box>span img {
  max-width: 9.375rem;
}

.sm-appl-data-box>address {
  margin: 0 0 1.25rem;
  display: flex;
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  gap: 10px;
}

.sm-appl-data-box>address svg {
  fill: #003791;
  max-height: 3.125rem;
}

.sm-steps-review-wrap>h3 {
  font-size: 1.375rem;
  margin: 0;
}

ul.sm-qualify-list {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.sm-appl-data+h3 {
  margin-top: 1.25rem;
}

ul.sm-qualify-list>li {
  font-size: 1.0625rem;
  line-height: 1.5;
}

.sm-qualify-program-list .form-check ol {
  width: 100%;
  padding-left: 3.125rem;
  margin: 5px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sm-qualify-program-list .form-check ol li::marker {
  font-weight: 700;
  color: #003791;
}

.sm-fields-group .form-check>label>i svg {
  max-width: 1rem;
  fill: #666;
}

.scrollbar {
  max-height: 350px;
  overflow-y: auto;
}

ul.esign-cond-list,
ul.esign-cond-list ul {
  padding-left: 1.25rem;
  gap: 5px;
  display: flex;
  flex-direction: column;
  margin: 0 0 1.25rem;
}

ul.esign-cond-list li {
  font-size: 1rem;
}

ul.esign-cond-list ul {
  padding-left: 1.5rem;
  margin: 10px 0 0;
}

.signature-box {
  background-color: #f9f9f9;
  padding: 1.875rem 1.875rem 10px;
  margin-top: 1.25rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.signature-box>h3 {
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
}

.signature-box .sm-field-box>input,
.signature-box .sm-field-box>select {
  background-color: #fff;
}

.sm-steps-nav {
  display: flex;
  margin-top: 3.125rem;
  width: 100%;
  text-align: center;
  position: relative;
}

.sm-steps-nav .sm-step:before {
  content: "";
  height: 5px;
  background-color: #eeeeee;
  position: absolute;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: -1;
}

.sm-steps-nav .sm-step {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 10px;
}

.sm-step>span {
  height: 2.875rem;
  width: 2.875rem;
  background-color: #b0b0b1;
  border: 5px solid #fff;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 20%);
  box-shadow: 0 0 12px rgb(0 0 0 / 20%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.sm-steps-nav .sm-step:before {
  left: 50%;
  right: -50%;
}

.sm-steps-nav .sm-step:last-of-type:before {
  display: none;
}

.sm-step>p {
  margin: 0;
  color: #b0b0b1;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 500;
}

.sm-steps-nav .sm-step.step-done:before {
  background-color: #003791;
}

.sm-steps-nav .sm-step.step-done>span {
  background-color: #59af59;
}

.sm-steps-nav .sm-step.step-done>p {
  color: #59af59;
}

.sm-steps-nav .sm-step.step-current>span {
  background-color: #003791;
}

.sm-steps-nav .sm-step.step-current>p {
  color: #003791;
}

.fl20 .sidepanel-btn {
  display: none !important;
}

.howtoapply .sidepanel-btn {
  display: none !important;

}

.sm-feat-box.version2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  /*min-height: 740px;*/
  right: 0;
  top: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.sm-feat-box.version3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  min-height: 739px;
  right: 0;
  top: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.section3 img {}

.MoveImgLeft {
  width: 130% !important;
  max-width: none !important
}

h2 {
  font-family: GraphikRegular !important;
}

.DigitalDivide .DetailSec h2 {
  color: var(--Text-color);
  padding-bottom: 20px;
}

.DigitalDivide .DetailSec p {
  color: var(--Text-color);
}

.section3 .CreatingJobImg {}

.imgleft {
  position: relative;
  left: 15rem;
}

.imgRrigt {
  position: relative;
  left: -40%;
}

.textcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 600px;
}

.DigitalDivide .flag {
  position: absolute;
  /* left: 15rem; */
  width: 40% !important;
  top: -15.2%;
  right: 5%;
}

.DetailSec h2 {
  color: var(--Text-color);
  padding-bottom: 20px;
}

.DetailSec p {
  color: var(--Text-color);
}

.DetailSec2 h2 {
  color: var(--Text2-color);
  padding-bottom: 20px;
  line-height: 21px;
}

.DetailSec2 p {
  color: var(--Text2-color);
}


.imgleft2 {
  max-width: none !important;
  width: 150% !important;
  position: relative;
  top: 8%;
}

.overlayimg {
  width: 20%;
  position: absolute;
  right: 70px;
  z-index: 90;
  bottom: -8%;
}

.overlayimg-left {
  width: 20%;
  position: absolute;
  left: 70px;
  z-index: 90;
  bottom: -8%;
}

.cipaMail {
  display: flex;
  gap: 5%;
  padding-bottom: 20px;
  align-items: baseline;
}

.cipaLogo {
  width: 15%;
}
k
.VideoLogo {
    width:18% !important;
}

.cipaLogo img {
    width: 130%;
    max-width: none !important;
    margin-top: -35%;
}

.overlayImgRIght {
  position: absolute;
  width: 23% !important;
  left: 0;
  bottom: -10%;
  z-index: 999;
}

.ImgSection {
  height: 600px;
  display: flex;
  flex-direction: column-reverse;
}

.TestContainer {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.mirrorSec {
  background: #2b2b2b;
  min-height: unset;
  width: 100%;
  padding-bottom: 60px;
}

.textcenter2 {
  display: flex;
  flex-direction: column;
  justify-content: end;

  width: 100%;
  text-align: center;
}

.textcenter2 h3 {
  color: var(--Text2-color);
}

.textcenter2 p {
  color: var(--Text2-color);
}


.section8Main {
  background-color: var(--backG-color);
}

.BoxBG {
  background-image: url(/Sheila/images/boxBG.png);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2), 0 12px 30px 0 rgba(0, 0, 0, 0.19);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  background-color: white;
  margin-bottom: 20px;
  padding: 7% 5% 7% 5%;
  background-size: inherit;
  border-radius: 20px;
}

.products img {
  max-width: none !important;
  width: 30% !important
}

.products .Size-70 {
  width: 70% !important
}

.width-100 {
  width: 100% !important;
  height: -webkit-fill-available;
}

.products p {
  color: var(--Text-color)
}

.item-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.section8Main h2 {
  text-align: center;
  color: #002393;
}

.DetailSec h4 {
  color: black;
  padding-bottom: 20px
}

.DetailSec ul li {
  color: black;
}

.textcenter2 a {
  background: none;
  color: white;
  font-size: 20px;
}

.products h4 {
  color: black
}

.sheilaFooter {
  background: transparent;
  bottom: 0;
  position: absolute;
  font-family: 'GraphikMedium';
}

.full-height-section {
  height: 85vh;
  background-size: cover;
}

.sheila_content {
  height: 100%;
}

@media(max-width:2560px) {
    .full-height-section {
        height: 91vh !important;
    }
}


@media (max-width: 1920px) {
    .full-height-section {
        height: 88.6vh !important;
    }
}
@media (max-width: 1750px) {
    .full-height-section {
        height: 87.5vh !important;
    }
    .sm-footer a.sm-theme-btn {
      bottom: 1.1rem;
    }
}

@media (max-width: 1600px) {
    .full-height-section {
        height: 85vh !important;
    }
}
@media (max-width: 1500px) {
    .full-height-section {
        height: 86.5vh !important;
    }
}

@media (max-width: 1440px) {
    .full-height-section {
        height: 85.5vh !important;
    }
}

@media(max-width: 992px) {
    .LanguageBottom {
        justify-content: center !important;
        text-align: center;
        padding-top: 20px;
    }
    .HTABannerContainer {
        align-items: center !important;
        text-align: center;
    }
    .HTABannerImg {
        justify-content: center !important;
        padding-right: 0 !important;
    }
    .LanguageBottom {
        justify-content: center !important;
        text-align: center;
        padding-top: 20px;
    }

    .full-height-section {
        height: 84.5vh !important;
    }
  .products img {
    max-width: none !important;
    width: 10% !important;
  }

  .item-center {
    height: 40%;
  }

  .overlayimg-left {
    display: none;
  }

  .complaintSec .sm-feat-box {
    padding: 50px 25px;
  }

  .Section2 h2 {
    font-size: 30px;
    line-height: 39px;
  }

  .complaintSecLaptop {
    display: none;
  }

  .textcenter {
    height: unset;
    text-align: center;
    padding: 40px 20px;
  }
  .DetailSec2 p {
    text-align: center;
  }
  .sheilaFooter {
    position: absolute;
  }

  .full-height-section {
    height: unset;
  }
  .sheila_content {
    height: 100%;
    min-height: 600px;
  }
  .freeInfo {

    display: none !important;
  }
  .sm-footer a.sm-theme-btn {
    right: 30%;
  }
  .sm-feat-cap > p {
    max-width: 100%;
    text-align: center;
  }
  .section8Content {
    padding: 0 20px;
  }
  .cipaLogo img {
    top: -5px;
  }
  .sm-feat-box {
    padding: 10px 20px
  }
  .DigitalDivide {
    background: #013D68;
  }
  .img_pr_0 {
    padding-right: 0 !important;
  }
}




.white-color {
  color: white !important;
}

@media (max-width: 768px) {
    /*.ApplynowHeader{
        justify-content:initial !important;
    }*/

    .borderRight {
        margin-left: 62px !important;
    }
    .BridgingRes {
        background-image: none !important;
        background-color: #7cc7e4;
    }

    .OpportunitiesRes {
        background-image: none !important;
        background-color: #ffffff;
    }

    .InternetRes {
        background-image: url(/Sheila/images/InternatRes.jpg) !important;
    }

    .CIPARes {
        background-image: none !important;
        background-color: #01467d;
    }
    
    .WhatisInbox {
        content: url('/Sheila/images/whatisinboxres2.jpg');
    }
  .cipaLogo img {
    width: 25px;
    max-width: none !important;
    position: relative;
  }

    .applybtn {
        margin-top: 25px !important;
    }

    .full-height-section {
        height: 82.5vh !important;
    }


}

@media (max-width: 576px) {
    .borderRight {
        margin-left: 120px;
    }
    .HTABannerText {
        font-size: 24px !important;
    }

    .HTAAppointmentText {
        font-size: 16px !important;
    }
    .HTALogo {
        max-height: 50px !important;
    }
    .borderRight {
        max-height: 55px !important;

    }
    .ApplynowHeader {
        border-radius: 10px 10px 0 0 !important;
        padding: 1.5rem !important;
    }
    .borderRight {
        margin-left: 58px !important;
    }
    .full-height-section {
        height: 82vh !important;
    }
}

@media (max-width:440px) {
    .btn.btn-light {
        font-size:0.7rem !important;
    }
    .signup-wrap .el-radio-group {
        flex-direction: column;
        gap: 5px;
    }
    .ui-datepicker {
        width: 15em !important;
    }
    .HTALogo {
        max-height: 40px !important;
    }

    .borderRight {
        max-height: 45px !important;
    }
    .borderRight {
        margin-left: 45px !important;
    }
    .full-height-section {
        height: 98.5vh !important;
    }
}

@media (max-width: 375px) {
    .HTABannerText {
        font-size: 16px !important;
    }
    .HTAAppointmentText {
        font-size: 12px !important;
    }
    .TermCheck {
        min-width: 240px !important;
    }

    .btn.btn-light {
        font-size: 0.5rem !important;
    }

    .termsTop {
        margin-top: 0 !important;
        padding-left: 20px !important;
    }

    .applybtn {
        margin-top:25px !important;
    }
    .borderRight {
        margin-left: 0px !important;
    }
    .borderRight {
        max-height: 40px !important;
    }
    .HTALogo {
        max-height: 35px !important;
    }
}




/*New Styling*/

.ApplynowHeader {
    display: flex;
    justify-content: center;
    background-color: #615f66;
    border-radius: 15px 15px 0 0;
    padding: 2rem;
}


.HTALogo {
    max-height: 60px;
   
}

.middleLine {
    border-right: 2px solid #c0c0c0;
    margin: 0 15px;
}
.borderRight {
    margin-left: 60px;
    max-height: 70px;
}

.HTABannerImg {
    display: flex;
    justify-content: right;
    padding-right: 20px !important;
}


.HTABannerImgSize {
    max-width: 100% !important;
}
.HTABannerContainer {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.LanguageBottom{
    display: flex;
    justify-content: end;
}


    .LanguageBottom p {
        line-height: normal;
        font-size: 1rem;
        font-weight: 600;
        margin: 12px 0px;
        text-align: center;
    }

.HTABannerText {
    font-size: 28px;
}
.HTAAppointmentText {
    font-size: 17px;
    color: #fe3d3d;
    font-style:italic
}

.grv-divider1 {
    margin: 1.75rem 0;
    border-width: 1px;
    border-color: white;
}