/*=================== Basic css =====================*/
@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
}

html,
body,
header,
footer,
section,
nav,
menu,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

/*body*/
body {  
    font-family: 'Gopher';
    font-size: 16px;
    font-weight: normal;    
    background: #FFFFFF;
    color: #000; 
    margin: 0;
    padding: 0;
}

/*====================== header area start ========================*/
.header-topbar {
    background: #000000;
    padding: 10px 0;
    text-align: center;
    z-index: 999;
    position: relative;
}

.header-topitem p {
    font-family: 'Brandon Text';
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
}

.header-topitem p a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: 0.2s all ease;
}

.header-topitem p a:hover {
    opacity: 0.87;
}

.header-navbar {
    width: 100%;
    display: block;
    background: #CCCCCC;
    padding: 18px 35px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1024;
    transition: 0.3s;
    border-bottom: 2px solid #000;
}

/*.header-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
}*/

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main > div {
    width: 33.333%;
}

.header-left ul {
    display: flex;
    align-items: center;
}

.header-left ul a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    display: inline-block;
    margin-right: 20px;
    transition: 0.2s all ease;
}

.header-left ul a:hover {
    opacity: 0.7;
}

.header-logo {
    text-align: center;
}

.header-logo img {
    max-width: 200px;
    margin-top: 15px;
}

.header-right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-right ul img {
    width: 30px;
}

.header-right ul li a {
    display: inline-block;
    margin-left: 5px;
    transition: 0.2s all ease;
}

.header-right ul li a:hover {
    opacity: 0.7;
}

/*Hamburger menu*/
.hamburger-menu {
    cursor: pointer;
    position: relative;
    display: none;
    z-index: 999;
}

.hamburger-menu span {
    background: #000000;
    width: 35px;
    height: 3px;
    display: block;
    margin: 6px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .line-top {
    -webkit-transform: translateY(-70%);
    -ms-transform: translateY(-70%);
    transform: translateY(-70%);
}

.hamburger-menu:hover .line-bottom {
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%);
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(250%) rotate(135deg);
    -ms-transform: translateY(250%) rotate(135deg);
    transform: translateY(250%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
    width: 100%;
    height: 147px;
    background: #CCCCCC;
    position: absolute;
    top: -100%;
    transition: .3s;
    display: none;
    transition: 0.2s all ease;
}

.ofcavas-menu.current {
    top: 126px;
    transition: 0.2s all ease;
    z-index: 9999999999 !important;
    height: 100vh;
}

.ofcavas-menu li{
    padding: 0;
}

.ofcavas-menu a {
   font-size: 22px;
   font-weight: 500;
   color: #000000;
   width: 100%;
   display: block;
   text-align: center;
   padding: 10px 10px;
   border-bottom: 2px solid #000;
   transition: 0.2s all ease;
}

.ofcavas-menu a:hover {
    opacity: 0.7;
}

/*========== Page loader CSS ==========*/
#preloader {
    position: fixed;
    background: #CCCCCC;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader3 {
    width: 45px;
    height: 45px;
    display: inline-block;
    padding: 0;
    text-align: left;
}

.loader3 span {
    position: absolute;
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background: #000;
    -webkit-animation: loader3 1.5s linear infinite;
    animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
    0% {
        transform: scale(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes loader3 {
    0% {
        -webkit-transform: scale(0, 0);
        opacity: 0.8;
    }

    100% {
        -webkit-transform: scale(1, 1);
        opacity: 0;
    }
}


/*========== return-to-top ==========*/
.back-to-top {
    font-size: 20px;
    color: #FFF;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 30px;
    right: 20px;
    border-radius: 50%;
    background: #666666;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: 0.2s all ease;
}

.back-to-top:hover {
    background: #000;
    color: #FFF;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/*====== contact-area start ======*/
.contact-area {
    background: #CCCCCC;
    padding: 180px 0 130px;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-main > div {
    width: 50%;
}

.contact-left h2 {
    font-family: 'Brandon Text';
    font-size: 52px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.contact-left img {
    width: 100%;
}

.contact-form {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
}

.contact-form span {
    font-family: 'Brandon Text';
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    display: block;
    text-align: right;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Brandon Text';
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #000;
    padding: 10px 4px;
    margin-bottom: 15px;
    resize: none;
    border-radius: 0px;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: 'Brandon Text';
    color: #000;
    opacity: 1;
}

.contact-form textarea {
    height: 50px;
    resize: none;
    overflow: hidden;
    border: none;
    margin: 0;
}

.contact_btn {
    margin-top: 80px;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact_btn button {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    background: #999999;
    padding: 4px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.2s all ease;
}

.contact_btn button:hover {
    opacity: 0.85;
}

/*===== footer-area start =====*/
.footer-area {
    background: #F8F8F8;
    padding: 75px 0 65px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    max-width: 150px;
}

.footer-left ul {
    padding-left: 45px;
}

.footer-left ul li a {
    font-size: 21px;
    font-weight: 500;
    color: #000000;
    text-decoration: underline;
    transition: 0.2s all ease;
}

.footer-left ul li a:hover {
    opacity: 0.75;
}

.footer-right {
    max-width: 445px;
    width: 100%;
    margin-left: auto;
}

.footer-right h4 {
    font-family: 'Brandon Text';
    font-size: 20px;
    font-weight: 500;
    color: #000000;
}

.footer-right p {
    font-family: 'Brandon Text';
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 6px 0 30px;
}

.footer-cnt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #000;
}

.footer-cnt input {
    font-family: 'Brandon Text';
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 4px;
    padding-right: 10px;
}

.footer-cnt input::placeholder {
    font-family: 'Brandon Text';
    color: #000;
    opacity: 1;
}

.footer-cnt button {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    background: #999999;
    padding: 4px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.2s all ease;
}

.footer-cnt button:hover {
    opacity: 0.85;
}

.copyright-area {
    background: #EDEDED;
    padding: 16px 50px 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-area p {
    font-family: 'Brandon Text';
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.copyright-area ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.copyright-area ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    display: inline-block;
    margin-left: 30px;
    text-decoration: underline;
    transition: 0.2s all ease;
}

.copyright-area ul li a:hover {
    font-weight: 500;
}

.footer-linksml ul {
    display: none;
}


/*===== industry page start =====*/
.industry-area {
    background: #CCCCCC;
    padding: 100px 0 70px;
}
  

.industry-left h2 {
    font-size: 57px;
    font-family: 'Gopher';
    padding: 40px 0px 20px 0px;
    margin: 0;
}

.industry_right_section_title h2,
.industry-left h2 {
    font-size: 57px;
    font-family: 'Gopher';
    margin: 0;
}

.industry_right_section_title h2 {
    margin-bottom: 15px;
    margin-top: -7px;
}

.industry_right_item p,
.industry-left p  {
    font-family: 'Gopher';
    font-size: 21px;
}
.industry-left {
    padding-right: 20px;
}
.industry_right_section {
    padding-left: 20px;
}

.industry_right_item p {
    margin-bottom: 40px;
}

.tab button {
    display: block;
    background: none;
    border: none;
    outline: none;
    font-family: 'Gopher';
    font-size: 21px;
    line-height: 42px;
}

.tab button:hover,
.tab button.active {
    text-decoration: underline;

}
 
.industry_right_img img {
    width: 100%;
    height: auto;
}


/*===== home page start =====*/
.hero-area {
    background-image: url(../images/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: calc(100vh - 130px);
}

.hero-item {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 130px);
}

.hero-cnt {
    max-width: 500px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 70px;
}

.hero-cnt h2 {
    font-size: 46px;
    font-weight: 700;
    color: #CCCCCC;
}

.hero-cnt p {
    font-size: 14px;
    font-weight: 500;
    color: #CCCCCC;
    margin: 25px 0 35px;
    max-width: 425px;
    width: 100%;
}

.hero-cnt a {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    background: #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 15px;
    transition: 0.2s all ease;
}

.hero-cnt a img {
    max-width: 21px;
    margin-left: 15px;
    transition: 0.2s all ease;
}

.hero-cnt a:hover {
    background: #FFF;
}

/*====== memorable-area start ======*/
.memorable-area {
    background: #EDEDED;
    padding: 90px 0 100px;
}

.memorable-item {
    max-width: 825px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.memorable-item img {
    max-width: 100px;
    float: left;
    margin-right: 20px;
}

.memorable-item p {
    font-size: 17px;
    line-height: 27px;
    font-weight: 500;
    color: #000000;
    text-align: justify;
}

.memorable-item a {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    background: #CCCCCC;
    max-width: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: auto;
    padding: 10px 15px;
    transition: 0.2s all ease;
    overflow: hidden;
}

.memorable-item a img {
    max-width: 21px;
    margin-left: 16px;
    transition: 0.2s all ease;
}

.memorable-item a:hover {
    opacity: 0.75;
}

/*====== marque-area start ========*/
.marque-area {
    background: #000000;
    padding: 20px 0;
    overflow: hidden;
}

.marque-area a {
    font-size: 26px;
    font-weight: 500;
    color: #CCCCCC;
    margin: 0 36px;
}

.marque-area a img {
    max-width: 14px;
    margin-left: 1px;
    vertical-align: 5px;
}

/*====== marketing-area start =====*/
.marketing-area {
    background: #FAFAFA;
    padding: 60px 0 50px;
    border-bottom: 2px solid #000;
}

.marketing-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.marketing-main > div {
    width: 48%;
}

.marketing-left img {
    width: 100%;
}

.marketing-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.marketing-left p {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    max-width: 550px;
    width: 100%;
    margin: 20px 0 40px;
}

.marketing-item {
    padding: 25px 30px;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.border-0 {
    border: none;
}

.marketing-item h2 {
    font-size: 160px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: flex-end;
    margin: 0;
}

.marketing-item h2 small {
    font-size: 90px;
    font-weight: 500;
    position: relative;
    bottom: 27px;
}

.marketing-item p {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    max-width: 240px;
    width: 100%;
    margin-left: auto;
}

/*===== leading-area start =====*/
.leading-area {
    background: #CCCCCC;
    padding: 100px 0 85px;
}

.leading-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.leading-item a {
    display: block;
}

.leading-item img {
    width: 100%;
    border: 2px solid #000;
}

.leading-item h2 {
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin: 16px 0;
}

.leading-item p {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.leading-item p a {
    color: #000000;
    text-decoration: underline;
    display: inline-block;
}

.leading-item p .collapse-cnt {
    display: none;
}

.collpse-item {
    display: none;
}

.learn-morebtn,
.learn-morebtn2,
.clsbtn2 {
    margin-top: 30px;
}

.learn-morebtn img,
.learn-morebtn2 img,
.clsbtn2 img {
    width: 22px;
    border: none;
    margin-left: 15px;
    transition: 0.2s all ease;
}

.learn-morebtn a,
.learn-morebtn2 a,
.clsbtn2 a {
    display: flex;
    align-items: center;
    font-size: 21px;
    font-weight: 500;
    color: #000000;
    transition: 0.2s all ease;
}


.learn-morebtn a .close,
.learn-morebtn2 a .close,
.clsbtn2 a .close {
    display: none;
}

.learn-morebtn .close-btn .close,
.learn-morebtn2 .close-btn .close,
.clsbtn2 .close-btn .close {
    display: inline-block;
}

.learn-morebtn .close-btn .learn,
.learn-morebtn2 .close-btn .learn,
.clsbtn2 .close-btn .learn {
    display: none;
}

.learn-morebtn a .close img,
.learn-morebtn2 a .close img,
.clsbtn2 a .close img {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 10px;
}

.content-show p .collapse-cnt {
    display: inline-block;
}

.content-show p .dot {
    display: none;
}

.content-show .collpse-item {
    display: block;
}

.headertop_mobilebar {
    display: none;
}

.headertop_mobilebar .header-topitem p a {
    font-family: 'Brandon Text';
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.arrow {
    animation: animate 2s infinite;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: translateX(0px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.arrow_left {
    animation: animation 2s infinite;
}

@keyframes animation {
    0% {
        opacity: 0;
        transform: translateX(0px) rotate(180deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-15px) rotate(180deg);
    }
}


/*update here*/
.header-right ul li {
    position: relative;
}

.header_iconbox {
    width: 420px;
    background: #CBCBCB;
    border: 2px solid #000;
    padding: 12px 12px;
    position: absolute;
    top: -13px;
    right: 0;
    display: none;
}

.header_iconbox img {
    width: 30px;
    display: block;
    margin-left: auto;
}

.iconbox_cnt {
    max-width: 305px;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0 20px;
}

.iconbox_cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.iconbox_cnt p a {
    color: #000000;
    text-decoration: underline;
}

.iconbox_cnt h2 {
    font-size: 44px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    margin-top: 12px;
}

.iconbox_cnt h2 a {
    display: inline-block;
    text-decoration: underline;
    color: #000;
}

.header_iconbox2 {
    width: 540px;
}

.header_iconbox2 .iconbox_cnt {
    max-width: 520px;
    padding: 0 15px 20px;
    position: relative;
}

.header_iconbox2 .iconbox_cnt img {
    width: 85px;
    position: absolute;
    bottom: 2px;
    right: 5px;
}

.learn-morebtn,
.clsbtn2 {
    display: none;
}

.learn-morebtn2 {
    display: block;
}

.leading-item {
    position: relative;
}

.modal-mainbox {
    background: #FFF;
    width: 700px;
    border: 2px solid #000;
    padding: 20px 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}

.modal-mainbox .clsbtn2 .close {
    display: inline-block;
}

.modal-mainbox .leading-item a img {
    max-width: 550px;
}

.modal-mainbox .clsbtn2 {
    display: inline-block;
}

.modal-mainbox .clsbtn2 a .close {
    display: inline-block;
}

.modal-box3 {
    left: initial;
    right: 0;
}

.modal-box2 {
    width: 900px;
    left: 0;
}

.modal-box2 .leading-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.modal-box2 .leading-item > div {
    width: 49%;
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #CCCCCC;
    min-width: 225px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border: 1.5px solid #333333;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block !important;
  border: 1px solid #333333;
  margin-right: 0px !important;
}
.dropdown:hover .dropdown-content {display: block;}
