
/* body,
html {
    overflow-x: hidden;
} */
:root {
    --montserrat: "Montserrat", sans-serif;
    --sky-color: #026CB7;
    --red-color: #E22014;
    --white-color: #FFFFFF;
    --light-sky-color: #E6F0F8;
    --black-color: #000000;
    --blue-color: #002F51;
}


* {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    overflow-x:hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--montserrat) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1.5;
    background-color:#EDEDED;
}

::-moz-selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--black-color);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--sky-color);
}

img {
    max-width: 100%;
}

.container{
    max-width:1680px !important;
    padding: 0 60px;
}
.o-logo{
    width:100%;
    max-width:302px;
    display:block;
}
.o-main-header {
    position: absolute;
    z-index: 99999;
    top:0;
    left:0;
    width: 100%;
    background-color:transparent;
    padding:35px 0;
    overflow:hidden;
}
.o-main-header.fixed-top{
    position:fixed;
}
/*.o-main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
}*/
/*
@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
*/

.c-menu-btn{
    display:none;
    background:transparent;
    border:none;
}
.c-cmn-btn{
    min-width: 187px;
    text-align: center;
    background: #F96441;
    border: #F96441 1px solid;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 45px;
    padding: 14px 10px;
}
.c-cmn-btn:hover{
    background:#0074B0;
    color:#FFF;
}
.c-cmn-btn__bigger{
    min-width:367px;
}
.c-cmn-btn__blue{
    background:#0074B0;
    border-color:#0074B0;
}
.c-cmn-btn__dark-blue{
    background:#071826;
    border-color:#071826;
}
.c-cmn-btn__blue:hover{
    background: #F96441;
    color:#FFF;
}

.c-menu {    
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
    width: fit-content;
    margin:0 auto;
}
.c-menu__hamburger,
.c-menu__close{
    width:52px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}
.c-menu__close{
    display:none;
}
.c-menu.crossed .c-menu__close{
    display:flex;
}
.c-menu.crossed .c-menu__hamburger{
    display:none;
}
.c-menu-area{
    width: 100%;
    height:100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-right: #071826 15px solid;
    transition: all 0.5s ease-in-out;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}
.c-menu-area *{
    z-index:1;
    position:relative;
}
.c-menu-area.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.c-menu-area:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:rgba(0, 0, 0, 0.7);
}
.c-menu-area p{
    color:#FFF;
    font-size:20px;
    font-weight:600;
    text-align:center;
    margin:55px 0 0 0;
}
.c-header-nav{
    padding:0;
    margin:0 0 35px;
    list-style:none;
    text-align:center;
    flex-direction: column;
    display:flex;
    row-gap:22px;
}
.c-header-nav > li{
    display:block;
}
.c-header-nav > li > a{
    color:#FFF;
    font-size:20px;
    font-weight:600;
    text-transform:uppercase;
    position:relative;
    margin:0;
}

.c-sidebar-menu{
    width:100%;
    height:100%;
    text-align:center;
    overflow-y:auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-menu-contact-info{
    padding:0;
    margin:40px 0 0;
    list-style:none;
}
.c-menu-contact-info > li{
    display:block;
    margin:0;
}
.c-menu-contact-info > li a, .c-menu-contact-info > li{
    color:#0074B0;
    font-size:16px;
    font-weight:600;
}

.c-nav-wpr{
    margin-right:25px;
}
.c-nav-right{
    display:flex;
    align-items:center;
}
.navbar-nav > li{
    display:inline-block;
    vertical-align:middle;
    margin-right:30px;
}
.navbar-nav ul{
    display:none;
}
.navbar-nav > li > a{
    color:#FFFFFF;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
}
.navbar-nav > li > a:hover{
    color:#F96441;
}

/*.o-nav-wrapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.o-nav-wrapper ul.c-nav-menu>li {
    position: relative;
    margin: 0 40px;
}

.o-nav-wrapper ul.c-nav-menu>li:first-child {
    margin-left: 0;
}

.o-nav-wrapper ul.c-nav-menu>li:last-child {
    margin-right: 0;
}

.o-nav-wrapper ul.c-nav-menu li a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    padding: 26px 0;
    position: relative;
    color: var(--white-color);
    display: inline-flex;
}

.o-nav-wrapper ul.c-nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: var(--light-sky-color);
    padding: 10px 0px;
    border-bottom: 2px solid var(--red-color);
    display: none;
}

.o-nav-wrapper ul.c-nav-menu li ul li {
    padding: 0;
    margin: 0;
}


.o-nav-wrapper ul.c-nav-menu li ul li a {
    color: var(--blue-color);
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    line-height: 1.4;
}

.o-nav-wrapper ul.c-nav-menu li a:hover,
.o-nav-wrapper ul.c-nav-menu li.current-menu-item a,
.o-nav-wrapper ul.c-nav-menu li a.active,
.o-nav-wrapper ul.c-nav-menu li.active a {
    color: var(--white-color);
}

.o-nav-wrapper ul.c-nav-menu li ul li a:hover,
.o-nav-wrapper ul.c-nav-menu li ul li.current-menu-item a,
.o-nav-wrapper ul.c-nav-menu li ul li a.active,
.o-nav-wrapper ul.c-nav-menu li ul li.active a {
    color: var(--red-color);
}

.o-nav-wrapper ul.c-nav-menu li:last-child ul {
    width: 180px;
}

.o-nav-wrapper ul.c-nav-menu li .arw-nav {
    width: 15px;
    height: 10px;
    position: absolute;
    background: url(https://hecc.wpenginepowered.com/wp-content/uploads/2024/02/down-angle.png) no-repeat center;
    background-size: 14px;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(0);
    transition: all 0.3s ease-in-out;
}*/


/**/

.c-main-banner{
    position: relative;
    border-radius:0 0 300px 0;
    overflow:hidden;

}
.c-main-banner:before{
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:rgba(0, 0, 0, 0.25);
}
.c-main-banner img{
    width: 100%;
    border-radius:0 0 300px 0;
    border-right:#071826 54px solid;
    border-bottom:#071826 54px solid;
}
.c-main-banner h1{
    font-size:64px;
    color:#FFF;
    font-weight:600;
    line-height:1.1em;
    margin:0 0 25px;
}
.c-main-banner p{
    width:100%;
    max-width:920px;
    color:#FFFFFF;
    font-size:30px;
    font-weight:500;
    line-height: 1.3em;
    margin:0;
}
.c-main-banner__caption{
    width:100%;
    left:0;
    bottom:175px;
    position:absolute;
    padding:20px 50px;
}
/**/

.c-section-heading{
    color: #071826;
    font-weight:600;
    font-size:clamp(30px, 5vw, 53px);
    margin:0 0 60px;
}
.c-section-heading span{
    color:#0074B0;
}

.c-section-content p{
    color:#071826;
    font-size:clamp(20px, 2.5vw, 24px);
    margin:0 0 20px;
}
/**/
.c-cards-area{
    padding:70px 0;
    text-align:center;
}
.c-location-sec{
    overflow:hidden;
}
.c-location-wpr {
  display: flex;
  align-items: stretch;
  height: 100vh;
}

.c-each-location {
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* margin: 10px; */
  /* border-radius: 50px; */
  /* cursor: pointer; */
  transition: all 0.7s ease-in-out;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom:50px;
}

.c-each-location__link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}

.c-each-location:not(:last-child) {
  border-right: 1px solid #fff;
}

.c-each-location.active {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.c-location-text-wpr {
  text-align: center;
  width: 100%;
  padding: 24px 0 32px;
  background-color: rgba(7, 24, 38, 0.7);
  /* min-height: 130px; */
}

.c-location-text-wpr h2 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
}

.c-location-text-wpr p {
    color:#FFFFFF;
    font-size:20px;
    margin:0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    position:absolute;
}

.c-each-location.active .c-location-text-wpr p {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-in-out;
  position:static;
}
.c-each-location.active{
    padding-bottom:0;
}
.c-each-location.active .c-location-text-wpr {
  background-color: rgba(7, 24, 38, 1);
}

.c-single-choose-thumb{
    background:#071826;
    margin-bottom:59px;
}
.c-single-choose-thumb figure{
    margin:0;
}
.c-single-choose-thumb figure img{
    height:100%;
    object-fit:cover;
}
.c-single-card__content{
    padding:64px 75px 55px;
}
.c-single-choose-thumb h4{
    color:#FFFFFF;
    font-size:35px;
    font-weight:600;
    min-height:125px;
    margin:0 0 20px;
}
.c-single-choose-thumb p{
    color:#FFFFFF;
    font-size:18px;
    font-weight:400;
    min-height:116px;
    line-height:1.6em;
    margin:0 0 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.c-single-choose-thumb .c-btn-readmore{
    color:#FFFFFF;
    font-size:18px;
    font-weight:700;
    text-decoration:underline !important;
    text-transform:uppercase;
}


/*.c-single-card{
    width:100%;
    max-width:518px;
    border-radius:30px;
    overflow:hidden;
    margin:0 auto 40px;
    display:block;
    transition:all 0.3s ease-out;
}
.c-single-card figure{
    width:100%;
    height:328px;
    margin:0;
}
.c-single-card figure img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.c-single-card__content{
    padding: 40px 65px 30px;
    min-height: 330px;
    background:#EDEDED;
}
.c-resource-page-module .c-single-card__content{
    padding: 40px 36px 30px;
}
.c-single-card h4{
    color: #071826;
    font-size: 26px;
    font-weight: 600;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
}
.c-single-card p{
    color:#071826;
    font-size:20px;
    font-weight:400;
    line-height:1.5em;
    margin:0;
}
.c-resource-page-module .c-single-card p{
    font-size:18px;
    min-height:81px;
}
.c-single-card:hover{
    transform:scale(1.04);
}
.c-single-card.c-single-choose-thumb h4{
    min-height:0;
}
.c-single-card__content .c-btn-readmore{
    color:#071826;
    font-size:18px;
    font-weight:bold;
    border-bottom:2px solid #071826;
    text-transform:uppercase;
    letter-spacing:1px;
    display:inline-block;
    margin:25px 0 0;
}
.c-single-card__content .c-btn-readmore:hover{
    color:#F96441;
    border-color:#F96441;
}
.c-resource-details-page .c-content-sec p{
    margin:0 0 15px;
}
.c-resource-details-page .c-content-sec ul > li{
    font-weight:400;
    padding:0;
}
.c-resource-details-page .c-content-sec ul > li:before{
    display:none;
}
*/
.c-resource-details-page .container{
    max-width:1366px !important;
    padding:0 10px;
}
.c-resource-details-page h4{
    color:#071826;
    font-size:24px;
    font-weight:500;
    line-height:1.6em;
    margin:0 0 70px;
}
.c-resource-details-page p{
    color:#071826;
    font-size:18px;
    font-weight:400;
    line-height:1.6em;
    margin:0 0 24px;
}
.c-resource-details-page h3{
    color:#071826;
    font-size:25px;
    font-weight:600;
    margin:0 0 20px;
}
.c-resource-details-page ul{
    list-style:none;
    padding:0;
    margin:0 0 45px;
}
.c-resource-details-page ul > li,
.c-resource-details-page ol > li{
    color:#071826;
    font-size:18px;
    font-weight:400;
    margin:0 0 15px;
}
.c-resource-details-page ol{
    margin:0 0 45px;
}
.c-back-link{
    color: #0074B0;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #0074B0;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top:20px;
}
.c-back-link:hover{
    color: #F96441;
    border-color: #F96441;
}

.c-related-resource-boxes{
    background:#071826;
    padding:65px 60px;
    margin-top:110px;
    margin-bottom:80px;
}
.c-related-resource-boxes h2{
    color: #FFF;
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 40px;
}
.c-related-resource-boxes ul{
    padding:0;
    margin:0;
}
.c-related-resource-boxes ul > li{
    display:block;
    margin:0 0 40px;
}
.c-related-resource-boxes ul > li a{
    font-style: normal;
    font-weight: 600;
    font-size:25px;
    text-decoration:underline !important;
    color: #FFF;
    position: relative;
}
.c-related-resource-boxes ul > li a:hover{
    color:#F96441;
}


/**/

.c-background-img-with-text{
    padding:107px 0 0;
}
.c-background-img-with-text img{
    height:100%;
    object-fit:cover;
}
.c-main-content-box{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items: flex-start;
        justify-content: center;
    height:100%;
    background:#071826;
    padding:74px 100px;
    margin:0 auto;
}
.c-main-content-box .c-section-heading{
    margin:0 0 28px;
    color:#FFF;
}
.c-main-content-box h4{
    color:#FCE49A;
    font-size:30px;
    font-style:italic;
    font-weight:600;
    margin:0 0 34px;
}
.c-main-content-box p{
    color:#FFF;
    font-size:24px;
    font-weight:500;
    line-height:30px;
    margin:0 0 60px;
}
.c-ziczac-sec p{
    font-weight:400;
    margin:0;
}
/**/
.c-three-box-area{
    text-align:center;
    padding:98px 0 90px;
}
.c-three-box-area h2{
    margin:0 0 115px;
}
.c-three-box-area .row{
    margin-bottom:120px;
}
.c-three-box-area .row > div{
    position:relative;
}
.c-three-box-area .row > div + div:before{
    content:"";
    width:3px;
    height:261px;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:#FFFFFF;
    opacity:0.40;
}
.c-three-box-area.c-three-box-area--home .row > div + div:before{
    background:#FFFFFF;
}

.c-single-box figure{
    width:164px;
    height:164px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:30px;
    background:#071826;
    margin:0 auto 40px;
}
.c-single-box figure img{
    width:90px;
}
.c-single-box h4{
    color:#071826;
    font-size:26px;
    font-weight:600;
    margin:0;
}
.c-single-box p{
    color:#071826;
    font-size:24px;
    text-transform:uppercase;
    font-weight:600;
    margin:0;
}
.c-single-box h3{
    color: #071826;
    font-size:40px;
    font-weight: 600;
    margin: 0 0 25px;
}

.c-single-box__orange figure{
    background:#F96441;
    border-radius:100%;
}
.c-three-box-area .row > div + div:before{
    background:#0074B0;
}
/**/
.c-quote-sec{
    padding:250px 0 224px;
    text-align:center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.c-quote-sec .c-section-heading{
    color:#E9F7FE;
}
.c-quote-sec__box{
    width:100%;
    max-width:1155px;
    display:block;
    margin:0 auto;
}
.c-quote-slider .item{
    min-height:200px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:70px;
}
.c-quote-slider .slick-dots{
    width:100%;
    text-align:center;
    position:absolute;
    padding:0;
    left:0;
    right:0;
    bottom:-58px;
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto;
    column-gap:18px;
}
.c-quote-slider .slick-dots li button{
  width: 16px;
  height: 16px;
  font-size: 0;
  padding: 0;
  border-radius: 100%;
  border:none;
  background: #FFF;
}
.c-quote-slider .slick-dots li.slick-active button{
  width: 24px;
  height: 24px;
  background:#F96441;
}
.c-quote-slider .item p{
    color:#FFF;
    font-size:26px;
    font-weight:600;
    width:100%;
    max-width:904px;
    min-height: 130px;
    display:inline-block;
    margin:0 0 25px;
}
.c-quote-slider .item h5{
    color:#FFF;
    font-size:26px;
    font-weight:500;
    font-style:italic;
    margin:0;
}

/**/

.c-privacy-banner .container,
.c-privacy-page .container{
    max-width:1460px !important;
}
.c-gray-bg{
    background:#EDEDED;
}
.c-blue-bg{
    background:#E9F7FE;
}
.c-white-bg{
    background:#FFF !important;
}
.c-inner-page-module{
    padding:80px 0;
}

.c-inner-page-banner{
    padding:140px 0 0; 
    min-height:648px;
    border-radius:0 0 347px 0;
    position:relative;
    display:flex;
    align-items:center;
    background:#071826;
    overflow:hidden;
}
.c-inner-page-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index:1;
    background: rgba(0, 0, 0, 0.25);
}
.c-inner-page-banner img{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height:100%;
    object-fit:cover;
    object-position: left;
}
.page-127 .c-inner-page-banner img,
.page-125 .c-inner-page-banner img{
    object-position:right;
}
.c-inner-page-banner .container{
    z-index:9;
    position: relative;
}
.c-inner-page-banner h1{
    color:#FFFFFF;
    font-size:clamp(40px, 3.5vw, 64px);
    font-weight:600;
    margin:0;
}
.c-inner-page-banner h4{
    color:#FFFFFF;
    font-size:24px;
    font-weight:600;
    text-transform:uppercase;
    margin:0 0 30px;
}
.c-privacy-banner:before{
    display:none;
}
.c-privacy-banner h1{
    margin:0 0 25px;
}
.c-privacy-banner p{
    color:#FFFFFF;
    font-size:24px;
    font-weight:500;
    line-height:1.6em;
    margin:0;
}

/*form style*/
.c-contact-form-area .c-section-heading{
    color:#FFF;
    margin:0;
}
.c-contact-form-area .gform-theme--foundation .gform_fields{
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 40px;
}
.c-contact-form-area .gfield--type-radio{
    width:100%;
}

.c-contact-left-wrapper,
.c-contact-right-wrapper{
    flex: 1 !important;
}

/* Radio buttons in single row */
.gform_wrapper.gform_wrapper .ginput_container_radio .gfield_radio,
.gform_wrapper.gform_wrapper .ginput_container_checkbox .gfield_checkbox{
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    flex-direction: row;
    margin-bottom:32px;
}

.gform_wrapper.gform_wrapper .gchoice {
    margin: 0 !important;
    white-space: nowrap;
    display:flex !important;
    align-items:center;
    cursor: pointer;
    width: 100%;
}

.gform_wrapper.gform_wrapper .gform_fields .gfield{
    flex: 0 0 auto;
    width: 50%;
    padding:0 5px;
}

/* Name and phone in one row */
#field_1_1,
#field_1_3,
#field_1_6,
#field_1_7{
    display: inline-block;
    width:100% !important;
    box-sizing: border-box;
    vertical-align: top;
}

/* Full width fields */


.gfield_required_text{
    display:none !important;
}

.gform_wrapper.gform_wrapper .ginput_container_date{
    position:relative;
}
.gform_wrapper.gform_wrapper .ginput_container_date:after{
    display:none !important;
}

.gform_wrapper.gform_wrapper legend.gfield_label{
    display:none;
}

.gform_wrapper.gform_wrapper .gfield--type-radio .gfield_label,
.gform_wrapper.gform_wrapper .gfield--type-checkbox .gfield_label{
    color:#071826;
    font-size:18px;
    font-weight:600;
    margin-left:0;
    margin-bottom:14px;
    display:block !important;
}
.gform_wrapper.gform_wrapper .gfield--type-radio .gform-field-label--type-inline{
    color:#FFF;
    font-size:18px;
    font-weight:400;
    margin-left:0 !important;
}


/* Input fields styling */
.gform_wrapper.gform_wrapper input[type="text"],
.gform_wrapper.gform_wrapper input[type="email"],
.gform_wrapper.gform_wrapper input[type="tel"],
.gform_wrapper.gform_wrapper textarea {
    width: 100%;
    padding:0 20px;
    height:60px;
    background:#FFFFFF;
    border:#FFF 1px solid;
    border-radius:30px;
    margin-bottom:30px;
    box-sizing: border-box;
    font-size: 18px;
    color:#071826;
    font-weight:400;
}
.gform_wrapper.gform_wrapper .gfield:not(.gfield--type-radio) .gform-field-label{
    color:#FFF;
    font-size:14px;
    font-weight:400;
    margin-left:20px;
    line-height:1em;
    margin-bottom:8px;
}


/* Textarea specific styling */
.gform_wrapper.gform_wrapper textarea {
    padding: 12px 20px;
    height: 285px !important;
    border-radius:30px;
    resize: vertical;
    min-block-size: auto !important;
}
.gform_wrapper.gform_wrapper input[type="text"]:focus,
.gform_wrapper.gform_wrapper input[type="email"]:focus,
.gform_wrapper.gform_wrapper input[type="tel"]:focus,
.gform_wrapper.gform_wrapper textarea:focus{
    box-shadow:none !important;
    border:none;
    outline:none;
}

.gform_wrapper.gform_wrapper .gfield_error .ginput_container input,
.gform_wrapper.gform_wrapper .gfield_error .ginput_container textarea{
    border: 1px solid red !important;
}
.validation_message,
.gform_validation_errors{
    display:none !important;
}
/* Radio button styling */
.gform_wrapper.gform_wrapper .gfield-choice-input {
    margin-right:8px;
}

.gform_wrapper.gform_wrapper .gfield--type-radio .ginput_container_radio .gchoice input,
.gform_wrapper.gform_wrapper .gfield--type-checkbox .ginput_container_checkbox .gchoice input{
    border-color: #FFF;
    outline:none !important;
    width: 15px;
    height: 15px;
}
.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    background-color: #071826 !important;
    /*width: 8px !important;
    height: 8px !important;*/
    margin-left: 0 !important;
}
    
.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    color: #000 !important;
    margin-top: 1px;
    font-size: 12px !important;
}

#gform_ajax_spinner_1{
    position:absolute !important;
    right:-35px;
    border-block-end-color: #FFF !important;
    border-inline-start-color: #FFF !important;
}

/* Submit button - right aligned */
.gform_wrapper.gform_wrapper .gform_footer {
    /*justify-content:flex-end;*/
    margin-top:0 !important;
    position:relative;
}

.gform_wrapper.gform_wrapper .gform-footer .gform_button {
    min-width: 261px !important;
    border-radius: 40px !important;
    border: none !important;
    text-align: center !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    letter-spacing:0 !important;
    text-transform: uppercase !important;
    padding: 18px 15px !important;
    background: #0074B0 !important;
    margin-top: 0 !important;
}

.gform_wrapper.gform_wrapper .gform-footer .gform_button:hover {
    background-color:#F96441 !important;
}




/*form style*/

/**/

/*.c-our-services-block .container{
    max-width:1760px !important;
    padding:0 10px;
}*/
.c-our-services-block .c-section-heading{
    margin:0 0 50px;
}
.c-srvc-single-card{
    background:#FFF;
    border-radius:30px;
    overflow:hidden;
    /* height: calc(100% - 50px); */
    padding-bottom:30px;
    margin:0 0 50px;
}
.c-srvc-single-card figure{
    height:376px;
}
.c-srvc-single-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.c-srvc-single-card__content{
    padding: 30px 25px 0;
    min-height: 400px;
}
.c-srvc-single-card h3{
    color: #071826;
    font-size: 30px;
    font-weight: 600;
    min-height: 80px;
    margin: 0 0 12px;
}
.c-srvc-single-card h5{
    color:#071826;
    font-size:20px;
    font-weight:600;
    line-height:1.5em;
    min-height:50px;
    margin:0 0 26px;
}
.c-srvc-single-card p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #071826;
    min-height:120px;
    margin:0 0 22px;
}
.c-srvc-single-card a{
    color:#0074B0;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}
.c-srvc-single-card a:hover{
    color:#F96441;
}

.c-our-service-area{
    padding:80px 0;
}
.c-our-service-area p{
    width:100%;
    max-width:780px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #071826;
    margin: 0 auto 50px;
}
/*privacy css start*/

.c-inner-page-module{
    padding-bottom: 70px;
}

.c-content-sec h4 {
    color: #071826;
    font-size:35px;
    font-weight:600;
    margin: 0 0 25px;
}
.c-content-sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height:30px;
    color: #071826;
    margin: 0 0 20px 0;
}
.c-content-sec p strong {
    font-weight: 600;
}

.c-content-sec p:last-child {
    margin: 0;
}
.c-content-sec p a {
    color: #0074B0;
    font-weight: 600;
}

.c-content-sec p a:hover {
    color: #383838;
}

.c-content-sec ul {
    margin: 0 0 24px;
    list-style: none;
    padding: 0;
}

.c-content-sec ul > li {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    color: #071826;
    position: relative;
    padding-left: 28px;
}

.c-content-sec ul > li:before {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    left: 12px;
    top: 15px;
    background: #383838;
    border-radius:100%;
}

.c-content-sec ol {
    padding:0;
}

.c-content-sec ol > li {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    list-style-position: inside;
    color: #383838;
    position: relative;
    margin: 0 0 5px;
}

.c-primary-row {
    padding:20px 0;
    z-index: 1;
    position: relative;
}
.c-primary-row:first-child{
    padding-top:0;
}

/**/

.c-contact-info ul{
    padding:0 0 30px;
    margin:0;
    list-style:none;
}
.c-contact-info ul > li{
    display:flex;
    align-items:center;
    column-gap:140px;
    color:#071826;
    font-weight:600;
    font-size:clamp(18px, 2.5vw, 35px);
    margin:0 0 30px;
}
.c-contact-info ul > li span{
    width:260px;
    color:#071826;    
    font-weight:600;
}
.c-contact-info ul > li a{
    color:#0074B0;
}
.c-contact-info ul > li a:hover{
    color: #F96441;
}
.c-contact-form-area{
    padding:50px 125px;
    border-radius:0;
    background:#071826;
}
.c-contact-info{
    padding:0 125px;
}
.c-white-box-rows .c-single-white-card p{
    font-size:18px;
    margin-bottom: 0;
}
.c-join-team-area__content{
    padding:20px 40px;
}
.d-icon{
    position: absolute;
    left:-138px;
    top:50%;
    transform:translateY(-50%);
}
.c-blue-box-row{
    padding:90px 0;
}
.c-blue-box-row h2{
    color:#FFF;
}
.c-blue-box-row h6{
    width:100%;
    max-width:1011px;
    color:#FFFFFF;
    font-size:20px;
    font-weight:400;
    display:block;
    margin:0 auto 20px;
}
.c-blue-box-row .c-single-white-card{
    padding-top:55px;
    padding-bottom:55px;
}
.c-blue-box-row .c-single-white-card p{
    max-width:568px;
    color:#071826;
    font-size:18px;
    font-weight:400;
    margin:0 auto;
}
.c-member-logos{
    display:flex;
    align-items:center;
    column-gap:35px;
    row-gap:15px;
    margin-top:55px;
}
.c-member-logos a{
    transition:all 0.3s ease-in-out;
}
.c-member-logos a:hover{
    transform:scale(1.1);
}

.c-story-area{
    padding:60px 0;
}
.c-story-area__content{
    position:relative;
    background:#FFF;
    border-radius:30px;
    padding:64px 170px;
    margin-left:-172px;
}
.c-story-area__content h2{
    color: #071826;
    font-weight: 600;
    font-size: 35px;
    margin: 0 0 35px;
}
.c-story-area__content h2 span{
    color:#0074B0;
    display:block;
}
.c-story-area__content p{
    color: #071826;
    font-size: 18px;
    font-weight: 400;
    line-height:1.6em;
    margin:0 0 24px;
}

/**/
.c-team-service{
    padding:80px 0 0;
}
.c-team-service__two-block img{
    height:100%;
    width:100%;
    object-fit:cover;
}
.c-team-service__content{
    padding:0 80px;
}
.c-team-service__two-block{
    padding:75px 0;
}
.c-team-service__two-block h3{
    color:#0F2620;
    font-weight:600;
    font-size:clamp(30px, 2vw, 35px);
    margin:0 0 14px;
}
.c-team-service__two-block h5{
    color:#0074B0;
    font-size:18px;
    font-weight:700;
    margin:0 0 30px;
}
.c-team-service__two-block h5 span{
    color:#F96441;
}
.c-team-service__two-block p{
    font-size:18px;
    line-height:1.5em;
    margin:0 0 15px;
}

.team-content{
    display:none;
}
.team-content.for-mobile{
    display:none;
    padding: 30px;
}
.team-content__more{
    color:#071826;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    padding:14px 0;
    border-bottom:#F96441 3px solid;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.c-long-content{
  display:none;
}
.team-content.active:not(.for-mobile){
    display:block;
}
.team-img{
    position:relative;
}
.team-img img{
    width:100%;
    cursor:pointer;
    transition:0.3s;
}
.team-img__trigger{
    width: 52px;
    height: 52px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0074B0;
    cursor:pointer;
}
.team-img__trigger svg + svg,
.team-img.active .team-img__trigger svg{
    display:none;
}
.team-img.active .team-img__trigger{
    background:#071826;
}
.team-img.active .team-img__trigger svg + svg{
    display:block;
}
/**/
.c-why-choose-sec{
    margin-top:-104px;
}
.c-video-area{
    width:100%;
    max-width:585px;
    height:805px;
    overflow:hidden;
}
.c-why-choose-sec video{
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    right: -100%;
    bottom: -100%;
    top: -100%;
    left: -100%;
    object-fit:none;
    pointer-events: none;
}
.c-why-choose-sec h4{
    width: 488px;
    position: absolute;
    padding-left: 21px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #071826;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.4em;
    margin: 0;
}
.c-why-choose-sec h4:before{
    content:"";
    width:450px;
    height:3px;
    position:absolute;
    right:100%;
    top:50%;
    transform:translateY(-50%);
    background:#071826;
}

.c-different-sec{
    padding:110px 0 80px;
}

/**/

.c-white-box-rows{
    padding: 65px 0;
}
.c-white-box-rows .container{
    max-width:1154px !important;
}
/**/

.c-single-white-card{    
    padding: 45px 0;
    border-bottom: #0074B0 3px solid;
    width: 100%;
    max-width: 1096px;
    margin: 0 auto;
}
.c-single-white-card h3{
    color:#071826;
    font-size:35px;
    font-weight:600;
    margin:0 0 40px;
}
.c-single-white-card p{
    color:#071826;
    font-size:20px;
    font-weight:400;
    line-height:1.7em;
    margin:0;
}

.c-accordion-header-bar{
    background:#071826;
    border-radius:0;
    padding:25px 80px;
}
.c-accordion-header-bar h4,
.c-accordion-row h4{
    color:#FFFFFF;
    font-size:25px;
    font-weight:500;
    text-align:left;
    margin:0;
}
.c-accordion-row{
    background:#071826;
    padding:25px 50px;
    cursor:pointer;
}
/*.c-accordion-row h4{
    color:#071826;
    font-weight:600;
    margin:0 0 8px;
}*/
.c-accordion-row h4 span{
    font-weight:600;
}
.c-accordion-wrapper{
    overflow:hidden;
}
.c-single-accordion + .c-single-accordion{
    margin-top:10px;
}
.c-accordion-body{
    padding:40px 50px;
    display:none;
    background:#FFFFFF;
    border: #000 1px solid;
}
.c-single-accordion h3{
    color:#0074B0;
    font-size:25px;
    font-weight:600;
    margin:0 0 22px;
}
.c-single-accordion p{
    color:#071826;
    font-size:18px;
    font-weight:400;
    line-height:1.6em;
    margin:0 0 34px;
}
.c-single-accordion ul{
    margin:0 0 34px;
}
.c-single-accordion ul > li{
    color:#071826;
    font-size:18px;
    font-weight:400;
    line-height:1.6em;
    list-style:none;
    position:relative;
    margin:0 0 5px; 
}
.c-single-accordion ul > li:before{
    content: "";
    width: 3px;
    height: 3px;
    position: absolute;
    left: -22px;
    top: 12px;
    background: #071826;
    border-radius: 100%;
}
.c-accordion-row__icon{
    position:absolute;
    right:80px;
    top:50%;
    transform:translateY(-50%);
    color:#FCE49A;
    font-size:22px;
    font-weight:600;
}
.c-accordion-row__icon svg {
    transition: transform 0.3s ease;
}

.c-accordion-row.active .c-accordion-row__icon svg {
    transform: rotate(180deg);
}
/**/

/*about sec start*/
.c-two-grid-boxs {
    padding-top: 60px;
}

.c-single-user-card {
    width: 100%;
    max-width: 684px;
    display: block;
    margin: 0 auto 80px;
}

.c-single-user-card figure {
    text-align: center;
    margin: 0 0 60px;
}

.c-single-user-card h3 {
    color: #0F2620;
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 10px;
}

.c-single-user-card h5 {
    color: #0074B0;
    font-size: 18px;
    font-weight: 700;
    line-height:1.6em;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.c-single-user-card h5 span{
    color:#F96441;
}

.c-single-user-card p {
    color: #071826;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    line-height: 1.4em;
    margin: 0 0 15px;
}
.c-single-user-card .short-desc{
    min-height:152px;
}
.c-single-user-card.active .short-desc{
    min-height: 0;
}
.c-single-user-card .full-desc, .c-srvc-single-card__content .full-desc{
    display: none;
}

.c-service-accordion-row{
    background: #071826;
}
.c-service-accordion-row .c-background-img-with-text img {
    height:auto;
    object-fit:none;
}
.c-service-accordion-row .c-section-heading{
    font-size: clamp(30px, 2.5vw, 35px);
}
.c-service-accordion-row p{
    font-weight:400;
    font-size:18px;
    min-height:179px;
    line-height:1.3em;
    margin:0 0 22px;
}
.c-background-img-with-text.active .c-main-content-box p{
    min-height:0;
}
.c-rm-link {
    width:100%;
    padding:15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    text-transform:uppercase;
    border-bottom: #F96441 3px solid;
    transition: all 0.3s ease;
}
.c-customer-benefit{
    display:none;
    margin:0 0 100px;
}
.c-customer-benefit h5{
    font-size:18px;
    font-weight:700;
    color:#FFF;
    margin:0 0 22px;
    text-transform:uppercase;
}
.c-customer-benefit ul > li{
    color:#FFF;
    font-size:18px;
    font-weight:400;
    margin:0 0 20px;
}
.c-customer-benefit ul > li strong{
    font-weight:600;
}


/**/

.c-our-partner-sec{
    padding:140px 0;
}
.c-single-partner-row{
    margin-bottom:25px;
}
.c-single-partner-row figure{
    background: #FFF;
    border-radius: 0 0 90px 0;
    text-align: center;
    padding: 30px 40px;
    min-height: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.c-single-partner-row h3{
    color:#071826;
    font-size:35px;
    font-weight:600;
    margin:0 0 26px;
}
.c-single-partner-row p{
    color:#071826;
    font-size:18px;
    font-weight:400;
    line-height:1.3em;
    min-height:70px;
    margin:0 0 40px;
}
.c-single-partner-row .c-single-partner-row__content{
    min-height:175px;
    border-bottom:#000000 1px solid;
}
.c-our-service-area__content{
    position:static;
    width:100%;
    top:0;
    left:0;
    padding: 60px 0 40px;
    background:#0076ad;
}
.c-our-service-area__content h2,
.c-our-service-area__content p{
    color:#FFF;
}


/**/

.c-content-with-middle-text{
    display:flex;
    align-items:center;
    min-height:507px;
    background:#FCE49A;
}
.c-content-with-middle-text p{
    color:#071826;
    font-weight:600;
    font-size:20px;
    margin:0 0 42px;
}
/* footer */

.o-main-footer__middle{
    padding:74px 0 40px;
    background:#071826;
    text-align:center;
}
.o-footer-logo{
    display:inline-block;
    margin:0 0 35px;
}
.o-main-footer__middle p{
    width:100%;
    max-width:632px;
    color:#FFFFFF;
    font-weight: 400;
    line-height:1.4em;
    font-size:16px;
    margin:0 auto 30px;
}
.o-main-footer__middle p span{
    font-weight:600;
}
.o-main-footer__middle p:last-child{
    margin:0 auto;
}
/**/
.o-main-footer__bottom{
    background:#0074B0;
    padding:15px 0;
}
.o-main-footer__bottom p{
    color:#FFFFFF;
    font-size:14px;
    font-weight:400;
    margin:0;
}
.o-main-footer__bottom p a{
    color:#FFF;
}
.o-main-footer__bottom p strong{
    font-weight:600;
}
.c-section-content{
    padding:0 45px;
}
/* responsive */

/* @media screen and (max-width:1720px) {
    .o-nav-wrapper ul.c-nav-menu>li:last-child ul {
        left: auto;
        right: 0;
    }
} */

@media screen and (max-width: 1720px) {
    .c-main-banner h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1440px) {
    .navbar-nav > li {
        margin-right: 18px;
    }
    .navbar-nav > li > a {
        font-size: 14px;
    }
    .c-why-choose-sec {
        margin-top: -25px;
    }
    .c-why-choose-sec h4:before {
        width: 280px;
    }
}

@media screen and (max-width: 1199.98px) {
    .navbar-nav{
        display:none;
    }
    .navbar-nav > li > a {
        font-size: 18px;
    }    
    .navbar-nav > li{
        margin:0 0 28px
    }
    .c-menu{
        display:flex;
    }
    .c-nav-right .c-cmn-btn{
        display:none;
    }
    .c-main-banner img {
        border-right: #071826 22px solid;
        border-bottom: #071826 22px solid;
    }
    .c-main-banner h1 br{
        display:none;
    }
    .c-main-banner p {
        font-size: 30px;
    }

    .c-main-content-box {
        padding: 74px 40px;
    }
    .c-three-box-area {
        padding: 50px 0;
    }
    .c-single-box h4 {
        font-size: 24px;
    }
    .container{
        padding: 0 30px;
    }
    .c-section-heading br{
        display:none;
    }
    .c-content-with-middle-text{
        min-height:0;
        padding:70px 0;
    }
    .c-location-wpr {
        height: 700px;
    }
    .c-location-text-wpr h2 {
        font-size: 26px;
    }
    /**/
    .c-single-card__content {
        padding: 15px 20px;
        min-height: 267px;
    }
    .c-single-card h4 {
        margin: 0 0 10px;
    }
    .c-single-card figure {
        height: 236px;
    }
    .c-cards-area {
        padding: 80px 0 35px;
    }
    .c-three-box-area h2 {
        margin: 0 0 70px;
    }
    .c-three-box-area .row {
        margin-bottom: 45px;
    }
    .c-quote-sec {
        padding: 118px 30px 164px;
    }
    .c-inner-page-banner {
        margin-bottom:40px;
        padding:0;
    }
    .c-inner-page-banner h3 {
        font-size: 28px;
        margin: 0 0 20px;
    }
    .c-inner-page-banner h2 {
        font-size: 40px;
        margin: 0 0 20px;
    }
    .c-srvc-single-card__content {
        padding: 30px 20px;
    }
    .c-accordion-row,
    .c-accordion-header-bar,
    .c-accordion-body{
        padding: 25px 20px;
    }
    .c-accordion-header-bar h4, .c-accordion-row h4 {
        font-size: 20px;
    }
    .c-accordion-row__icon {
        right: 15px;
    }
    .c-related-resource-boxes {
        padding: 30px 20px;
    }
    .c-related-resource-boxes h2 {
        font-size: 30px;
        margin: 0 0 20px;
    }
    .c-related-resource-boxes ul > li a {
        font-size: 20px;
    }
    .c-contact-info ul > li a {
        font-size: 18px;
    }
    .c-contact-form-area {
        padding: 40px 25px;
    }
    .c-contact-info {
        padding: 0 0;
    }
    .c-contact-info ul > li {
        column-gap: 20px;
        margin: 0 0 22px;
    }
    .c-section-content{
        padding:0 20px;
    }
    .c-why-choose-sec h4 {
        width: 265px;
    }
}

@media screen and (max-width:991.98px) {
    .c-main-banner{
        border-radius: 0 0 200px 0;
        box-shadow: 0 16px 0 20px #071826;
    }
    .c-main-banner img {
        border-radius:0;
        border:none;
        border-bottom:none;
    }
    .c-main-banner h1{
        font-size: 40px;
        line-height:normal;
    }

    .c-three-box-area .row > div + div:before{
        display:none;
    }
    .c-three-box-area .row > div + div{
        border-top:#FFFFFF 3px solid;
        padding-top:25px;
    }

    .c-location-wpr {
        flex-direction:column;
    }
    .c-location-wpr {
        height:1300px;
    }
    .c-each-location{
        padding-bottom:15px;
    }
    .c-quote-sec__box{
        border-radius:30px;
    }
    .c-quote-slider .item{
        min-height:0;
        padding:0 0 35px 0;
        margin:0;
    }
    .c-quote-sec h2{
        margin:0 0 20px;
    }
    .c-quote-slider .item p{
        font-size:18px;
    }
    .c-quote-slider .item h5{
        font-size:22px;
    }

    .c-cmn-btn__bigger {
         min-width: 300px;
    }

    .c-single-card h4{
        font-size:25px;
        margin:0 0 22px;
        min-height:0;
    }
    .c-single-card__content{
        padding:36px 45px;
        min-height:0;
    }
    .c-background-img-with-text{
        padding:55px 0;
    }
    .c-main-content-box{
        padding:50px 24px;
    }
    .c-main-content-box h4 {
        font-size: 25px;
    }
    .c-three-box-area {
        padding: 35px 0 50px;
    }
    .c-single-box h4{
        font-size:25px;
    }
    .c-single-box{
        margin:0 0 40px;
    }
    .o-main-footer__middle {
        padding: 35px 25px;
    }
    .o-main-footer__bottom .row{
        justify-content:center;
    }
    .o-main-footer__bottom p{
        text-align:center;
    }
    .c-accordion-row__icon {
        font-size: 16px;
    }
    .c-single-accordion p,
    .c-single-accordion ul > li {
        font-size: 16px;
    }
    .c-related-resource-boxes{
        margin-top:30px;
    }
    .c-inner-page-banner {
        min-height: 447px;
        border-radius: 0 0 200px 0;
    }
    .c-inner-page-banner.c-privacy-banner{
        min-height:662px;
    }
    .c-our-partner-sec {
        padding:60px 0;
    }
    .c-single-partner-row figure{
        margin:0 0 25px;
    }
    .c-single-partner-row p, .c-single-partner-row .c-single-partner-row__content{
        min-height:0;
    }
    .c-contact-left-wrapper, .c-contact-right-wrapper {
        flex: auto !important;
    }
    .c-why-choose-sec {
        margin-top:40px;
    }
    .c-why-choose-sec h4{
        display:none;
    }
    .c-video-area{
        margin:0 auto;
    }

    .team-images{
        display:block;
    }

    .team-img{
        width:100%;
        margin-bottom:20px;
    }

    .team-img img{
        width:100%;
        display:block;
    }

    .c-team-service__content{
        display:none; /* hide original left column */
    }
    
    .team-mobile-content{
        padding:20px 40px;
        border-bottom:1px solid #e5e5e5;
    }
    .team-img__trigger{
        display:none;
    }

}

@media screen and (max-width:767.98px) {
    .c-menu{
        margin:0;
    }
    .o-logo{
        width:190px;
    }
    .c-main-banner{
        margin-bottom:45px;
    }
    .c-main-banner p{
        display:none;
    }
    .c-main-banner h1 br{
        display:block;
    }
    .c-main-banner__caption {
        padding: 20px;
        bottom:15px;
    }

    .c-section-heading{
        margin:0 0 30px;
    }

    .c-single-box figure{
        width:176px;
        height:176px;
        padding: 45px;
    }
    
    .c-cards-area {
        padding:40px 0 0;
    }
    .c-single-card{
        margin: 0 auto 28px;
    }
    .c-background-img-with-text {
        padding: 49px 0;
    }
    .c-main-content-box p {
        font-size: 18px;
        margin: 0 0 30px;
    }
    .c-inner-page-banner h2 {
        font-size: 30px;
    }
    .c-inner-page-banner h4 {
        font-size: 16px;
        display:none;
        line-height: 1.4em;
        margin: 0 0 18px;
    }
    .c-inner-page-module {
        padding-bottom: 20px;
        padding-top:0;
    }
    .c-single-white-card h3{
        font-size:22px;
        margin: 0 0 20px;
    }
    .c-section-content{
        padding:0 30px;
    }
    .c-single-white-card p {
        font-size: 16px;
    }
    .c-our-service-area {
        padding: 30px 0;
    }
    .c-single-card__content {
        padding: 30px 20px;
    }
    .c-single-box figure {
        margin: 0 auto 25px;
    }
    .c-accordion-header-bar, .c-accordion-body {
        padding: 25px 30px;
    }
    .c-accordion-row__icon svg {
        width: 18px;
        height: 18px;
    }
    .c-accordion-row__icon{
        position: static;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .c-our-service-area .container{
        padding:0;
    }
    .c-accordion-row{
        padding: 30px 30px 20px;
    }
    .c-single-accordion h3 {
        font-size: 24px;
    }
    .c-accordion-row h4{
        margin-bottom:12px;
    }
    .c-contact-form-area {
        padding: 30px 30px;
    }
    .gform_wrapper.gform_wrapper input[type="text"], .gform_wrapper.gform_wrapper input[type="email"], .gform_wrapper.gform_wrapper input[type="tel"], .gform_wrapper.gform_wrapper textarea {
        margin-bottom:20px;
    }
    .gform-theme--foundation .gform-grid-row {
        row-gap: 0 !important;
    }
    .gform_wrapper.gform_wrapper .gform_fields .gfield{
        width:100% !important;
    }
    .c-single-user-card .short-desc{
        min-height:0;
    }

    .c-location-wpr {
        height: 800px;
    }
    .c-location-text-wpr h2 {
        font-size: 22px;
        margin:0 0 10px;
        line-height:normal;
    }
    .c-location-text-wpr {
        padding: 12px 0 7px;
    }
    .c-cards-area .container{
        padding:0;
    }
    .c-cards-area .c-section-heading{
        padding: 0 30px;
    }
    .c-single-box h3{
        font-size:30px;
    }
    .c-privacy-banner p {
        font-size: 20px;
    }
    .c-inner-page-banner.c-privacy-banner{
        align-items:flex-end;
        padding-bottom:75px;
    }
    .c-content-sec h4 {
        font-size: 30px;
    }    
    .c-why-choose-sec{
        margin:85px 0 0;
    }
    .c-different-sec {
        padding: 60px 0;
    }
    .c-team-service{
        padding:0;
    }
    .c-team-service .c-section-content{
        padding:0;
    }
    .c-team-service__content{
        padding:0 25px;
    }
    .c-team-service__two-block{
        padding:0;
    }
    .c-team-service__two-block .col-lg-7 > *{
        width:100%;
        flex: auto;
    }
    .c-team-service__two-block img{
        height:auto;
    }
    .c-member-logos{
        flex-direction:column;
        margin:20px 0 0;
    }
    .c-single-partner-row h3 {
        font-size: 24px;
    }
    .c-single-partner-row p {
        font-size: 16px;
    }

    .team-content.for-mobile{
        display:block;
    }
    
}

@media screen and (max-width:575.98px) {
    .c-inner-page-module:not(.c-resource-details-page):not(.c-privacy-page) .container {
        padding:0;
    }
    .c-resource-details-page + .container{
        padding:0;
    }
    .c-resource-details-page h4 {
        font-size: 20px;
        margin:0 0 30px;
    }
    .c-resource-details-page ul > li, .c-resource-details-page ol > li,
    .c-resource-details-page p, .c-content-sec p{
        font-size: 16px;
    }
    .c-blue-box-row{
        padding:40px 0;
    }
    .c-single-user-card{
        margin-bottom:40px;
    }
    .c-contact-info ul > li{
        flex-wrap:wrap;
    }
    .c-contact-info ul > li span {
        width: 100%;
    }
    .c-contact-info{
        padding:0 30px;
    }
    .c-video-area {
        max-width: 325px;
        height: 582px;
        margin: 0 auto;
    }
    .c-why-choose-sec video{
        object-fit:cover;
    }
    #map{
        width:100% !important;
    }

}

@media (min-width: 1360px) and (max-width: 1800px) {    
    body{
        zoom:90%;
    }
}