/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #444444;
    font-weight: 400;
    background: #ffffff;
    font-family: 'Raleway', sans-serif;
}

a {
    color: #202C45;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #E81C2E;
    outline: none;
    text-decoration: none;
}

.container-fluid {
    max-width: 1336px;
}

/*.btn.btn-custom {*/
/*    padding: 6px 40px 8px 20px;*/
/*    text-align: center;*/
/*    font-size: 16px;*/
/*    font-weight: 500;*/
/*    color: #ffffff;*/
/*    background: #dedc04;*/
/*    border: none;*/
/*    border-radius: 0;*/
/*    box-shadow: inset 0 0 0 0 #202c45;*/
/*    transition: ease-out 0.5s;*/
/*    max-width: 180px;*/
/*    margin-top: 20px;*/
/*}*/

/*.btn.btn-custom::after {*/
/*    content: "\f061";*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    font-family: "Font Awesome 5 Free";*/
/*}*/

/*.btn.btn-custom:hover {*/
/*    color: #E81C2E;*/
/*    background: #202C45;*/
/*    box-shadow: inset 200px 0 0 0 #202C45;*/
/*}*/

/*.btn:focus,*/
/*.form-control:focus {*/
/*    box-shadow: none;*/
/*}*/

/*[class^="flaticon-"]:before, [class*=" flaticon-"]:before,*/
/*[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   */
/*    font-size: inherit;*/
/*    margin-left: 0;*/
/*}*/


/**********************************/
/****** Loader & Back to Top ******/
/**********************************/
#loader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-out, visibility 0s linear .3s;
    -o-transition: opacity .3s ease-out, visibility 0s linear .3s;
    transition: opacity .3s ease-out, visibility 0s linear .3s;
    z-index: 999;
}

#loader.show {
    -webkit-transition: opacity .6s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .6s ease-out, visibility 0s linear 0s;
    transition: opacity .6s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    position: relative;
    width: 45px;
    height: 45px;
    border: 5px solid #dddddd;
    border-top: 5px solid #E81C2E;
    border-radius: 50%;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.back-to-top {
    position: fixed;
    display: none;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: .5s;
    background: #E81C2E;
    border-radius: 44px;
    z-index: 9;
}

.back-to-top i {
    color: #ffffff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #202C45;
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.top-bar .logo {
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: -4px 0 0 0;
    color: #E81C2E;
    font-size: 50px;
    line-height: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    font-style: italic;
}

.top-bar .logo h1 span {
    color: #202C45;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 60px;
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #202C45;
    border-radius: 40px;
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.user-logged-in .nav-bar {
    background: transparent;
    position: relative;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-bar {
    background: linear-gradient(to right, rgb(54, 0, 51), rgb(11, 135, 147)) !important;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-bar.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    background-color: white;
}

.nav-bar .navbar {
    padding: 0;
    background: transparent !important;
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #000;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #E81C2E;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.nav-bar .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

/* @media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
    }
} */

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(to right, rgb(54, 0, 51), rgb(11, 135, 147));
    padding-top: 90px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row-reverse;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    /*height: 100vh;*/
    max-height: 600px;
    text-align: right;
    overflow: hidden;
    max-width: 65%;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
}

.carousel .carousel-text {
    max-width: 35%;
    padding: 0 15px;
}

.carousel .carousel-text h3 {
    color: #E81C2E;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: 'Dancing Script', cursive;
}

.carousel .carousel-text p {
    max-width: 500px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
}

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: #ffffff;
}

.carousel .btn.btn-custom:hover {
    color: #E81C2E;
}

.carousel .owl-nav {
    position: absolute;
    width: 13%;
    height: 50px;
    top: calc(100% - 100px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50px;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: .5s;
}

.carousel .owl-nav .owl-prev {
    margin-left: 30px;
}

.carousel .owl-nav .owl-next {
    margin-right: 30px;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #E81C2E;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 60px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 45px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text p {
        margin-bottom: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #202C45;
    border-top: 1px dotted #ffffff;
}

.page-header h2 {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #E81C2E;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h2 {
        font-size: 45px;
    }
    
    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }
    
    .page-header h2 {
        font-size: 35px;
    }
    
    .page-header a {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E81C2E;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: #E81C2E;
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

/* .section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
} */

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}

/*******************************/
/********** CEO CSS **********/
/*******************************/
.ceo-msg {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background-color: #ffffff;
}

.ceo-img {
    display :flex;
    justify-content:center;
}

.ceo-msg .ceo-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    max-width: 320px;
}

.ceo-msg .ceo-msg-content {
    margin-bottom: 30px;
}

.ceo-msg .ceo-msg-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.ceo-msg .about-content ul li {
    margin-bottom: 5px;
}

.ceo-msg .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: linear-gradient(to right, rgb(17, 153, 142), rgb(93 191 130));
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    max-height: 440px;
    object-fit: cover;
    /*filter: brightness(0.2);*/
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about-video-thumb {
    max-width: 420px;
    position: absolute;
    bottom: -20px;
    left: 40px;
}

.about-video-thumb img {
    width: 100%;
    border-radius: 4px;
}

.about-video-thumb i{
    position: absolute;
    top: 40%;
    left: 45%;
    font-size: 60px;
    opacity: .7;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}

/*******************************/
/********** Infrastructure CSS **********/
/*******************************/
.infrastructure {
    position: relative;
    width: 100%;
    padding: 45px 0 100px;
    background-color: #ffffff;
}

/*.infrastructure .about-img img {*/
/*    width: 100%;*/
/*    border-radius: 5px;*/
/*    margin-bottom: 30px;*/
/*    max-height: 440px;*/
/*    object-fit: cover;*/
/*    filter: brightness(0.2);*/
/*}*/

.infrastructure .infra-content {
    margin-bottom: 30px;
    padding-right: 200px;
}

.infrastructure .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.infra-thumb {
    max-width: 420px;
    position: absolute;
    bottom: -20px;
    left: 200px;
}

.infra-thumb img, .infra-thumb-vertical img {
    width: 100%;
    border-radius: 4px;
}

.infra-thumb-vertical img {
    height: 100vh;
    max-height: 260px;
    object-fit: cover;
}

.infra-thumb-vertical {
    max-width: 280px;
    position: absolute;
    bottom: 80px;
    left: -140px;
}

.infrastructure .about-content ul li {
    margin-bottom: 5px;
}

.infrastructure .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.products {
    position: relative;
    width: 100%;
    padding: 45px 0;
    background: linear-gradient(to right, rgb(211 131 90), rgb(255, 94, 98));
}

.products .products-img img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    max-height: 440px;
    object-fit: cover;
    filter: brightness(0.2);
}

.products .products-content {
    margin-bottom: 30px;
}

.products .products-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.products-video-thumb {
    max-width: 420px;
    position: absolute;
    bottom: -20px;
    left: 40px;
}

.products-video-thumb img {
    width: 100%;
    border-radius: 4px;
}

.products-video-thumb i{
    position: absolute;
    top: 40%;
    left: 45%;
    font-size: 60px;
    opacity: .7;
}

.products .about-content ul li {
    margin-bottom: 5px;
}

.products .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.service .service-item i {
    color: #202C45;
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
}

.service .service-item [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#E81C2E, #202C45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: .5s;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service .service-item p {
    margin: 0;
}


/*******************************/
/********** Facts CSS **********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: #484848;
}

.facts .facts-text p {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    padding-top: 20px;
    background: #f5f5f5;
}

.footer .footer-link {
    display: flex;
    justify-content: flex-end;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #000000;
    transition: .3s;
    padding: 0 10px;
}

.footer .footer-link a:hover {
    color: #E81C2E;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-newsletter label {
    margin-top: 5px;
    color: #777777;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 45px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #E81C2E;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}


section.vision-mission {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, rgb(248 255 148), rgb(255 213 94));
  }
  
  .units {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background-color: #eed641;
}

.units .container {
    background: #fff;
    padding: 20px;
}

  .nav-tabs {
    justify-content: center;
    padding-bottom: 20px;
}

  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #020202;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .nav-link {
    border: 0px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: #efefef;
    margin: 2px;
}


.form-wrapper textarea{
    width: 100%;
    min-height: 120px;
    padding: 20px;
    border: 1px solid #ced4da;
}

.form-control, textarea {
    border: 0px solid #ced4da;
    background-color: #ebebeb;
}

.nav-pills .nav-link {
    border-radius: 0;
    border-bottom: dotted 1px;
    padding: 15px 0;
}

.location-map {
    background: #f7db6a;
    padding: 20px;
}

.location-map .container {
    background: #fff;
    padding: 20px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #28a844;
    background-color: transparent;
}

.location-map h6 {
    font-weight: 600;
}

.scrolling-image-gallery {
  /*height: 648px;*/
  /*width: 1140px;*/
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
}
.scrolling-image-gallery img {
  width: 160px;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 8/5;
  cursor: pointer;
}

.scrolling-image-gallery .active-image {
    max-width: 900px;
    border: solid 1px #ccc;
    width: 100%;
}

.scrolling-image-gallery .active-image img {
      width: 100%;
    height: 100%;
    aspect-ratio: 99/59;
}
.scrolling-image-gallery .thumbnail-images {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 360px;
    max-height: 540px;
}
.scrolling-image-gallery .thumbnail-scroll {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-right: 24px;
  gap: 16px;
}
.scrolling-image-gallery .thumbnail-image {
    flex-basis: 145px;
    height: 100px;
    margin: 0 auto;
    text-align: center;
    border: solid 1px #8cd2d9;
}

.scrolling-image-gallery-modal {
  border: 0;
  padding: 0;
}
.scrolling-image-gallery-modal::backdrop {
  background-color: rgba(0, 200, 200, 0.4);
}

.scrolling-image-gallery-modal img {
  max-height: 70vh;
  aspect-ratio: 65/54;
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.webform-submission-contact-form {
    display: flex;
    flex-wrap: wrap;
    margin: 10px auto;
    width: 100%;
}

.contact-us-page.section-space {
    padding: 100px 0 0px;
}

.webform-submission-contact-form .form-item {
    margin-top: 1em;
    margin-bottom: 1em;
    flex: 0 0 48%;
    max-width: 50%;
    border: 0px solid #ced4da;
    background-color: #ebebeb;
    margin-left: 10px;
    margin-right: 10px;
}

.webform-submission-contact-form .form-text, .webform-submission-contact-form .form-email, .webform-submission-contact-form .form-number  {
    border: 0px;
    border-radius: 0px;
    border-bottom: 0;
    background: transparent;
    -webkit-appearance: none;
    width: 100%;
    padding: 0px 10px 0px;
    outline: none;
    color: #462830;
    line-height: 40px;
    box-shadow: 0px 0px 0px transparent;
    margin-bottom: 0;
}

.form-actions {
    width :100%;
    max-width :300px;
    margin-left: 15px;
}

.webform-submission-contact-form .form-submit {
    color: #ffffff;
    background-color: #28a745;
    border-color: #28a745;
    display: block;
    width: 100%;
    box-shadow: 0 0 0 0;
    padding: 10px;
    border: 0;
}

.webform-confirmation {
    padding-top: 240px;
    text-align: center;
    max-width: 800px;
    min-height: 520px;
    margin: auto;
    flex-wrap: wrap;
    display: flex;
}

.webform-confirmation strong {
    font-size : 35px;
}