@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/ZonaPro-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/ZonaPro-Light.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/ZonaPro-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/zona-pro-semi-bold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/ZonaPro-Bold.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'zona-pro';
  src: url('../Fonts/zona-pro-extra-bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
:root {
  --primary-color: #121D6C;
  --secondary-color: #fff;
  --head-size:30px;
}
html {
  scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}
ul{
    padding: 0%;
    margin: 0;
}
li{
    list-style: none;
}
/* img{
    width: 100%;
} */
body {
    font-family: 'zona-pro';
    font-weight: 300;
    overflow-x: hidden;
}
header {
    padding: 30px 0px;
    transition: 0.2s;
    position: absolute;
    width: 100%;
}
#navbar.scrolled {
    background-color: var(--primary-color);
    position: fixed;
    z-index: 999;
    top: 0;
    padding: 15px 0px;
    transition: 0.5s;
}
header .logo img {
    width: 180px;
}
header nav ul {
    margin: 0;
    padding: 0;
    height: 55.9px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    list-style: none;
    gap: 30px;
}
header nav ul li{
  font-weight: 300;
}
.quick-cnct {
    height: 55.9px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.quick-cnct a {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 7px 15px 7px 8px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: inset 0 5px 10px rgb(0 0 0 / 13%);
    transition: 0.3s;
    position: relative;
    font-weight: 400;
}
.quick-cnct {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.quick-cnct a i {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    transition: 0.4s;
    margin-right: 5px;
}
.quick-cnct a:hover {
    padding: 7px 47px 7px 0px;
    gap: 0;
}
.quick-cnct a:hover i {
    transform: translateX(152px);
    margin-right: 0px;
}



/* header .logo{
  overflow: hidden;
}
header .logo span img {
  display: block;
  animation: reveal 5.5s cubic-bezier(0.77, 0, 0.175, 1) 0s infinite;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
} */

.logo{
    position: relative;
    width: 100%;
    height: 100%; 
}
.logo img {
    position: absolute;
    top: 0;
    left: 0;
    
} 

/* First logo */
.logo1 {
    animation-delay: 0s !important;
    opacity: 0;
    animation: fade 6s infinite;
}

/* Second logo */
.logo2 {
    animation-delay: 3s !important;
    opacity: 0;
    animation: fade 6s infinite;
}
@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}




/* =========================================hero========================================= */

.hero {
    background-image: url(../images/hero-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 97vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding-bottom: 65px;
    margin: 15px;
    border-radius: 20px;
    background-attachment: fixed;
}
.hero h1{
    font-size: 50px;
}
.hero .hero-cnt p{
    max-width: 800px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}
.hero .hero-counter {
    display: flex;
    justify-content: flex-end;
    height: auto;
    align-items: flex-end;
    gap: 50px;
    overflow: hidden ;
}
.hero .hero-counter .timer{
    font-size: 40px;
    font-weight: 400;
}
.hero .hero-counter span {
    font-size: 13px;
    font-weight: 200;
}
.counter-a,.counter-b,.counter-c,.counter-d{
  animation: reveal 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
.learn-more{
    width: fit-content;
}
.learn-more a {
    border: 1px solid #ffff;
    color: var(--secondary-color);
    padding: 7px 10px 7px 8px;
    border-radius: 50px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    position: relative;
    color: #fff;
    font-weight: 400;
}
.learn-more a i {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;

    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    transition: 0.4s;
    margin-right: 6px;
}
.learn-more a:hover {
    padding: 7px 45px 7px 8px;
    gap: 0;
}
.learn-more a:hover i {
    transform: translateX(124px);
    margin-right: 0px;
}


.hero .hero-cnt h1 {
  overflow: hidden;
}
.hero .hero-cnt p {
  overflow: hidden;
}
.hero .hero-cnt h1 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
.hero .hero-cnt p span {
  display: block;
  animation: reveal 3.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
@keyframes reveal {
  0% {
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* ==========================abiout-sec========================= */
.about-sec{
    padding: 80px 0;
}
.head-tag {
    margin-bottom: 35px;
}

.abt-banner .banner-cnt h2 {
  overflow: hidden;
}
.abt-banner .banner-cnt p {
  overflow: hidden;
}
.abt-banner .banner-cnt h2 span {
  display: block;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
.abt-banner .banner-cnt p span {
  display: block;
  animation: reveal 3.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}
.head-tag p {
    width: max-content;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    border-radius: 99px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}
.head-tag p img{
    width: 18px;
}
.about-sec .abt-img-col h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    margin-bottom: 20px;
}
.about-sec .abt-img-col h3 img{
    width: 40px;
}
.about-sec .abt-img-col h3 span {
    color: var(--primary-color);
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 30px;
}
.about-sec .abt-img img {
    width: 90%;
}
.abt-cnt-col .core-services h5 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 35px;
}
.abt-cnt-col .core-services h5 span{
    color: var(--primary-color);
}
.abt-cnt-col .core-services ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0px;
}
.abt-cnt-col .core-services ul li img {
    width: 35px;
}
.core-services .learn-more{
    margin-top: 50px;
}
.core-services .learn-more a{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.core-services .learn-more a i {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* =========================================ourservices========================================= */
.ourservices{
    background-image: url(../images/square-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
}
.ourservices .head-tag{
    margin: auto;
    width: fit-content;
}
.ourservices .services-head h3 {
    text-align: center;
    margin-top: 25px;
    font-weight: 400;
    line-height: 43px;
    margin-bottom: 30px;
    font-size: var(--head-size);
}
.ourservices .services-head h3 span{
    color: var(--primary-color);
}
.ourservices h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 400;
}
.ourservices  .service-img img {
    width: 100%;
    border-radius: 20px;
}
.ourservices  ul li {
    position: relative;
    padding: 5px 0;
    padding-left: 35px;
}
.ourservices  ul li::before {
    content: url(../images/logo-tag.png);
    position: absolute;
    left: 0;
    transform: scale(0.6);
    top: -2px;
}
.ourservices .cnt-col{
    height: 545px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================whychoose========================================= */
.whychoose {
    padding: 80px 0;
    background: #0014A4;
    background: radial-gradient(circle, rgb(53 64 145) 0%, rgb(18 29 108) 80%);
    position: relative;
}
.whychoose .head-tag {
    margin-bottom: 35px;
    margin: auto;
    width: fit-content;
}
.whychoose .head-tag p {
    width: max-content;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    border-radius: 99px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}
.whychoose .head-tag p img{
    width: 18px;
}
.whychoose .whychoose-head h5 {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 70px;
}
.whychoose .whychoose-cnt .custom-p {
    border: 1px solid #fff;
    padding: 5px 10px;
    width: fit-content;
    color: #fff;
    border-radius: 99px;
    font-size: 13px;
    margin-bottom: 30px;
}
.whychoose .whychoose-cnt h6{
    font-size: 30px;
}
.whychoose .whychoose-cnt h6 {
    font-size: 33px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
}
.whychoose .whychoose-cnt h6 span{
    font-size: 25px;
    color: #fff;
    font-weight: 300;
}
.whychoose .whychoose-points{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
}
.whychoose .whychoose-points .points p{
    margin-bottom: 25px;
}
.whychoose .whychoose-points .points img {
    width: auto;
    margin-bottom: 5px;
}
.whychoose .whychose-img img {
    width: auto;
    position: absolute;
    top: 0;
}


/* ======================================global-trade====================================== */

.global-trade{
    background-image: url(../images/square-bg.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0px;
}
.global-trade .head-tag{
    margin: auto;
    width: fit-content;
}
.global-trade .global-head h3 {
    text-align: center;
    margin-top: 25px;
    font-weight: 400;
    line-height: 43px;
    margin-bottom: 40px;
    font-size: var(--head-size);
}
.global-trade .global-head h3 span{
    color: var(--primary-color);
}
.global-trade .img-col img {
    border-radius: 15px;
}
.global-trade .cnt-col{
    height: 385px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.global-trade .cnt-col h3 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
}
.global-trade .cnt-col h3 span{
    color: var(--primary-color);
}
.global-trade  ul li {
    position: relative;
    padding: 5px 0;
    padding-left: 35px;
}
.global-trade  ul li::before {
    content: url(../images/logo-tag.png);
    position: absolute;
    left: 0;
    transform: scale(0.6);
    top: -2px;
}

/* ===============================Our Approach=============================== */
.ourapproach{
    padding: 80px 0;
}

.ourapproach .head-tag {
    margin-bottom: 35px;
    margin: auto;
    width: fit-content;
}
.ourapproach .approach-head h5 {
    text-align: center;
    margin-top: 25px;
    font-weight: 400;
    line-height: 43px;
    margin-bottom: 40px;
    font-size: var(--head-size);
}
.ourapproach .approach-head h5 span{
    color: var(--primary-color);
}
.ourapproach .approach-img img{
    border-radius: 20px;
    width: 100%;
    object-fit: contain;
    transition: 0.5s;
}
.ourapproach .approach-img img:hover{
    transform:scale(1.02);
}
.ourapproach h6{
    font-size: 20px;
    font-weight: 400;
    padding-top: 20px;
}

/*=================================footer=================================*/

footer {
    background: var(--primary-color);
    padding: 80px 0px 35px 0;
}
footer .footer-social .social-icons img{
    height: 18px;
}
footer .nav-links{
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
}
footer .footer-logo {
    margin-bottom: 110px;
}
footer .footer-logo img {
    width: 220px;
    position: absolute;
}

footer h4{
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 300;
}
footer h4 span{
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 400;
}
footer .footer-social{
    display: flex;
    gap: 10px;
}
footer .footer-social .social-icons {
    width: 38px;
    height: 38px;
    line-height: 28px;
    text-align: center;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    margin-top: 10px;
}
.custom-margin{
    margin-left: 30px;
}
footer .nav-links .nav-col h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
footer .nav-links .nav-col ul li {
    padding: 6px 0;
}
footer .nav-links .nav-col ul li a{
    font-size: 15px;
    font-weight: 200;
}
footer .map-icon {
    position: relative;
    padding-left: 30px !important;
    height: 108px;
}
footer .map-icon::before{
content: url(../images/map-icon.png);
    position: absolute;
    transform: scale(0.5);
    top: -2px;
    left: -10px;
}
footer .mail-icon{
    position: relative;
    padding-left: 30px !important;
}
footer .mail-icon::before{
    content: url(../images/mail-icon.png);
    position: absolute;
    transform: scale(0.5);
    top: -2px;
    left: -10px;
}
.call-icon{
    position: relative;
    padding-left: 30px !important;
}
.call-icon::before{
    content: url(../images/whatsapp-icon.png);
    position: absolute;
    transform: scale(0.5);
    top: -2px;
    left: -10px;
}
.landline-icon{
    position: relative;
    padding-left: 30px !important;
}
.landline-icon::before{
    content: url(../images/landline-icon.png);
    position: absolute;
    transform: scale(0.5);
    top: -2px;
    left: -10px;
}

footer .credits {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #ffffff0d;
    margin-top: 50px;
}
footer .credits h6{
    font-weight: 200;
    color: #fff;
    font-size: 15px;
}
footer .credits h6 a:hover {
    color: #ffa700;
}



/* About-Page=====================================================================================================
==================================================================================================================
================================================================================================================== */

.abt-banner{
    background: url(../images/abt-banner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    margin: 15px;
    border-radius: 20px;
}
.abt-banner .banner-cnt{
    color: #fff;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =======================================mission-vision======================================= */
.mission-vision {
    padding: 80px 0;
    background: url(../images/mission-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.mission-vision .head-tag p {
    width: max-content;
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 15px;
    border-radius: 99px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 400;
    font-size: 13px;
}
.mission-vision .mission-col {
    background: #fff;
    padding: 20px;
    height: 350px;
    border-radius: 20px;
}
.mission-vision .icon-img{
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
.mission-vision .icon-img img {
    height: 26px;
}
.mission-col h6 {
    font-size: 24px;
    color: var(--primary-color);
    padding-top: 6px;
    padding-bottom: 10px;
}
.mission-vision .head-tag {
     margin: auto;
    margin-bottom: 25px;
    width: fit-content;
}
.mission-vision .mission-head h5{
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}


/* ===============================================ourteam============================================= */
.ourteam {
    padding: 80px  0px;
    background-color: #fff;
}
.ourteam .top-all-cnt {
    display: flex;
    margin-bottom: 65px;
}
.ourteam .top-cnt p {
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    width: fit-content;
    border-radius: 100px;
}
.ourteam .top-cnt h5 {
    font-size: 35px;
    font-weight: 400;
}
.ourteam .top-cnt-para {
    /* height: 132px; */
    display: flex;
    align-items: flex-end;
}
.ourteam .top-cnt-para p{
    margin: 0;
}
.ourteam .team-div .team-members .member-img {
    background-image: url(../images/team-member.png);
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0px 8px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
    justify-content: flex-end;
    color: #fff;
    border-radius: 10px;
}
.ourteam .team-div .team-members .slick-arrow {
    display: none !important;
}


/* SErvices=====================================================================================================
==================================================================================================================
================================================================================================================== */


.services-sec {
    padding: 80px 0;
    background: url(../images/ser-bg.png);
    background-position: top;
    background-size: 70%;
    background-repeat: no-repeat;
}
.services-sec .arrow-column .services-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.services-sec .arrow-column .services-row:hover .s-arrow i {
    transform: rotate(-45deg);
}
.services-sec .bdr-btm {
    border-bottom: 1px solid #00000023;
}
.services-sec .arrow-column .services-row .number {
    display: flex;
    align-items: center;
}
.services-sec .arrow-column .services-row .number p{
    margin: 0;
    font-size: 25px;
    width: 50px;
    font-weight: 400;
}
.services-sec .arrow-column .services-row .number h4 {
    margin: 0;
    font-weight: 400;
    padding-left: 5px;
    font-size: 20px;
}
.services-sec .arrow-column .services-row .s-arrow {
    padding-right: 20px;
    transition: 0.3s;
}
.services-sec .arrow-column .services-row .s-arrow i{
    transition: 0.3s;
}
.services-sec .ser-top-cnts h4 {
    font-size: var(--head-size);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 40px;
}
.services-sec .ser-top-cnts h4 span{
    color: var(--primary-color);
}
.bg-img {
    background-image: url(../images/ship-container.jpg);
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-top: 40px;
}
.services-sec .head-tag {
    margin-bottom: 30px;
    margin: auto;
    margin-bottom: 30px;
    width: fit-content;
}


.ser-page .learn-more a {
    border: 1px solid #121d6c;
    color: #121d6c;
    margin-top: 30px;
}
.ser-page .learn-more a i {
    background: #121d6c;
    color: #ffff;
}
.fleet-solu .cnt-col {
    height: 520px;
}


.strong-network {
    padding: 0px 0 80px 0;
}
.strong-network .hero-counter {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 40px;
    color: #fff;
    margin-top: 50px;
}
.strong-network .container {
    background: var(--primary-color);
    padding: 60px;
    border-radius: 20px;
}
.strong-network .cnt-col {
    color: var(--secondary-color);
}
.strong-network .container-img{
    position: relative;
}
.strong-network .container-img img {
    position: absolute;
    width: 565px;
    top: -62px;
    right: 30px;
}
.strong-network .hero-counter .timer {
    font-size: 30px;
    font-weight: 400;
}
.strong-network .hero-counter h6{
    margin: 0;
}
.strong-network .hero-counter p {
    font-size: 12px;
}
.strong-network .cnt-col h4{
    font-weight: 400;
    font-size: 30px;
}
.strong-network .cnt-col p {
    font-weight: 200;
    margin: 0;
}

.freigth-shipping,.courier-services {
    padding: 40px 0px 80px 0;
}
.freigth-shipping .cnt-col {
    height: 462px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.courier-services .cnt-col {
    height: 431px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.courier-services .learn-more a:hover i,.freigth-shipping .learn-more a:hover i,.fleet-solu .learn-more a:hover i {
    transform: translateX(132px);
    margin-right: 0px;
}

/* Contacts=====================================================================================================
==================================================================================================================
================================================================================================================== */


.contact-sec {
    padding: 80px 0 120px 0;
}
.contact-sec .contact-img-sec {
    background-image: url(../images/map.jpg);
    background-size: cover;
    background-position: center;
    height: 500px;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}
.contact-sec .map-loc {
    background: #fff;
    padding: 15px;
    width: max-content;
    border-radius: 15px;
    box-shadow: 2px 12px 24px -5px rgba(0,0,0,0.41);
    -webkit-box-shadow: 2px 12px 24px -5px rgb(0 0 0 / 8%);
    -moz-box-shadow: 2px 12px 24px -5px rgba(0,0,0,0.41);
}
.contact-sec .uae-map:hover,.contact-sec .qatar-map:hover {
    transform: translateY(-10px);
}
.contact-sec .uae-map {
    position: absolute;
    top: 40px;
    left: 40px;
    transition: 0.5s;
}
.contact-sec .qatar-map {
    position: absolute;
    top: 160px;
    right: 35px;
    transition: 0.5s;
    display: block;
}
.contact-sec .qatar-map::after{
    content: '';
    width: 160px;
    height: 140px;
    background: #14226B;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.contact-sec .map-loc h6 {
    display: flex;
    align-items: center;
    color: #121d6c;
    font-weight: 400;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}
.contact-sec .map-loc h6 img{
    width: 18px;
}
.contact-sec .map-loc h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 3px;
    padding-left: 22px;
}
.contact-sec .map-loc p{
    font-size: 13px;
    margin: 0;
    color: #0000008f;
    padding-left: 22px;
}
.contact-sec .map-container {
    position: absolute;
    bottom: -115px;
    scale: 0.9;
}

.contact-sec  .form-container {
    width: 100%;
    padding-left: 20px;
}

.contact-sec  .form-container h2 {
    font-size: var(--head-size);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.contact-sec  .form-container h2 span {
    color: #14226B; /* dark blue */
}

.contact-sec  form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-sec  input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ededed;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    background: #ffffff;
    font-weight: 300;
}

.contact-sec  input:focus, textarea:focus {
    border-color: #14226B;
}

.contact-sec  .half-width {
    flex: 1;
    min-width: calc(50% - 10px);
}

.contact-sec textarea {
    resize: none;
    min-height: 120px;
}

.contact-sec  button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #14226B;
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-sec button:hover {
    background: #0f1b54;
}
.contact-sec .head-tag {
    margin-bottom: 30px;
}
.contact-sec .services-head h3 {
    font-weight: 400;
    line-height: 43px;
    margin-bottom: 55px;
    font-size: var(--head-size);
}
.contact-sec .services-head h3 span {
    color: var(--primary-color);
}

.contact-sec .connect-sec {
    display: flex;
    justify-content: space-around;
    margin-top: 130px;
    align-items: flex-start;
}
.contact-sec .connect-sec .social-flex h6{
    margin-bottom: 15px;
    font-size: 20px;
}
.contact-sec .connect-sec .social-col {
    display: flex;
    gap: 10px;
}
.contact-sec .connect-sec .social-col .social-icons {
    width: 50px;
    height: 50px;
    line-height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    text-align: center;
}
.contact-sec .mail a,.contact-sec .call a{
    color: #000;
}
.connect-sec .mail,.connect-sec .call{
    display: flex;
    gap: 10px;
}
.connect-sec .connect-icon{
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 44px;
    border-radius: 50%;
}
.connect-sec .mail h6,.connect-sec .call h6{
    font-size: 20px;
    margin-bottom: 3px;
}










header .head-nav-links a{
  display: block;
  text-decoration: none;
  color: #fff;
  border-bottom:2px solid transparent;
  transition:0.5s ease;
  transform: translateX(0%);
}
header .burger{
  display: none;
}
header .burger div {
    width: 25px;
    height: 4px;
    background: #fff;
    margin: 2px;
    transition: all 0.5s ease;
    border-radius: 200px;
}
@media only screen and (max-width: 760px){
header nav{
    justify-content: space-between;
    padding: 0 5vw;
}
header .head-nav-links {
    position: absolute;
    right: 0;
    top: 0vh;
    min-height: 100vh;
    background: #14226b;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin: 0;
    padding: 0;
    transform: translateX(100%);
    transition: All 0.5s ease-in;
    justify-content: flex-start;
    padding: 100px 0 0 40px;
}
header .head-nav-links a{
    opacity: 0;
}
header .burger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 20px;
    height: 45px;
    justify-content: center;
}
 
}
@media only screen and (max-width: 640px){
header nav{
    justify-content: space-between;
    padding: 0 5vw;
}
}
header .nav-active{
    transform: translateX(0);
}
@media only screen and (max-width: 460px){
header .head-nav-links {
    width: 50%;
    transition: All 0.5s ease;
}
}
header .nav-active {
    transform: translateX(0);
}
@keyframes navLinkFade{
  from{
    opacity: 0;
    transform: translateX(50px);
  }
  to{
    opacity: 1;
    transform: translateX(0);
  }
}
header .toggle .line1{
   transform: rotate(-45deg) translate(-5px,6px );
}
header .toggle .line2{
   opacity: 0;
}
header .toggle .line3{
   transform: rotate(45deg) translate(-5px,-6px );
}