*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --global-nav-collective-height: calc(var(--r-globalnav-height) + var(--global-nav-ad-bar-height));
    --r-globalnav-height: 48px;
    --global-nav-ad-bar-height: 0px;
    --content-height: 569px;
    --sub-content-height: 500px;
    --dark: #050507;
    --light: #E3F0F8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    background: #fff;
}

.globalHeader{
    position: relative;
    display: grid;
    height: 58px;
    place-items: center;
}

.headerNav{
    position: fixed;
    display: grid;
    place-items: center;
    height: 58px;
    width: 100%;
    background: rgba(31,31,31,0.8);
    z-index: 999;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.navMenu{
	position: fixed;
	display: grid;
	grid-template-columns: 20% 60% 20%;
	height: 50px;
    width: 100%;
    max-width: 1024px;
}


.cL{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.cLLogo{
	display: flex;
    cursor: pointer;
    opacity: 0.8;
}

.cLLogo:hover{
    opacity: 1;
    transition: opacity 400ms;
}

.cC{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.services{
	display: flex;
	height: 100%;
	width: 100%;
}

.desktopNav {
	display: flex;
	width: 100%;
    justify-content: space-between;
    align-items: center;
	list-style: none;
	
}

.desktopNav li a {
    color: azure;
    text-decoration: none;
    font-size: 14px;
	font-family: "Montserrat";
	font-weight: 400;
    letter-spacing: 0.8px;
	opacity: 0.8;
    text-transform: uppercase;
	cursor: pointer;
    transition: opacity 400ms;
}

.desktopNav li a:hover {
	color: #fff;
    opacity: 1;
}

.cR{
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	left: 0;
	bottom: 0;
}

.socialMediaIcons {
	position: absolute;
	display: flex;
	justify-content: space-between;
    align-items: center;
	list-style: none;
	height: 100%;
	width: 120px;
	z-index: 20;
}

.fb{
    background-image: url(../media/img/fb.svg);
    background-size: cover;
}

.ln{
    background-image: url(../media/img/ln.svg);
    background-size: cover;
}

.ig{
    background-image: url(../media/img/ig.svg);
    background-size: cover;
}

.fb,
.ln,
.ig{
    height: 16px;
	width: 16px;
	opacity: 0.8;
    transition: opacity 400ms;
}

.fb:hover,
.ln:hover,
.ig:hover {
	cursor: pointer;
	opacity: 1;
}

.mobNav{
	display: none;
}


.mainMobPortNav {
	position: fixed;
	display: none;
    place-items: center;
	height: 58px;
    width: 100%;
    background: rgba(31,31,31,0.8);
    z-index: 999;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}

.mainMobPortNavMenu {
	display: grid;
	grid-template-columns: 15% 70% 15%;
	width: 95%;
    place-items: center;
}

.mainMobPortCL {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.mainMobPortCC {
	display: grid;
    place-items: center;
	transition: all 100ms ease;
	z-index: 400;
}

.mainMobPortCR {
	display: grid;
    place-items: center;
	width: 100%;
	z-index: 400;
}

.menu-icon{
	display: grid;
    place-items: center;
	cursor: pointer;
}

.menu-icon .line-1,
.menu-icon .line-2 {
	position: absolute;
	height: 1.5px;
	width: 22px;
	background: #FFF;
    z-index: 999;
}

.menu-icon .line-1 {
	margin-top: -7px;
}
	.menu-icon .line-2 {
	margin-top: 7px;
}

/* ---------------------- */

.close-icon{
	display: none;
    place-items: center;
	cursor: pointer;
	}

.close-icon .close-1,
.close-icon .close-2 {
	position: absolute;
	height: 1.5px;
	width: 22px;
	background: #FFF;
	z-index: 999;
	}

.close-icon .close-1 {
	transform: rotate(45deg);
	}

.close-icon .close-2 {
	transform: rotate(-45deg);
	}


.main {
    position: relative;
    max-width: 2560px;
    margin: 0;
    margin-top: 0px;
}

.section-page {
    display: grid;
    grid-template-columns: 1fr;
    height: calc(var(--content-height) + var(--global-nav-collective-height));
    width: 100%;
    margin-bottom: 15px;
}

.dark {
    background: var(--dark);
}

.light {
    background: var(--light);
}


.background-colorful {
    background: linear-gradient(to bottom, #2e3e58 0%, #21283c 100%);
    background-size: cover;
}

  
.main-frame {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    height: calc(var(--content-height) + var(--global-nav-collective-height) + var(--gutter-width));
    width: 100%;
}

.service-page {
    display: grid;
    height: var(--sub-content-height);
    width: 100%;
    margin-bottom: 15px;
}

.sub-main-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    height: var(--sub-content-height);
    width: 100%;
    grid-gap: 15px;
}

.sub-cyber-security {
    display: block;
    margin-left: 15px;
}

.sub-branding {
    margin-right: 15px;
}

.link {
    display: flex;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.sub-link {
    display: flex;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

.content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    place-items: center;
    height: calc(var(--content-height) + var(--global-nav-collective-height) + var(--gutter-width));
    width: 100%;
}

.sub-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 45% 55%;
    place-items: center;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.cta-links {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    font-family: "Montserrat";
}

.sub-cta-links {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    font-family: "Montserrat";
    z-index: 1;
}

h2 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.002em;
    align-self: end;
    padding-bottom: 15px;
}

h3 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: .009em;
    color: #f5f5f7;
    align-self: end;
    padding-bottom: 15px;
}

h4 {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .010em;
    color: #f5f5f7;
    align-self: end;
    padding-bottom: 15px;
}

h5 {
    font-size: 23px;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: .012em;
    color: #f5f5f7;
    align-self: end;
    padding-bottom: 15px;
}

h6 {
    line-height: 1.16667;
    font-weight: 300;
    letter-spacing: .009em;
    font-family: "Montserrat";
    color: #2997ff;
    cursor: pointer;
    z-index: 1;
    align-self: center;
    justify-self: center;
}

.learn-more {
    font-size: 21px;
}

.sub-learn-more {
    font-size: 19px;
}

h6:hover {
    text-decoration: underline;
    z-index: 1;
}

.text-light {
    color: var(--light);
}

.text-dark {
    color: var(--dark);
}


.unit-image {
    display: grid;
    width: 100%;
    height: 100%;
    justify-items: center;
    align-items: end;
}

.sub-unit-image {
    display: grid;
    width: auto;
    height: 100%;
    max-width: 95%;
    justify-items: center;
    align-items: end;
}

.enterprise-image {
    display: flex;
    background-image: url("../media/img/__aman_one_banner.png");
    width: 312px;
    height: 300px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.marketing-image {
    display: grid;
    background-image: url("../media/img/__music-laptop.png");
    width: 450px;
    height: 250px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 25px;
}

.development-image {
    background-image: url("../media/img/__mobile_phones_cntyeyuhlbki.png");
    width: 385px;
    height: 260px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 25px;
}

.sub-security-image {
    background-image: url("../media/img/__security_shield_check_mark_with_lock_sign.png");
    width: 183px;
    height: 188px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 25px;
}


.sub-branding-image {
    background-image: url("../media/img/__penguin_wearing_suit_portrait.png");
    width: 195px;
    height: 240px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    align-self: end;
}

@media screen and (max-width: 1400px) and (orientation: portrait) {

    .background-colorful {
        background: linear-gradient(to bottom, #2e3e58 0%, #21283c 100%);
        background-size: cover;
    }
}

@media screen and (min-width: 1400px) {
    :root{
        --content-height: 925px;
        --sub-content-height: 640px;
    }

    h2 {
        font-size: 56px;
    }

    h3 {
        font-size: 36px;
    }

    h4 {
        font-size: 46px;
    }

    h5 {
        font-size: 28px;
    }

    .learn-more {
        font-size: 26px;
    }

    .sub-learn-more {
        font-size: 22px;
    }

    .enterprise-image {
        width: 420px;
        height: 400px;
    }

    .marketing-image {
        width: 585px;
        height: 325px;
        margin-bottom: 50px;
    }

    .development-image {
        width: 555px;
        height: 360px;
        margin-bottom: 50px;
    }

    .sub-security-image {
        width: 245px;
        height: 250px;
        margin-bottom: 25px;
    }

    .sub-branding-image {
        width: 235px;
        height: 290px;
    }
}


@media screen and (max-width: 734px) and (min-width: 0px) {
    .headerNav{
        display: none;
    }

    .mainMobPortNav {
        display: grid;
    }

    .mobNav{
		position: -webkit-sticky;
		position: fixed;
        display: flex;
		flex-direction: column;
		padding: 0px;
		top: 0;
		right: 0;
		left: 0;
		width: 100%;
		height: 0vh;
        background: rgba(22,22,25,1);
        z-index: 999;
		justify-content: start;
		overflow: hidden;
		z-index: 250;
		transition: all 600ms ease;
	}
	
	.mobServices{
		display: flex;
		height: 100vh;
		width: 100%;
	}
	
	
	.mobServicesNav {
		position: absolute;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 40vh;
		top: 15vh;
		justify-content: space-between;
		list-style: none;
		padding-left: 15%;
		z-index: 400;
	}

	.mobServicesNav li a {
		color: azure;
		text-decoration: none;
		font-size: 28px;
		font-family: "Montserrat";
		font-weight: 600;
		opacity: 1;
		text-transform: uppercase;
		cursor: pointer;
		line-height: 2.5;
	}

	.mobServicesNav li a.active{
		color: azure;
		opacity: 1;
		cursor: default;
	}

	.mobServicesNav li a:hover {
		color: azure;
		opacity: 1;
	}
	
	.mobServicesNav .mediaIcons{
		padding-top: 10%;
	}
	
	.mediaIcons {
		display: flex;
		width: 30vw;
		justify-content: space-between;
		align-items: center;
        max-width: 145px;
	}

	
	.mediaIcons img {
		height: 20px;
		width: 20px;
	}
	
    .fb,
    .ln,
    .ig{
        height: 20px;
        width: 20px;
        opacity: 1;
    }


    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 21px;
    }

    .learn-more {
        font-size: 19px;
    }

    .sub-learn-more {
        font-size: 17px;
    }
}


@media screen and (max-width: 734px) and (min-width: 0px) and (orientation: portrait) {
    :root {
        --content-height: 500px;
        --sub-content-height: 1000px;
    }

    .development-image {
        width: 310px;
        height: 200px;
    }

    .marketing-image {
        width: 350px;
        height: 200px;
    }

    .sub-main-frame {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .sub-cyber-security,
    .sub-branding {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 734px) and (min-width: 0px) and (orientation: landscape) {

    :root {
        --content-height: 569px;
        --sub-content-height: 1000px;
    }

    .sub-branding-image {
        width: 160px;
        height: 210px;
    }

    .sub-main-frame {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .sub-cyber-security,
    .sub-branding {
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 734px) and (min-width: 321px) and (orientation: portrait) {

    h2,
    h4 {
        font-size: 28px;
    }

    .enterprise-image {
        width: 225px;
        height: 215px;
    }

    .marketing-image {
        width: 260px;
        height: 150px;
    }

    .development-image {
        width: 260px;
        height: 168px;
    }

}


@media screen and (max-width: 320px) and (min-width: 0px) and (orientation: portrait) {
    :root {
        --content-height: 450px;
        --sub-content-height: 850px;
    }
    
    h2,
    h4 {
        font-size: 28px;
    }

    h3,
    h5 {
        font-size: 17px;
    }

    .learn-more {
        font-size: 15px;
    }

    .enterprise-image {
        width: 175px;
        height: 185px;
    }

    .marketing-image {
        width: 210px;
        height: 120px;
    }

    .development-image {
        width: 210px;
        height: 136px;
    }

    .sub-security-image {
        width: 154px;
        height: 158px;
    }

    .sub-branding-image {
        width: 158px;
        height: 195px;
    }
}